parent
f51ac24f46
commit
08b7954ffb
|
@ -42,7 +42,7 @@
|
||||||
{{ getType(row.IS_AUDIT) }}
|
{{ getType(row.IS_AUDIT) }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="操作" align="left" width="110">
|
<el-table-column label="操作" align="left" width="300">
|
||||||
<template slot-scope="{row}">
|
<template slot-scope="{row}">
|
||||||
<el-button type="success" icon="el-icon-view" size="mini" @click="detail(row)">查看详情</el-button>
|
<el-button type="success" icon="el-icon-view" size="mini" @click="detail(row)">查看详情</el-button>
|
||||||
<el-button v-if="row.IS_AUDIT === '0' || row.IS_AUDIT == null" type="success" icon="el-icon-view" size="mini"
|
<el-button v-if="row.IS_AUDIT === '0' || row.IS_AUDIT == null" type="success" icon="el-icon-view" size="mini"
|
||||||
|
@ -216,6 +216,7 @@ export default {
|
||||||
console.log(data)
|
console.log(data)
|
||||||
console.log(config.fileUrl)
|
console.log(config.fileUrl)
|
||||||
this.fileList = data.filingList
|
this.fileList = data.filingList
|
||||||
|
this.form.MOTORCADE_ID = ''
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getRowKey() {
|
getRowKey() {
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="操作" align="left" width="110">
|
<el-table-column label="操作" align="left" width="110">
|
||||||
<template slot-scope="{row}">
|
<template slot-scope="{row}">
|
||||||
<el-button v-if="row.IS_AUDIT === '0'" type="success" icon="el-icon-view" size="mini" @click="approve(row)">审核</el-button>
|
<el-button v-if="checkButton(row)" type="success" icon="el-icon-view" size="mini" @click="approve(row)">审核</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
@ -71,6 +71,7 @@ export default{
|
||||||
page: 1,
|
page: 1,
|
||||||
limit: 10
|
limit: 10
|
||||||
},
|
},
|
||||||
|
IS_POLICE: '',
|
||||||
areaList: [], // 省市县列表
|
areaList: [], // 省市县列表
|
||||||
placeList: [],
|
placeList: [],
|
||||||
listLoading: true,
|
listLoading: true,
|
||||||
|
@ -94,8 +95,19 @@ export default{
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList()
|
this.getList()
|
||||||
|
this.getPermissions()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
checkButton(row){
|
||||||
|
console.log('---------------------')
|
||||||
|
console.log('row.IS_AUDIT:', row.IS_AUDIT); // 添加日志输出
|
||||||
|
console.log('this.IS_POLICE:', this.IS_POLICE); // 添加日志输出
|
||||||
|
if (row.IS_AUDIT === '0' && this.IS_POLICE === '1'){
|
||||||
|
return true
|
||||||
|
}else {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
},
|
||||||
approve(row) {
|
approve(row) {
|
||||||
this.$refs.sendUtil.init(row)
|
this.$refs.sendUtil.init(row)
|
||||||
},
|
},
|
||||||
|
@ -144,6 +156,14 @@ export default{
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
getPermissions(){
|
||||||
|
requestFN(
|
||||||
|
'/mkmjManagement/getPermissions'
|
||||||
|
).then((data) => {
|
||||||
|
this.IS_POLICE = data.pageData.IS_POLICE
|
||||||
|
console.log('IS_POLICE:', this.IS_POLICE)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue