Browse Source

Merge branch 'dev_zufangUpdate'

V1.0
wanggongfeng 3 years ago
parent
commit
42e21c4ba0
  1. 6
      src/views/modules/plugins/rent/rentcontractreview.vue

6
src/views/modules/plugins/rent/rentcontractreview.vue

@ -196,9 +196,9 @@
<el-table-column :label="$t('handle')" fixed="right" header-align="center" align="center" width="150">
<template slot-scope="scope">
<el-button v-if="scope.row.state === '0'" type="text" size="small" @click="lookOrCheckHandle(scope.row.id,'2')">登记</el-button>
<el-button v-if="scope.row.state === '0'" type="text" size="small" @click="addOrUpdateHandle(scope.row.id, 'edit')">修改</el-button>
<el-button v-if="scope.row.state === '0'" type="text" size="small" @click="deleteHandle(scope.row.id)">{{ $t('delete') }}</el-button>
<el-button v-else type="text" size="small" @click="lookOrCheckHandle(scope.row.id,'1')">{{ $t('lookBtn') }}</el-button>
<!-- <el-button v-if="scope.row.isPcInput == '1'" type="text" size="small" @click="addOrUpdateHandle(scope.row.id, 'edit')">修改</el-button> -->
<!-- <el-button type="text" size="small" @click="deleteHandle(scope.row.id)">{{ $t('delete') }}</el-button>-->
</template>
</el-table-column>
</el-table>
@ -229,7 +229,7 @@ export default {
mixinViewModuleOptions: {
getDataListURL: '/pli/power/rentContractInfo/page',
getDataListIsPage: true,
deleteURL: '/pli/power/rentContractInfo',
deleteURL: '/pli/power/rentContractInfo/delete',
deleteIsBatch: true
},
optionsV: [],

Loading…
Cancel
Save