2025-01-10 16:30:50 +08:00
|
|
|
<template>
|
|
|
|
<div class="app-container">
|
|
|
|
<div class="filter-container">
|
|
|
|
<el-form ref="form" v-model="form">
|
|
|
|
<el-row>
|
|
|
|
<el-col :span="5">
|
|
|
|
<el-form-item label="车牌号:">
|
|
|
|
<el-input v-model="form.LICENCE_NO" placeholder="搜索" class="filter-item" style="width: 200px;"/>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="4">
|
|
|
|
<el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="getQuery">搜索</el-button>
|
|
|
|
<el-button v-waves class="filter-item" type="success" icon="el-icon-refresh" @click="reset">重置</el-button>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</el-form>
|
|
|
|
</div>
|
|
|
|
<el-table
|
|
|
|
v-loading="listLoading"
|
|
|
|
ref="multipleTable"
|
|
|
|
:data="varList"
|
|
|
|
:row-key="getRowKey"
|
|
|
|
:header-cell-style="{
|
|
|
|
'font-weight': 'bold',
|
|
|
|
'color': '#000'
|
|
|
|
}"
|
|
|
|
tooltip-effect="dark"
|
|
|
|
border
|
|
|
|
fit
|
|
|
|
highlight-current-row
|
|
|
|
>
|
|
|
|
<el-table-column
|
|
|
|
:reserve-selection="true"
|
|
|
|
type="selection"
|
|
|
|
width="55"
|
|
|
|
align="center"/>
|
|
|
|
<el-table-column type="index" label="序号" width="50" align="center" />
|
|
|
|
<el-table-column prop="LICENCE_NO" label="车牌号"/>
|
|
|
|
<el-table-column prop="LICENCE_TYPE" label="车牌类型"/>
|
|
|
|
<el-table-column prop="VEHICLE_TYPE" label="车辆类型"/>
|
|
|
|
<el-table-column prop="CONTACT" label="联系人"/>
|
|
|
|
<el-table-column prop="PHONE" label="联系人电话"/>
|
|
|
|
<el-table-column label="审核状态" align="center" width="120">
|
|
|
|
<template slot-scope="{row}">
|
|
|
|
{{ getType(row.IS_AUDIT) }}
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" align="left" width="110">
|
|
|
|
<template slot-scope="{row}">
|
2025-01-14 09:56:01 +08:00
|
|
|
<el-button v-if="checkButton(row)" type="success" icon="el-icon-view" size="mini" @click="approve(row)">审核</el-button>
|
2025-01-10 16:30:50 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
<div class="page-btn-group">
|
|
|
|
<div/><div/>
|
|
|
|
<pagination :total="total" :page.sync="listQuery.page" :limit.sync="listQuery.limit" @pagination="getList" />
|
|
|
|
</div>
|
|
|
|
<send-util ref="sendUtil" append-to-body @refresh="getList"/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Pagination from '@/components/Pagination' // 通过 el-pagination二次打包
|
|
|
|
import { requestFN } from '@/utils/request'
|
|
|
|
import SendUtil from './sendUtil.vue'
|
|
|
|
export default{
|
|
|
|
components: { SendUtil, Pagination },
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
listQuery: {
|
|
|
|
page: 1,
|
|
|
|
limit: 10
|
|
|
|
},
|
2025-01-14 09:56:01 +08:00
|
|
|
IS_POLICE: '',
|
2025-01-10 16:30:50 +08:00
|
|
|
areaList: [], // 省市县列表
|
|
|
|
placeList: [],
|
|
|
|
listLoading: true,
|
|
|
|
varList: [],
|
|
|
|
total: 0,
|
|
|
|
title: '',
|
|
|
|
isShow: false,
|
|
|
|
form: {
|
|
|
|
LICENCE_NO: '',
|
|
|
|
PHONE: '',
|
|
|
|
ID_CARD: '',
|
|
|
|
CORPINFO_NAME: '',
|
|
|
|
DEPARTMENT_NAME: '',
|
|
|
|
VISIT_START_TIME: '',
|
|
|
|
VISIT_END_TIME: '',
|
|
|
|
DOOR_NAME: '',
|
|
|
|
IS_DANGEROUS_CAR: '1',
|
|
|
|
CORPINFO_ID: JSON.parse(sessionStorage.getItem('user')).CORPINFO_ID
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.getList()
|
2025-01-14 09:56:01 +08:00
|
|
|
this.getPermissions()
|
2025-01-10 16:30:50 +08:00
|
|
|
},
|
|
|
|
methods: {
|
2025-01-14 09:56:01 +08:00
|
|
|
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
|
|
|
|
}
|
|
|
|
},
|
2025-01-10 16:30:50 +08:00
|
|
|
approve(row) {
|
|
|
|
this.$refs.sendUtil.init(row)
|
|
|
|
},
|
|
|
|
getType(AUDIT_TYPE) {
|
|
|
|
if (AUDIT_TYPE === '0') {
|
|
|
|
return '待交警支队审核'
|
|
|
|
} else if (AUDIT_TYPE === '1') {
|
|
|
|
return '待分公司审核'
|
|
|
|
} else if (AUDIT_TYPE === '2') {
|
|
|
|
return '审核通过'
|
|
|
|
} else if (AUDIT_TYPE === '3') {
|
|
|
|
return '审核驳回'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// 搜索
|
|
|
|
getQuery() {
|
|
|
|
this.$refs.multipleTable.clearSelection()
|
|
|
|
this.getList()
|
|
|
|
},
|
|
|
|
// 重置
|
|
|
|
reset() {
|
|
|
|
this.form = {
|
|
|
|
USER_NAME: '',
|
|
|
|
PHONE: '',
|
|
|
|
ID_CARD: '',
|
|
|
|
CORPINFO_NAME: '',
|
|
|
|
DEPARTMENT_NAME: '',
|
|
|
|
VISIT_START_TIME: '',
|
|
|
|
VISIT_END_TIME: '',
|
|
|
|
DOOR_NAME: ''
|
|
|
|
}
|
|
|
|
this.getList()
|
|
|
|
},
|
|
|
|
// 获取列表
|
|
|
|
getList() {
|
|
|
|
this.listLoading = true
|
|
|
|
requestFN(
|
|
|
|
'/mkmjManagement/freightVehiclesAudit?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page, this.form
|
|
|
|
).then((data) => {
|
|
|
|
console.log(data)
|
|
|
|
this.listLoading = false
|
|
|
|
this.varList = data.varList
|
|
|
|
this.total = data.page.totalResult
|
|
|
|
this.hasButton()
|
|
|
|
this.pd = data.pd
|
|
|
|
}).catch((e) => {
|
|
|
|
this.listLoading = false
|
|
|
|
})
|
2025-01-14 09:56:01 +08:00
|
|
|
},
|
|
|
|
getPermissions(){
|
|
|
|
requestFN(
|
|
|
|
'/mkmjManagement/getPermissions'
|
|
|
|
).then((data) => {
|
|
|
|
this.IS_POLICE = data.pageData.IS_POLICE
|
|
|
|
console.log('IS_POLICE:', this.IS_POLICE)
|
|
|
|
})
|
2025-01-10 16:30:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|