Compare commits
4 Commits
5aeb8a45d5
...
757fe7ba29
Author | SHA1 | Date |
---|---|---|
|
757fe7ba29 | |
|
7798fc0f87 | |
|
074c8b983d | |
|
b3b82dbf09 |
|
@ -1,33 +1,66 @@
|
||||||
<template>
|
<template>
|
||||||
<div v-loading="listLoading">
|
<div v-loading="listLoading">
|
||||||
<div style="padding:20px">
|
<div style="padding:20px">
|
||||||
<el-form ref="form" :model="form" :rules="rules" label-width="210px">
|
<el-form ref="form" :model="form" label-width="210px">
|
||||||
<!-- 动态生成表单项 -->
|
<el-form-item label="智能口门管理系统账号申请单" prop="REQUISITION_FILE" :rules="[{ required: true, message: '智能口门管理系统账号申请单', trigger: 'blur' }]">
|
||||||
<el-row v-for="(item, index) in uploadConfig" :key="index">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item v-if="dialogType !== 'savePhoto' && form[item.prop]" :label="`已上传${item.label}`">
|
|
||||||
<div>
|
|
||||||
<img :src="config.fileUrl + form[item.prop]" width="100" height="100">
|
|
||||||
</div>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item :label="item.label" :prop="item.prop">
|
|
||||||
<el-upload
|
<el-upload
|
||||||
ref="photoUpload"
|
:action="uploadUrl"
|
||||||
:file-list="form[item.prop]"
|
:on-success="REQUISITION_FILESuccess"
|
||||||
:multiple="false"
|
:on-remove="REQUISITION_FILERemove"
|
||||||
:limit="1"
|
:before-upload="beforeUpload"
|
||||||
:class="{hide: form[item.prop] && form[item.prop].length > 0}"
|
:limit="1">
|
||||||
:auto-upload="false"
|
<el-button type="primary">点击上传</el-button>
|
||||||
:on-remove="(file, fileList) => handleRemove(file, fileList, item.prop)"
|
|
||||||
:on-change="(file, fileList) => handleChange(file, fileList, item.prop)"
|
|
||||||
action="#"
|
|
||||||
accept=".jpg,.jpeg,.png"
|
|
||||||
list-type="picture-card">
|
|
||||||
<i class="el-icon-plus"/>
|
|
||||||
</el-upload>
|
</el-upload>
|
||||||
|
<img v-if="form.REQUISITION_FILE" :src="config.fileUrl + form.REQUISITION_FILE" alt="智能口门管理系统账号申请单" style="margin-top: 10px; max-width: 20%;"/>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="智能口门管理系统使用承诺书" prop="REQUISITION_FILE" :rules="[{ required: true, message: '智能口门管理系统使用承诺书', trigger: 'blur' }]">
|
||||||
|
<el-upload
|
||||||
|
:action="uploadUrl"
|
||||||
|
:on-success="COMMITMENT_FILESuccess"
|
||||||
|
:on-remove="COMMITMENT_FILERemove"
|
||||||
|
:before-upload="beforeUpload"
|
||||||
|
:limit="1">
|
||||||
|
<el-button type="primary">点击上传</el-button>
|
||||||
|
</el-upload>
|
||||||
|
<img v-if="form.COMMITMENT_FILE" :src="config.fileUrl + form.COMMITMENT_FILE" alt="智能口门管理系统使用承诺书" style="margin-top: 10px; max-width: 20%;"/>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="营业执照" prop="LICENSE_FILE" :rules="[{ required: true, message: '营业执照', trigger: 'blur' }]">
|
||||||
|
<el-upload
|
||||||
|
:action="uploadUrl"
|
||||||
|
:on-success="LICENSE_FILESuccess"
|
||||||
|
:on-remove="LICENSE_FILERemove"
|
||||||
|
:before-upload="beforeUpload"
|
||||||
|
:limit="1">
|
||||||
|
<el-button type="primary">点击上传</el-button>
|
||||||
|
</el-upload>
|
||||||
|
<img v-if="form.LICENSE_FILE" :src="config.fileUrl + form.LICENSE_FILE" alt="营业执照" style="margin-top: 10px; max-width: 20%;"/>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="道路运输经营许可证" prop="TRANSPORT_PERMIT_FILE" :rules="[{ required: true, message: '道路运输经营许可证', trigger: 'blur' }]">
|
||||||
|
<el-upload
|
||||||
|
:action="uploadUrl"
|
||||||
|
:on-success="TRANSPORT_PERMIT_FILESuccess"
|
||||||
|
:on-remove="TRANSPORT_PERMIT_FILERemove"
|
||||||
|
:before-upload="beforeUpload"
|
||||||
|
:limit="1">
|
||||||
|
<el-button type="primary">点击上传</el-button>
|
||||||
|
</el-upload>
|
||||||
|
<img v-if="form.TRANSPORT_PERMIT_FILE" :src="config.fileUrl + form.TRANSPORT_PERMIT_FILE" alt="道路运输经营许可证" style="margin-top: 10px; max-width: 20%;"/>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="危险化学品经营许可证" prop="HAZARDOUS_CHEMICALS_FILE" :rules="[{ required: true, message: '危险化学品经营许可证', trigger: 'blur' }]">
|
||||||
|
<el-upload
|
||||||
|
:action="uploadUrl"
|
||||||
|
:on-success="HAZARDOUS_CHEMICALS_FILESuccess"
|
||||||
|
:on-remove="HAZARDOUS_CHEMICALS_FILERemove"
|
||||||
|
:before-upload="beforeUpload"
|
||||||
|
:limit="1">
|
||||||
|
<el-button type="primary">点击上传</el-button>
|
||||||
|
</el-upload>
|
||||||
|
<img v-if="form.HAZARDOUS_CHEMICALS_FILE" :src="config.fileUrl + form.HAZARDOUS_CHEMICALS_FILE" alt="危险化学品经营许可证" style="margin-top: 10px; max-width: 20%;"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</el-form>
|
</el-form>
|
||||||
</div>
|
</div>
|
||||||
<div class="ui-height"/>
|
<div class="ui-height"/>
|
||||||
|
@ -42,7 +75,7 @@
|
||||||
import Pagination from '@/components/Pagination' // 通过 el-pagination二次打包
|
import Pagination from '@/components/Pagination' // 通过 el-pagination二次打包
|
||||||
import {requestFN} from '@/utils/request'
|
import {requestFN} from '@/utils/request'
|
||||||
import SelectTree from '@/components/SelectTree'
|
import SelectTree from '@/components/SelectTree'
|
||||||
import { upload } from '../../../../../utils/upload'
|
import {upload} from "../../../../../utils/upload";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {Pagination, SelectTree},
|
components: {Pagination, SelectTree},
|
||||||
|
@ -52,6 +85,7 @@ export default {
|
||||||
page: 1,
|
page: 1,
|
||||||
limit: 10
|
limit: 10
|
||||||
},
|
},
|
||||||
|
uploadUrl: config.httpurl + '/mkmj/management/fileUpload',
|
||||||
config: config,
|
config: config,
|
||||||
areaList: [], // 省市县列表
|
areaList: [], // 省市县列表
|
||||||
placeList: [],
|
placeList: [],
|
||||||
|
@ -70,7 +104,7 @@ export default {
|
||||||
VEHICLE_TYPE: '',
|
VEHICLE_TYPE: '',
|
||||||
CONTACT: '',
|
CONTACT: '',
|
||||||
PHONE: '',
|
PHONE: '',
|
||||||
EMISSION_STANDARDS: ''
|
EMISSION_STANDARDS: '',
|
||||||
},
|
},
|
||||||
form: {
|
form: {
|
||||||
CORPINFO_ID: JSON.parse(sessionStorage.getItem('user')).CORPINFO_ID,
|
CORPINFO_ID: JSON.parse(sessionStorage.getItem('user')).CORPINFO_ID,
|
||||||
|
@ -81,11 +115,6 @@ export default {
|
||||||
TRANSPORT_PERMIT_FILE: '',
|
TRANSPORT_PERMIT_FILE: '',
|
||||||
HAZARDOUS_CHEMICALS_FILE: ''
|
HAZARDOUS_CHEMICALS_FILE: ''
|
||||||
},
|
},
|
||||||
rules: {
|
|
||||||
REQUISITION_FILE: [{ required: true, message: '请上传智能口门管理系统账号申请单', trigger: 'blur' }],
|
|
||||||
COMMITMENT_FILE: [{ required: true, message: '请上传智能口门管理系统使用承诺书', trigger: 'blur' }],
|
|
||||||
LICENSE_FILE: [{ required: true, message: '请上传营业执照', trigger: 'blur' }]
|
|
||||||
},
|
|
||||||
uploadConfig: [
|
uploadConfig: [
|
||||||
{label: '智能口门管理系统账号申请单', prop: 'REQUISITION_FILE', hideUpload: false},
|
{label: '智能口门管理系统账号申请单', prop: 'REQUISITION_FILE', hideUpload: false},
|
||||||
{label: '智能口门管理系统使用承诺书', prop: 'COMMITMENT_FILE', hideUpload: false},
|
{label: '智能口门管理系统使用承诺书', prop: 'COMMITMENT_FILE', hideUpload: false},
|
||||||
|
@ -98,7 +127,6 @@ export default {
|
||||||
},
|
},
|
||||||
async created() {
|
async created() {
|
||||||
this.getList()
|
this.getList()
|
||||||
this.getUploadedFiles()
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 搜索
|
// 搜索
|
||||||
|
@ -120,6 +148,52 @@ export default {
|
||||||
}
|
}
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
|
beforeUpload(file) {
|
||||||
|
//文件格式限制
|
||||||
|
const isJPG = file.type === 'image/jpeg';
|
||||||
|
const isPNG = file.type === 'image/png';
|
||||||
|
|
||||||
|
if (!isJPG && !isPNG) {
|
||||||
|
this.$message.error('上传图片只能是 JPG 或 PNG 格式!');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// 文件上传前的校验逻辑
|
||||||
|
const isLt2M = file.size / 1024 / 1024 < 2;
|
||||||
|
if (!isLt2M) {
|
||||||
|
this.$message.error('上传文件大小不能超过 2MB!');
|
||||||
|
}
|
||||||
|
return isLt2M;
|
||||||
|
},
|
||||||
|
REQUISITION_FILESuccess(response, file) {
|
||||||
|
this.form.REQUISITION_FILE = response.uploadPath;
|
||||||
|
},
|
||||||
|
REQUISITION_FILERemove(){
|
||||||
|
this.form.REQUISITION_FILE = ''
|
||||||
|
},
|
||||||
|
COMMITMENT_FILESuccess(response, file) {
|
||||||
|
this.form.COMMITMENT_FILE = response.uploadPath;
|
||||||
|
},
|
||||||
|
COMMITMENT_FILERemove(){
|
||||||
|
this.form.COMMITMENT_FILE = ''
|
||||||
|
},
|
||||||
|
LICENSE_FILESuccess(response, file) {
|
||||||
|
this.form.LICENSE_FILE = response.uploadPath;
|
||||||
|
},
|
||||||
|
LICENSE_FILERemove(){
|
||||||
|
this.form.LICENSE_FILE = ''
|
||||||
|
},
|
||||||
|
TRANSPORT_PERMIT_FILESuccess(response, file) {
|
||||||
|
this.form.TRANSPORT_PERMIT_FILE = response.uploadPath;
|
||||||
|
},
|
||||||
|
TRANSPORT_PERMIT_FILERemove(){
|
||||||
|
this.form.TRANSPORT_PERMIT_FILE = ''
|
||||||
|
},
|
||||||
|
HAZARDOUS_CHEMICALS_FILESuccess(response, file) {
|
||||||
|
this.form.HAZARDOUS_CHEMICALS_FILE = response.uploadPath;
|
||||||
|
},
|
||||||
|
HAZARDOUS_CHEMICALS_FILERemove() {
|
||||||
|
this.form.HAZARDOUS_CHEMICALS_FILE = ''
|
||||||
|
},
|
||||||
// 获取列表
|
// 获取列表
|
||||||
getList() {
|
getList() {
|
||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
|
@ -130,101 +204,46 @@ export default {
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
this.varList = data.carInfoList
|
this.varList = data.carInfoList
|
||||||
this.total = data.page.totalResult
|
this.total = data.page.totalResult
|
||||||
this.hasButton()
|
|
||||||
this.pd = data.pd
|
this.pd = data.pd
|
||||||
|
this.form.REQUISITION_FILE = data.motorcadeList[0].REQUISITION_FILE
|
||||||
|
this.form.COMMITMENT_FILE = data.motorcadeList[0].COMMITMENT_FILE
|
||||||
|
this.form.LICENSE_FILE = data.motorcadeList[0].LICENSE_FILE
|
||||||
|
this.form.TRANSPORT_PERMIT_FILE = data.motorcadeList[0].TRANSPORT_PERMIT_FILE
|
||||||
|
this.form.HAZARDOUS_CHEMICALS_FILE = data.motorcadeList[0].HAZARDOUS_CHEMICALS_FILE
|
||||||
|
console.log('------------------------')
|
||||||
|
console.log(this.form.REQUISITION_FILE)
|
||||||
|
this.hasButton()
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 通用文件移除处理
|
// 通用文件移除处理
|
||||||
handleRemove(file, fileList, prop) {
|
handleRemove(file, fileList, prop) {
|
||||||
this.form[prop] = fileList
|
this.form[prop] = fileList;
|
||||||
const configItem = this.uploadConfig.find(item => item.prop === prop)
|
const configItem = this.uploadConfig.find(item => item.prop === prop);
|
||||||
if (configItem) {
|
if (configItem) {
|
||||||
configItem.hideUpload = fileList.length >= 1
|
configItem.hideUpload = fileList.length >= 1;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 通用文件上传处理
|
confirm() {
|
||||||
handleChange(file, fileList, prop) {
|
this.$refs.form.validate(valid => {
|
||||||
const types = ['image/jpeg', 'image/jpg', 'image/png']
|
if (valid) {
|
||||||
const isImage = types.includes(file.raw.type)
|
|
||||||
if (!isImage) {
|
|
||||||
this.$message.error('上传图片只能是 JPG、JPEG、PNG 格式!')
|
|
||||||
fileList.pop()
|
|
||||||
this.form[prop] = []
|
|
||||||
return
|
|
||||||
}
|
|
||||||
this.form[prop] = []
|
|
||||||
this.form[prop].push(file)
|
|
||||||
const configItem = this.uploadConfig.find(item => item.prop === prop)
|
|
||||||
if (configItem) {
|
|
||||||
configItem.hideUpload = fileList.length >= 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
getUploadedFiles() {
|
|
||||||
try {
|
|
||||||
this.listLoading = true
|
|
||||||
requestFN(
|
requestFN(
|
||||||
'/mkmj/management/getUploadedFiles', {
|
'/mkmj/management/fleetFilingApply',
|
||||||
MOTORCADE_ID: this.form.MOTORCADE_ID
|
this.form
|
||||||
}
|
|
||||||
).then((data) => {
|
).then((data) => {
|
||||||
console.log(data)
|
console.log(data)
|
||||||
console.info(data)
|
this.goBack()
|
||||||
this.urlfromdsfe = data.corpFilingApplicationEntity
|
|
||||||
console.info(this.urlfromdsfe)
|
|
||||||
if (this.urlfromdsfe) {
|
|
||||||
this.uploadConfig.forEach(item => {
|
|
||||||
if (this.urlfromdsfe[item.prop]) {
|
|
||||||
this.form[item.prop] = [{
|
|
||||||
url: this.config.fileUrl + this.urlfromdsfe[item.prop],
|
|
||||||
name: this.urlfromdsfe[item.prop].split('/').pop()
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
})
|
})
|
||||||
} catch (error) {
|
|
||||||
console.error('获取已上传文件失败', error)
|
|
||||||
}
|
}
|
||||||
},
|
|
||||||
confirm() {
|
|
||||||
this.$refs.form.validate((valid) => {
|
|
||||||
if (!valid) {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
this.listLoading = true
|
|
||||||
console.log(this.form)
|
|
||||||
const formData = new FormData()
|
|
||||||
formData.append('CORPINFO_ID', this.form.CORPINFO_ID)
|
|
||||||
formData.append('MOTORCADE_ID', this.form.MOTORCADE_ID)
|
|
||||||
formData.append('REQUISITION_FILE', this.form.REQUISITION_FILE[0].raw)
|
|
||||||
formData.append('COMMITMENT_FILE', this.form.COMMITMENT_FILE[0].raw)
|
|
||||||
formData.append('LICENSE_FILE', this.form.LICENSE_FILE[0].raw)
|
|
||||||
formData.append('TRANSPORT_PERMIT_FILE', this.form.TRANSPORT_PERMIT_FILE[0].raw)
|
|
||||||
formData.append('HAZARDOUS_CHEMICALS_FILE', this.form.HAZARDOUS_CHEMICALS_FILE[0].raw)
|
|
||||||
|
|
||||||
console.log(formData) // 打印 FormData 对象
|
|
||||||
|
|
||||||
upload(
|
|
||||||
'/mkmj/management/fleetFilingApply',
|
|
||||||
formData
|
|
||||||
).then(response => {
|
|
||||||
console.log('上传成功', response)
|
|
||||||
this.listLoading = false
|
|
||||||
this.goBack()
|
|
||||||
}).catch(error => {
|
|
||||||
console.error('上传失败', error)
|
|
||||||
this.listLoading = false
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
goBack() {
|
goBack() {
|
||||||
this.$parent.activeName = 'List'
|
this.$parent.activeName = 'List'
|
||||||
|
window.location.reload();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
align="center"/>
|
align="center"/>
|
||||||
<el-table-column type="index" label="序号" width="50" align="center" />
|
<el-table-column type="index" label="序号" width="50" align="center" />
|
||||||
<el-table-column prop="MOTORCADE_NAME" label="车队名称"/>
|
<el-table-column prop="MOTORCADE_NAME" label="车队名称"/>
|
||||||
|
<el-table-column prop="CREATE_DATE" label="车队创建时间"/>
|
||||||
<el-table-column label="审核状态" align="center">
|
<el-table-column label="审核状态" align="center">
|
||||||
<template slot-scope="{row}">
|
<template slot-scope="{row}">
|
||||||
{{ getAuditType(row.IS_AUDIT) }}
|
{{ getAuditType(row.IS_AUDIT) }}
|
||||||
|
@ -44,7 +45,7 @@
|
||||||
<el-table-column label="操作" align="left" width="300">
|
<el-table-column label="操作" align="left" width="300">
|
||||||
<template slot-scope="{row}">
|
<template slot-scope="{row}">
|
||||||
<el-button type="primary" icon="el-icon-view" size="mini" @click="handleEdit(row)">编辑</el-button>
|
<el-button type="primary" icon="el-icon-view" size="mini" @click="handleEdit(row)">编辑</el-button>
|
||||||
<el-button type="primary" icon="el-icon-view" size="mini" @click="getAuditInfo(row)">备案申请</el-button>
|
<el-button v-if="row.IS_AUDIT !== '2'" type="primary" icon="el-icon-view" size="mini" @click="getAuditInfo(row)">备案申请</el-button>
|
||||||
<el-button type="danger" icon="el-icon-delete" size="mini" @click="handleDelete(row)">删除</el-button>
|
<el-button type="danger" icon="el-icon-delete" size="mini" @click="handleDelete(row)">删除</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
@ -70,8 +71,8 @@
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<!--编辑-->
|
<!--编辑-->
|
||||||
<el-dialog :visible.sync="editLoading" width="600px">
|
<el-dialog :visible.sync="editLoading" width="600px">
|
||||||
<el-form ref="form" :model="form" label-width="110px" style="width: 500px;">
|
<el-form ref="form" :model="form" :rules="rules" label-width="110px" style="width: 500px;">
|
||||||
<el-form-item label="车队名称:">
|
<el-form-item label="车队名称:" prop="ADD_MOTORCADE_NAME">
|
||||||
<el-input v-model="form.ADD_MOTORCADE_NAME" placeholder="请输入车队名称" class="filter-item" style="width: 200px;"/>
|
<el-input v-model="form.ADD_MOTORCADE_NAME" placeholder="请输入车队名称" class="filter-item" style="width: 200px;"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
@ -130,9 +131,13 @@ export default{
|
||||||
methods: {
|
methods: {
|
||||||
getAuditType(IS_AUDIT){
|
getAuditType(IS_AUDIT){
|
||||||
if (IS_AUDIT === '1'){
|
if (IS_AUDIT === '1'){
|
||||||
|
return '待审核'
|
||||||
|
}else if (IS_AUDIT === '2'){
|
||||||
return '审核通过'
|
return '审核通过'
|
||||||
|
}else if (IS_AUDIT === '0'){
|
||||||
|
return '审核驳回'
|
||||||
}else {
|
}else {
|
||||||
return '未审核'
|
return '待申请'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 搜索
|
// 搜索
|
||||||
|
@ -182,7 +187,7 @@ export default{
|
||||||
this.addLoading = false
|
this.addLoading = false
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
this.$message.error('请填写完整信息')
|
this.$message.error('请填写完整信息');
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -192,6 +197,8 @@ export default{
|
||||||
this.editLoading = true
|
this.editLoading = true
|
||||||
},
|
},
|
||||||
editMotorcade(){
|
editMotorcade(){
|
||||||
|
this.$refs.form.validate((valid) => {
|
||||||
|
if (valid) {
|
||||||
requestFN(
|
requestFN(
|
||||||
'/mkmj/management/motorcadeInfoManagement',
|
'/mkmj/management/motorcadeInfoManagement',
|
||||||
{
|
{
|
||||||
|
@ -206,6 +213,8 @@ export default{
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
this.editLoading = false
|
this.editLoading = false
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
},
|
},
|
||||||
handleDelete(row) {
|
handleDelete(row) {
|
||||||
this.$confirm('确定要删除吗?', {
|
this.$confirm('确定要删除吗?', {
|
||||||
|
@ -221,10 +230,22 @@ export default{
|
||||||
).then((data) => {
|
).then((data) => {
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
this.getList()
|
this.getList()
|
||||||
|
this.$message({
|
||||||
|
type: 'success',
|
||||||
|
message: '删除成功!'
|
||||||
|
})
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
|
this.$message({
|
||||||
|
type: 'error',
|
||||||
|
message: '删除失败!'
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
|
this.$message({
|
||||||
|
type: 'info',
|
||||||
|
message: '已取消删除'
|
||||||
|
})
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getAuditInfo(row) {
|
getAuditInfo(row) {
|
||||||
|
|
|
@ -63,18 +63,10 @@
|
||||||
<pagination :total="total" :page.sync="listQuery.page" :limit.sync="listQuery.limit" @pagination="getList"/>
|
<pagination :total="total" :page.sync="listQuery.page" :limit.sync="listQuery.limit" @pagination="getList"/>
|
||||||
</div>
|
</div>
|
||||||
<el-dialog :visible.sync="addDialogVisible" title="添加车辆信息" width="600px">
|
<el-dialog :visible.sync="addDialogVisible" title="添加车辆信息" width="600px">
|
||||||
<el-form
|
<el-form v-if="addDialogVisible" ref="addForm" :model="addForm" label-width="170px"
|
||||||
v-if="addDialogVisible"
|
|
||||||
ref="addForm"
|
|
||||||
:model="addForm"
|
|
||||||
label-width="170px"
|
|
||||||
style="padding:0 20px; width: 500px;">
|
style="padding:0 20px; width: 500px;">
|
||||||
<el-form-item :rules="[{required: true ,message: '车牌号不能为空',trigger: 'blur'}]" label="车牌号" prop="LICENCE_NO">
|
<el-form-item :rules="[{required: true ,message: '车牌号不能为空',trigger: 'blur'}]" label="车牌号" prop="LICENCE_NO">
|
||||||
<el-input
|
<el-input v-model="addForm.LICENCE_NO" type="text" maxlength="300" placeholder="这里输入车牌号..."
|
||||||
v-model="addForm.LICENCE_NO"
|
|
||||||
type="text"
|
|
||||||
maxlength="300"
|
|
||||||
placeholder="这里输入车牌号..."
|
|
||||||
@blur="goCheckLicenceNoAdd()"/>
|
@blur="goCheckLicenceNoAdd()"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 白牌、蓝牌、黄牌、绿牌、黑牌 下拉框-->
|
<!-- 白牌、蓝牌、黄牌、绿牌、黑牌 下拉框-->
|
||||||
|
@ -110,68 +102,78 @@
|
||||||
placeholder="请选择是否危化车辆"
|
placeholder="请选择是否危化车辆"
|
||||||
style="width: 300px"/>
|
style="width: 300px"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :rules="[{ required: true, message: '请填写负责人姓名', trigger: 'blur' }]" label="负责人" prop="CONTACT">
|
<el-form-item label="负责人" prop="CONTACT" :rules="[{ required: true, message: '请填写负责人姓名', trigger: 'blur' }]">
|
||||||
<el-input v-model="addForm.CONTACT" type="text" maxlength="300" placeholder="这里输入负责人名称..."/>
|
<el-input v-model="addForm.CONTACT" type="text" maxlength="300" placeholder="这里输入负责人名称..."/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :rules="[{ required: true, message: '请填写负责人手机号', trigger: 'blur' },{ pattern: /^1[3-9]\d{9}$/, message: '手机号格式不正确', trigger: 'blur' }]" label="负责人手机号" prop="PHONE">
|
<el-form-item label="负责人手机号" prop="PHONE" :rules="[{ required: true, message: '请填写负责人手机号', trigger: 'blur' },{ pattern: /^1[3-9]\d{9}$/, message: '手机号格式不正确', trigger: 'blur' }]">
|
||||||
<el-input v-model="addForm.PHONE" type="text" maxlength="11" placeholder="这里输入负责人手机号..."/>
|
<el-input v-model="addForm.PHONE" type="text" maxlength="11" placeholder="这里输入负责人手机号..."/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :rules="[{ required: true, message: '请填写排放标准', trigger: 'blur' }]" label="排放标准" prop="EMISSION_STANDARDS">
|
<el-form-item label="排放标准" prop="EMISSION_STANDARDS" :rules="[{ required: true, message: '请填写排放标准', trigger: 'blur' }]">
|
||||||
<el-input v-model="addForm.EMISSION_STANDARDS" type="text" maxlength="300" placeholder="这里输入排放标准..."/>
|
<el-input v-model="addForm.EMISSION_STANDARDS" type="text" maxlength="300" placeholder="这里输入排放标准..."/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 驾驶证 -->
|
<!-- 驾驶证 -->
|
||||||
<el-form-item :rules="[{ required: true, message: '请上传驾驶证', trigger: 'blur' }]" label="驾驶证" prop="DRIVING_LICENSE">
|
<el-form-item label="驾驶证" prop="DRIVING_LICENSE" :rules="[{ required: true, message: '请上传驾驶证', trigger: 'blur' }]">
|
||||||
<el-upload
|
<el-upload
|
||||||
|
:action="uploadUrl"
|
||||||
:on-success="handleDrivingLicenseSuccess"
|
:on-success="handleDrivingLicenseSuccess"
|
||||||
|
:on-remove="handleDrivingLicenseRemove"
|
||||||
:before-upload="beforeUpload"
|
:before-upload="beforeUpload"
|
||||||
:limit="1"
|
:limit="1">
|
||||||
action="http://127.0.0.1:8199/mkmj/management/fileUpload">
|
|
||||||
<el-button type="primary">点击上传</el-button>
|
<el-button type="primary">点击上传</el-button>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
|
<img v-if="addForm.DRIVING_LICENSE" :src="config.fileUrl + addForm.DRIVING_LICENSE" alt="驾驶证" style="margin-top: 10px; max-width: 100%;"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<!-- 绿本 -->
|
<!-- 绿本 -->
|
||||||
<el-form-item :rules="[{ required: true, message: '请上传绿本', trigger: 'blur' }]" label="绿本" prop="GREEN_BOOK">
|
<el-form-item label="绿本" prop="GREEN_BOOK" :rules="[{ required: true, message: '请上传绿本', trigger: 'blur' }]">
|
||||||
<el-upload
|
<el-upload
|
||||||
|
:action="uploadUrl"
|
||||||
:on-success="handleGreenBookSuccess"
|
:on-success="handleGreenBookSuccess"
|
||||||
|
:on-remove="handleGreenBookRemove"
|
||||||
:before-upload="beforeUpload"
|
:before-upload="beforeUpload"
|
||||||
:limit="1"
|
:limit="1">
|
||||||
action="http://127.0.0.1:8199/mkmj/management/fileUpload">
|
|
||||||
<el-button type="primary">点击上传</el-button>
|
<el-button type="primary">点击上传</el-button>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
|
<img v-if="addForm.GREEN_BOOK" :src="config.fileUrl + addForm.GREEN_BOOK" alt="绿本" style="margin-top: 10px; max-width: 100%;"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<!-- 环保随车清单 -->
|
<!-- 环保随车清单 -->
|
||||||
<el-form-item :rules="[{ required: true, message: '请上传环保随车清单', trigger: 'blur' }]" label="环保随车清单" prop="ECO_FRIENDLY_CHECKLIST">
|
<el-form-item label="环保随车清单" prop="ECO_FRIENDLY_CHECKLIST" :rules="[{ required: true, message: '请上传环保随车清单', trigger: 'blur' }]">
|
||||||
<el-upload
|
<el-upload
|
||||||
|
:action="uploadUrl"
|
||||||
:on-success="handleEcoFriendlyChecklistSuccess"
|
:on-success="handleEcoFriendlyChecklistSuccess"
|
||||||
|
:on-remove="handleEcoFriendlyChecklistRemove"
|
||||||
:before-upload="beforeUpload"
|
:before-upload="beforeUpload"
|
||||||
:limit="1"
|
:limit="1">
|
||||||
action="http://127.0.0.1:8199/mkmj/management/fileUpload">
|
|
||||||
<el-button type="primary">点击上传</el-button>
|
<el-button type="primary">点击上传</el-button>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
|
<img v-if="addForm.ECO_FRIENDLY_CHECKLIST" :src="config.fileUrl + addForm.ECO_FRIENDLY_CHECKLIST" alt="环保随车清单" style="margin-top: 10px; max-width: 100%;"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<!-- 出厂合格证 -->
|
<!-- 出厂合格证 -->
|
||||||
<el-form-item :rules="[{ required: true, message: '请上传出厂合格证', trigger: 'blur' }]" label="出厂合格证" prop="FACTORY_CERTIFICATE">
|
<el-form-item label="出厂合格证" prop="FACTORY_CERTIFICATE" :rules="[{ required: true, message: '请上传出厂合格证', trigger: 'blur' }]">
|
||||||
<el-upload
|
<el-upload
|
||||||
|
:action="uploadUrl"
|
||||||
:on-success="handleFactoryCertificateSuccess"
|
:on-success="handleFactoryCertificateSuccess"
|
||||||
|
:on-remove="handleFactoryCertificateRemove"
|
||||||
:before-upload="beforeUpload"
|
:before-upload="beforeUpload"
|
||||||
:limit="1"
|
:limit="1">
|
||||||
action="http://127.0.0.1:8199/mkmj/management/fileUpload">
|
|
||||||
<el-button type="primary">点击上传</el-button>
|
<el-button type="primary">点击上传</el-button>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
|
<img v-if="addForm.FACTORY_CERTIFICATE" :src="config.fileUrl + addForm.FACTORY_CERTIFICATE" alt="出厂合格证" style="margin-top: 10px; max-width: 100%;"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<!-- 环保信息截图 -->
|
<!-- 环保信息截图 -->
|
||||||
<el-form-item :rules="[{ required: true, message: '请上传环保信息截图', trigger: 'blur' }]" label="环保信息截图" prop="ENVIRONMENTAL_SCREENSHOTS">
|
<el-form-item label="环保信息截图" prop="ENVIRONMENTAL_SCREENSHOTS" :rules="[{ required: true, message: '请上传环保信息截图', trigger: 'blur' }]">
|
||||||
<el-upload
|
<el-upload
|
||||||
|
:action="uploadUrl"
|
||||||
:on-success="handleEnvironmentalScreenshotsSuccess"
|
:on-success="handleEnvironmentalScreenshotsSuccess"
|
||||||
|
:on-remove="handleEnvironmentalScreenshotsRemove"
|
||||||
:before-upload="beforeUpload"
|
:before-upload="beforeUpload"
|
||||||
:limit="1"
|
:limit="1">
|
||||||
action="http://127.0.0.1:8199/mkmj/management/fileUpload">
|
|
||||||
<el-button type="primary">点击上传</el-button>
|
<el-button type="primary">点击上传</el-button>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
|
<img v-if="addForm.ENVIRONMENTAL_SCREENSHOTS" :src="config.fileUrl + addForm.ENVIRONMENTAL_SCREENSHOTS" alt="环保信息截图" style="margin-top: 10px; max-width: 100%;"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<div slot="footer" class="dialog-footer">
|
<div slot="footer" class="dialog-footer">
|
||||||
|
@ -181,21 +183,12 @@
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<!--编辑-->
|
<!--编辑-->
|
||||||
<el-dialog :visible.sync="editDialogVisible" title="编辑车辆信息" width="600px">
|
<el-dialog :visible.sync="editDialogVisible" title="编辑车辆信息" width="600px">
|
||||||
<el-form
|
<el-form v-if="editDialogVisible" ref="editForm" :model="addForm" label-width="170px"
|
||||||
v-if="editDialogVisible"
|
|
||||||
ref="editForm"
|
|
||||||
:model="addForm"
|
|
||||||
label-width="170px"
|
|
||||||
style="padding:0 20px; width: 500px;">
|
style="padding:0 20px; width: 500px;">
|
||||||
<el-form-item :rules="[{required: true ,message: '车牌号不能为空',trigger: 'blur'}]" label="车牌号" prop="LICENCE_NO">
|
<el-form-item :rules="[{required: true ,message: '车牌号不能为空',trigger: 'blur'}]" label="车牌号" prop="LICENCE_NO">
|
||||||
<el-input
|
<el-input v-model="addForm.LICENCE_NO" type="text" maxlength="300" placeholder="这里输入车牌号..."
|
||||||
v-model="addForm.LICENCE_NO"
|
|
||||||
type="text"
|
|
||||||
maxlength="300"
|
|
||||||
placeholder="这里输入车牌号..."
|
|
||||||
@blur="goCheckLicenceNoAdd()"/>
|
@blur="goCheckLicenceNoAdd()"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 白牌、蓝牌、黄牌、绿牌、黑牌 下拉框-->
|
|
||||||
<el-form-item :rules="[{required: true,message: '车牌类型不能为空',trigger: 'blur'}]" label="车牌类型" prop="LICENCE_TYPE">
|
<el-form-item :rules="[{required: true,message: '车牌类型不能为空',trigger: 'blur'}]" label="车牌类型" prop="LICENCE_TYPE">
|
||||||
<SelectTree
|
<SelectTree
|
||||||
ref="selectTree_add2"
|
ref="selectTree_add2"
|
||||||
|
@ -228,68 +221,78 @@
|
||||||
placeholder="请选择是否危化车辆"
|
placeholder="请选择是否危化车辆"
|
||||||
style="width: 300px"/>
|
style="width: 300px"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :rules="[{ required: true, message: '请填写负责人姓名', trigger: 'blur' }]" label="负责人" prop="CONTACT">
|
<el-form-item label="负责人" prop="CONTACT" :rules="[{ required: true, message: '请填写负责人姓名', trigger: 'blur' }]">
|
||||||
<el-input v-model="addForm.CONTACT" type="text" maxlength="300" placeholder="这里输入负责人名称..."/>
|
<el-input v-model="addForm.CONTACT" type="text" maxlength="300" placeholder="这里输入负责人名称..."/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :rules="[{ required: true, message: '请填写负责人手机号', trigger: 'blur' },{ pattern: /^1[3-9]\d{9}$/, message: '手机号格式不正确', trigger: 'blur' }]" label="负责人手机号" prop="PHONE">
|
<el-form-item label="负责人手机号" prop="PHONE" :rules="[{ required: true, message: '请填写负责人手机号', trigger: 'blur' },{ pattern: /^1[3-9]\d{9}$/, message: '手机号格式不正确', trigger: 'blur' }]">
|
||||||
<el-input v-model="addForm.PHONE" type="text" maxlength="11" placeholder="这里输入负责人手机号..."/>
|
<el-input v-model="addForm.PHONE" type="text" maxlength="11" placeholder="这里输入负责人手机号..."/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :rules="[{ required: true, message: '请填写排放标准', trigger: 'blur' }]" label="排放标准" prop="EMISSION_STANDARDS">
|
<el-form-item label="排放标准" prop="EMISSION_STANDARDS" :rules="[{ required: true, message: '请填写排放标准', trigger: 'blur' }]">
|
||||||
<el-input v-model="addForm.EMISSION_STANDARDS" type="text" maxlength="300" placeholder="这里输入排放标准..."/>
|
<el-input v-model="addForm.EMISSION_STANDARDS" type="text" maxlength="300" placeholder="这里输入排放标准..."/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 驾驶证 -->
|
<!-- 驾驶证 -->
|
||||||
<el-form-item :rules="[{ required: true, message: '请上传驾驶证', trigger: 'blur' }]" label="驾驶证" prop="DRIVING_LICENSE">
|
<el-form-item label="驾驶证" prop="DRIVING_LICENSE" :rules="[{ required: true, message: '请上传驾驶证', trigger: 'blur' }]">
|
||||||
<el-upload
|
<el-upload
|
||||||
|
:action="uploadUrl"
|
||||||
:on-success="handleDrivingLicenseSuccess"
|
:on-success="handleDrivingLicenseSuccess"
|
||||||
|
:on-remove="handleDrivingLicenseRemove"
|
||||||
:before-upload="beforeUpload"
|
:before-upload="beforeUpload"
|
||||||
:limit="1"
|
:limit="1">
|
||||||
action="http://127.0.0.1:8199/mkmj/management/fileUpload">
|
|
||||||
<el-button type="primary">点击上传</el-button>
|
<el-button type="primary">点击上传</el-button>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
|
<img v-if="addForm.DRIVING_LICENSE" :src="config.fileUrl + addForm.DRIVING_LICENSE" alt="驾驶证" style="margin-top: 10px; max-width: 100%;"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<!-- 绿本 -->
|
<!-- 绿本 -->
|
||||||
<el-form-item :rules="[{ required: true, message: '请上传绿本', trigger: 'blur' }]" label="绿本" prop="GREEN_BOOK">
|
<el-form-item label="绿本" prop="GREEN_BOOK" :rules="[{ required: true, message: '请上传绿本', trigger: 'blur' }]">
|
||||||
<el-upload
|
<el-upload
|
||||||
|
:action="uploadUrl"
|
||||||
:on-success="handleGreenBookSuccess"
|
:on-success="handleGreenBookSuccess"
|
||||||
|
:on-remove="handleGreenBookRemove"
|
||||||
:before-upload="beforeUpload"
|
:before-upload="beforeUpload"
|
||||||
:limit="1"
|
:limit="1">
|
||||||
action="http://127.0.0.1:8199/mkmj/management/fileUpload">
|
|
||||||
<el-button type="primary">点击上传</el-button>
|
<el-button type="primary">点击上传</el-button>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
|
<img v-if="addForm.GREEN_BOOK" :src="config.fileUrl + addForm.GREEN_BOOK" alt="绿本" style="margin-top: 10px; max-width: 100%;"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<!-- 环保随车清单 -->
|
<!-- 环保随车清单 -->
|
||||||
<el-form-item :rules="[{ required: true, message: '请上传环保随车清单', trigger: 'blur' }]" label="环保随车清单" prop="ECO_FRIENDLY_CHECKLIST">
|
<el-form-item label="环保随车清单" prop="ECO_FRIENDLY_CHECKLIST" :rules="[{ required: true, message: '请上传环保随车清单', trigger: 'blur' }]">
|
||||||
<el-upload
|
<el-upload
|
||||||
|
:action="uploadUrl"
|
||||||
:on-success="handleEcoFriendlyChecklistSuccess"
|
:on-success="handleEcoFriendlyChecklistSuccess"
|
||||||
|
:on-remove="handleEcoFriendlyChecklistRemove"
|
||||||
:before-upload="beforeUpload"
|
:before-upload="beforeUpload"
|
||||||
:limit="1"
|
:limit="1">
|
||||||
action="http://127.0.0.1:8199/mkmj/management/fileUpload">
|
|
||||||
<el-button type="primary">点击上传</el-button>
|
<el-button type="primary">点击上传</el-button>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
|
<img v-if="addForm.ECO_FRIENDLY_CHECKLIST" :src="config.fileUrl + addForm.ECO_FRIENDLY_CHECKLIST" alt="环保随车清单" style="margin-top: 10px; max-width: 100%;"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<!-- 出厂合格证 -->
|
<!-- 出厂合格证 -->
|
||||||
<el-form-item :rules="[{ required: true, message: '请上传出厂合格证', trigger: 'blur' }]" label="出厂合格证" prop="FACTORY_CERTIFICATE">
|
<el-form-item label="出厂合格证" prop="FACTORY_CERTIFICATE" :rules="[{ required: true, message: '请上传出厂合格证', trigger: 'blur' }]">
|
||||||
<el-upload
|
<el-upload
|
||||||
|
:action="uploadUrl"
|
||||||
:on-success="handleFactoryCertificateSuccess"
|
:on-success="handleFactoryCertificateSuccess"
|
||||||
|
:on-remove="handleFactoryCertificateRemove"
|
||||||
:before-upload="beforeUpload"
|
:before-upload="beforeUpload"
|
||||||
:limit="1"
|
:limit="1">
|
||||||
action="http://127.0.0.1:8199/mkmj/management/fileUpload">
|
|
||||||
<el-button type="primary">点击上传</el-button>
|
<el-button type="primary">点击上传</el-button>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
|
<img v-if="addForm.FACTORY_CERTIFICATE" :src="config.fileUrl + addForm.FACTORY_CERTIFICATE" alt="出厂合格证" style="margin-top: 10px; max-width: 100%;"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<!-- 环保信息截图 -->
|
<!-- 环保信息截图 -->
|
||||||
<el-form-item :rules="[{ required: true, message: '请上传环保信息截图', trigger: 'blur' }]" label="环保信息截图" prop="ENVIRONMENTAL_SCREENSHOTS">
|
<el-form-item label="环保信息截图" prop="ENVIRONMENTAL_SCREENSHOTS" :rules="[{ required: true, message: '请上传环保信息截图', trigger: 'blur' }]">
|
||||||
<el-upload
|
<el-upload
|
||||||
|
:action="uploadUrl"
|
||||||
:on-success="handleEnvironmentalScreenshotsSuccess"
|
:on-success="handleEnvironmentalScreenshotsSuccess"
|
||||||
|
:on-remove="handleEnvironmentalScreenshotsRemove"
|
||||||
:before-upload="beforeUpload"
|
:before-upload="beforeUpload"
|
||||||
:limit="1"
|
:limit="1">
|
||||||
action="http://127.0.0.1:8199/mkmj/management/fileUpload">
|
|
||||||
<el-button type="primary">点击上传</el-button>
|
<el-button type="primary">点击上传</el-button>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
|
<img v-if="addForm.ENVIRONMENTAL_SCREENSHOTS" :src="config.fileUrl + addForm.ENVIRONMENTAL_SCREENSHOTS" alt="环保信息截图" style="margin-top: 10px; max-width: 100%;"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<div slot="footer" class="dialog-footer">
|
<div slot="footer" class="dialog-footer">
|
||||||
|
@ -297,7 +300,7 @@
|
||||||
<el-button type="primary" @click="editDialogConfirmBtn">确 定</el-button>
|
<el-button type="primary" @click="editDialogConfirmBtn">确 定</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<div style="margin-left: 20px;"/>
|
<div style="margin-left: 20px;"></div>
|
||||||
<div class="bottom-btn-group" style="margin-top: 20px;">
|
<div class="bottom-btn-group" style="margin-top: 20px;">
|
||||||
<el-button size="mini" @click="goBack">返回</el-button>
|
<el-button size="mini" @click="goBack">返回</el-button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -313,6 +316,8 @@ export default {
|
||||||
components: {Pagination, SelectTree},
|
components: {Pagination, SelectTree},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
config: config,
|
||||||
|
uploadUrl: config.httpurl + '/mkmj/management/fileUpload',
|
||||||
listQuery: {
|
listQuery: {
|
||||||
page: 1,
|
page: 1,
|
||||||
limit: 10
|
limit: 10
|
||||||
|
@ -375,13 +380,12 @@ export default {
|
||||||
],
|
],
|
||||||
DANGEROUS_CAR_LIST: [
|
DANGEROUS_CAR_LIST: [
|
||||||
{ID: '0', NAME: '否'},
|
{ID: '0', NAME: '否'},
|
||||||
{ ID: '1', NAME: '是' }
|
{ID: '1', NAME: '是'},
|
||||||
],
|
],
|
||||||
// 车辆下拉树默认属性
|
// 车辆下拉树默认属性
|
||||||
vehicleDefaultProps: {
|
vehicleDefaultProps: {
|
||||||
value: 'ID',
|
value: 'ID',
|
||||||
label: 'NAME',
|
label: 'NAME'
|
||||||
children: 'nodes'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -428,17 +432,17 @@ export default {
|
||||||
goCheckLicenceNoAdd() {
|
goCheckLicenceNoAdd() {
|
||||||
// 检查是否输入了车牌号
|
// 检查是否输入了车牌号
|
||||||
if (!this.addForm.LICENCE_NO) {
|
if (!this.addForm.LICENCE_NO) {
|
||||||
this.$message.error('车牌号不能为空') // 提示车牌号不能为空
|
this.$message.error('车牌号不能为空'); // 提示车牌号不能为空
|
||||||
this.ISCHECK = false // 设置校验状态为 false
|
this.ISCHECK = false; // 设置校验状态为 false
|
||||||
return // 直接返回,不执行后续逻辑
|
return; // 直接返回,不执行后续逻辑
|
||||||
}
|
}
|
||||||
|
|
||||||
// 车牌号格式校验
|
// 车牌号格式校验
|
||||||
const regex = /^([京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-Z0-9]{4}[A-Z0-9挂学警港澳]{1})$/
|
const regex = /^([京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-Z0-9]{4}[A-Z0-9挂学警港澳]{1})$/;
|
||||||
const result = regex.test(this.addForm.LICENCE_NO)
|
const result = regex.test(this.addForm.LICENCE_NO);
|
||||||
|
|
||||||
if (result) {
|
if (result) {
|
||||||
console.log('格式校验通过')
|
console.log('格式校验通过');
|
||||||
requestFN(
|
requestFN(
|
||||||
'/mkmj/management/goCheckLicenceNo',
|
'/mkmj/management/goCheckLicenceNo',
|
||||||
{
|
{
|
||||||
|
@ -446,20 +450,20 @@ export default {
|
||||||
}
|
}
|
||||||
).then((data) => {
|
).then((data) => {
|
||||||
if (data.result === 'success') {
|
if (data.result === 'success') {
|
||||||
this.$message.success('验证通过')
|
this.$message.success('验证通过');
|
||||||
this.ISCHECK = true
|
this.ISCHECK = true;
|
||||||
} else {
|
} else {
|
||||||
this.$message.error('车牌号已存在,请重新输入')
|
this.$message.error('车牌号已存在,请重新输入');
|
||||||
this.ISCHECK = false
|
this.ISCHECK = false;
|
||||||
}
|
}
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
console.info(e)
|
console.info(e);
|
||||||
this.listLoading = false
|
this.listLoading = false;
|
||||||
this.ISCHECK = false
|
this.ISCHECK = false;
|
||||||
})
|
});
|
||||||
} else {
|
} else {
|
||||||
this.$message.error('车牌号不规范') // 提示车牌号格式不正确
|
this.$message.error('车牌号不规范'); // 提示车牌号格式不正确
|
||||||
this.ISCHECK = false
|
this.ISCHECK = false;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 打开新增弹窗的新增按钮
|
// 打开新增弹窗的新增按钮
|
||||||
|
@ -484,34 +488,53 @@ export default {
|
||||||
this.addForm.ENVIRONMENTAL_SCREENSHOTS = ''
|
this.addForm.ENVIRONMENTAL_SCREENSHOTS = ''
|
||||||
},
|
},
|
||||||
handleDrivingLicenseSuccess(response, file) {
|
handleDrivingLicenseSuccess(response, file) {
|
||||||
this.addForm.DRIVING_LICENSE = response.uploadPath
|
this.addForm.DRIVING_LICENSE = response.uploadPath;
|
||||||
|
},
|
||||||
|
handleDrivingLicenseRemove(){
|
||||||
|
this.addForm.DRIVING_LICENSE = ''
|
||||||
},
|
},
|
||||||
handleGreenBookSuccess(response, file) {
|
handleGreenBookSuccess(response, file) {
|
||||||
this.addForm.GREEN_BOOK = response.uploadPath
|
this.addForm.GREEN_BOOK = response.uploadPath;
|
||||||
|
},
|
||||||
|
handleGreenBookRemove(){
|
||||||
|
this.addForm.GREEN_BOOK = ''
|
||||||
},
|
},
|
||||||
handleEcoFriendlyChecklistSuccess(response, file) {
|
handleEcoFriendlyChecklistSuccess(response, file) {
|
||||||
this.addForm.ECO_FRIENDLY_CHECKLIST = response.uploadPath
|
this.addForm.ECO_FRIENDLY_CHECKLIST = response.uploadPath;
|
||||||
|
},
|
||||||
|
handleEcoFriendlyChecklistRemove(){
|
||||||
|
this.addForm.ECO_FRIENDLY_CHECKLIST = ''
|
||||||
},
|
},
|
||||||
handleFactoryCertificateSuccess(response, file) {
|
handleFactoryCertificateSuccess(response, file) {
|
||||||
this.addForm.FACTORY_CERTIFICATE = response.uploadPath
|
this.addForm.FACTORY_CERTIFICATE = response.uploadPath;
|
||||||
|
},
|
||||||
|
handleFactoryCertificateRemove(){
|
||||||
|
this.addForm.FACTORY_CERTIFICATE = ''
|
||||||
},
|
},
|
||||||
handleEnvironmentalScreenshotsSuccess(response, file) {
|
handleEnvironmentalScreenshotsSuccess(response, file) {
|
||||||
this.addForm.ENVIRONMENTAL_SCREENSHOTS = response.uploadPath
|
this.addForm.ENVIRONMENTAL_SCREENSHOTS = response.uploadPath;
|
||||||
|
},
|
||||||
|
handleEnvironmentalScreenshotsRemove() {
|
||||||
|
this.addForm.ENVIRONMENTAL_SCREENSHOTS = ''
|
||||||
},
|
},
|
||||||
beforeUpload(file) {
|
beforeUpload(file) {
|
||||||
const isJPG = file.type === 'image/jpeg' || file.type === 'image/jpg' || file.type === 'image/png'
|
//文件格式限制
|
||||||
if (!isJPG) {
|
const isJPG = file.type === 'image/jpeg';
|
||||||
this.$message.error('上传图片只能是 jpg/jpeg/png 格式!')
|
const isPNG = file.type === 'image/png';
|
||||||
|
|
||||||
|
if (!isJPG && !isPNG) {
|
||||||
|
this.$message.error('上传图片只能是 JPG 或 PNG 格式!');
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
// 文件上传前的校验逻辑
|
// 文件上传前的校验逻辑
|
||||||
const isLt2M = file.size / 1024 / 1024 < 2
|
const isLt2M = file.size / 1024 / 1024 < 2;
|
||||||
if (!isLt2M) {
|
if (!isLt2M) {
|
||||||
this.$message.error('上传文件大小不能超过 2MB!')
|
this.$message.error('上传文件大小不能超过 2MB!');
|
||||||
}
|
}
|
||||||
return isJPG && isLt2M
|
return isLt2M;
|
||||||
},
|
},
|
||||||
addDialogCancelBtn() {
|
addDialogCancelBtn() {
|
||||||
this.addDialogVisible = false
|
this.addDialogVisible = false;
|
||||||
},
|
},
|
||||||
addDialogConfirmBtn() {
|
addDialogConfirmBtn() {
|
||||||
this.$refs.addForm.validate(valid => {
|
this.$refs.addForm.validate(valid => {
|
||||||
|
@ -553,7 +576,7 @@ export default {
|
||||||
},
|
},
|
||||||
goEdit(row) {
|
goEdit(row) {
|
||||||
this.editDialogVisible = true
|
this.editDialogVisible = true
|
||||||
this.addForm = { ...row }
|
this.addForm = {...row};
|
||||||
},
|
},
|
||||||
editDialogCancelBtn() {
|
editDialogCancelBtn() {
|
||||||
this.editDialogVisible = false
|
this.editDialogVisible = false
|
||||||
|
|
|
@ -72,46 +72,50 @@
|
||||||
<pagination :total="total" :page.sync="listQuery.page" :limit.sync="listQuery.limit" @pagination="getList" />
|
<pagination :total="total" :page.sync="listQuery.page" :limit.sync="listQuery.limit" @pagination="getList" />
|
||||||
</div>
|
</div>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:visible.sync="dialogVisible"
|
|
||||||
:before-close="handleClose"
|
|
||||||
title="申请信息"
|
title="申请信息"
|
||||||
width="30%">
|
:visible.sync="dialogVisible"
|
||||||
|
width="30%"
|
||||||
|
:before-close="handleClose">
|
||||||
<el-form ref="auditForm" :model="auditForm" :rules="rules" label-width="120px">
|
<el-form ref="auditForm" :model="auditForm" :rules="rules" label-width="120px">
|
||||||
<el-form-item label="访问起始时间" prop="VISIT_START_TIME">
|
<el-form-item label="访问起始时间" prop="VISIT_START_TIME">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="auditForm.VISIT_START_TIME"
|
v-model="auditForm.VISIT_START_TIME"
|
||||||
type="datetime"
|
type="datetime"
|
||||||
placeholder="选择日期时间"/>
|
placeholder="选择日期时间">
|
||||||
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="访问结束时间" prop="VISIT_END_TIME">
|
<el-form-item label="访问结束时间" prop="VISIT_END_TIME">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="auditForm.VISIT_END_TIME"
|
v-model="auditForm.VISIT_END_TIME"
|
||||||
type="datetime"
|
type="datetime"
|
||||||
placeholder="选择日期时间"/>
|
placeholder="选择日期时间">
|
||||||
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-if="showCorpSelect" label="审核人公司" prop="CORPINFO_ID">
|
<el-form-item label="审核人公司" prop="CORPINFO_ID" v-if="showCorpSelect">
|
||||||
<el-select
|
<el-select
|
||||||
|
filterable
|
||||||
v-model="auditForm.CORPINFO_ID"
|
v-model="auditForm.CORPINFO_ID"
|
||||||
placeholder="请选择公司"
|
placeholder="请选择公司"
|
||||||
filterable
|
|
||||||
@change="handleCorpChange">
|
@change="handleCorpChange">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="corp in corpList"
|
v-for="corp in corpList"
|
||||||
:key="corp.CORPINFO_ID"
|
:key="corp.CORPINFO_ID"
|
||||||
:label="corp.CORP_NAME"
|
:label="corp.CORP_NAME"
|
||||||
:value="corp.CORPINFO_ID"/>
|
:value="corp.CORPINFO_ID">
|
||||||
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="审核人" prop="AUDITOR_ID">
|
<el-form-item label="审核人" prop="AUDITOR_ID">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="auditForm.AUDITOR_ID"
|
|
||||||
filterable
|
filterable
|
||||||
|
v-model="auditForm.AUDITOR_ID"
|
||||||
placeholder="请选择审核人">
|
placeholder="请选择审核人">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="auditor in personList"
|
v-for="auditor in personList"
|
||||||
:key="auditor.USER_ID"
|
:key="auditor.USER_ID"
|
||||||
:label="auditor.USERNAME"
|
:label="auditor.USERNAME"
|
||||||
:value="auditor.USER_ID"/>
|
:value="auditor.USER_ID">
|
||||||
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="访问地" prop="VISIT_PLACE">
|
<el-form-item label="访问地" prop="VISIT_PLACE">
|
||||||
|
@ -123,7 +127,8 @@
|
||||||
v-for="place in doorList"
|
v-for="place in doorList"
|
||||||
:key="place.DOOR_ID"
|
:key="place.DOOR_ID"
|
||||||
:label="place.DOOR_NAME"
|
:label="place.DOOR_NAME"
|
||||||
:value="place.DOOR_ID"/>
|
:value="place.DOOR_ID">
|
||||||
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
@ -134,17 +139,18 @@
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:visible.sync="remarkDialogVisible"
|
|
||||||
:before-close="handleRemarkClose"
|
|
||||||
title="驳回原因"
|
title="驳回原因"
|
||||||
width="30%">
|
:visible.sync="remarkDialogVisible"
|
||||||
|
width="30%"
|
||||||
|
:before-close="handleRemarkClose">
|
||||||
<el-form>
|
<el-form>
|
||||||
<el-form-item label="驳回原因">
|
<el-form-item label="驳回原因">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="remarkText"
|
v-model="remarkText"
|
||||||
:rows="4"
|
|
||||||
type="textarea"
|
type="textarea"
|
||||||
readonly/>
|
:rows="4"
|
||||||
|
readonly>
|
||||||
|
</el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
|
@ -161,7 +167,35 @@ import SelectTree from '@/components/SelectTree'
|
||||||
export default{
|
export default{
|
||||||
components: { Pagination, SelectTree},
|
components: { Pagination, SelectTree},
|
||||||
data() {
|
data() {
|
||||||
|
const validateTime = (rule, value, callback) => {
|
||||||
|
if (!this.auditForm.VISIT_START_TIME || !this.auditForm.VISIT_END_TIME) {
|
||||||
|
callback();
|
||||||
|
} else if (this.auditForm.VISIT_START_TIME > this.auditForm.VISIT_END_TIME) {
|
||||||
|
callback(new Error('访问起始时间不能大于访问结束时间'));
|
||||||
|
} else {
|
||||||
|
callback();
|
||||||
|
}
|
||||||
|
}
|
||||||
return {
|
return {
|
||||||
|
rules: {
|
||||||
|
VISIT_START_TIME: [
|
||||||
|
{ required: true, message: '请选择访问起始时间', trigger: 'blur' },
|
||||||
|
{ validator: validateTime, trigger: 'blur' }
|
||||||
|
],
|
||||||
|
VISIT_END_TIME: [
|
||||||
|
{ required: true, message: '请选择访问结束时间', trigger: 'blur' },
|
||||||
|
{ validator: validateTime, trigger: 'blur' }
|
||||||
|
],
|
||||||
|
CORPINFO_ID: [
|
||||||
|
{ required: true, message: '请选择审核人公司', trigger: 'change' }
|
||||||
|
],
|
||||||
|
AUDITOR_ID: [
|
||||||
|
{ required: true, message: '请选择审核人', trigger: 'change' }
|
||||||
|
],
|
||||||
|
VISIT_PLACE: [
|
||||||
|
{ required: true, message: '请选择访问地', trigger: 'change' }
|
||||||
|
]
|
||||||
|
},
|
||||||
listQuery: {
|
listQuery: {
|
||||||
page: 1,
|
page: 1,
|
||||||
limit: 10
|
limit: 10
|
||||||
|
@ -230,32 +264,6 @@ export default{
|
||||||
value: 'ID',
|
value: 'ID',
|
||||||
label: 'NAME',
|
label: 'NAME',
|
||||||
children: 'nodes'
|
children: 'nodes'
|
||||||
},
|
|
||||||
rules: {
|
|
||||||
VISIT_START_TIME: [
|
|
||||||
{ required: true, message: '访问起始时间不能为空', trigger: 'blur' },
|
|
||||||
{ validator: (rule, value, callback) => {
|
|
||||||
if (value !== '') {
|
|
||||||
if (this.auditForm.VISIT_START_TIME !== '') {
|
|
||||||
this.$refs.auditForm.validateField('VISIT_END_TIME')
|
|
||||||
}
|
|
||||||
callback()
|
|
||||||
}
|
|
||||||
}, trigger: 'change' }
|
|
||||||
],
|
|
||||||
VISIT_END_TIME: [
|
|
||||||
{ required: true, message: '访问结束时间不能为空', trigger: 'blur' },
|
|
||||||
{ validator: (rule, value, callback) => {
|
|
||||||
if (value !== '' && this.auditForm.VISIT_START_TIME &&
|
|
||||||
this.auditForm.VISIT_START_TIME >= this.auditForm.VISIT_END_TIME) {
|
|
||||||
callback(new Error('起始时间不能大于结束时间'))
|
|
||||||
}
|
|
||||||
callback()
|
|
||||||
}, trigger: 'change' }
|
|
||||||
],
|
|
||||||
CORPINFO_ID: [{ required: true, message: '审核公司不能为空', trigger: 'blur' }],
|
|
||||||
AUDITOR_ID: [{ required: true, message: '审核人不能为空', trigger: 'blur' }],
|
|
||||||
VISIT_PLACE: [{ required: true, message: '访问地不能为空', trigger: 'blur' }]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -278,11 +286,11 @@ export default{
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
remark(row) {
|
remark(row) {
|
||||||
this.remarkText = row.QY_REMARK || row.GA_REMARK // 假设驳回原因存储在 row.REJECT_REASON 中
|
this.remarkText = row.QY_REMARK || row.GA_REMARK; // 假设驳回原因存储在 row.REJECT_REASON 中
|
||||||
this.remarkDialogVisible = true // 显示弹窗
|
this.remarkDialogVisible = true; // 显示弹窗
|
||||||
},
|
},
|
||||||
handleRemarkClose() {
|
handleRemarkClose() {
|
||||||
this.remarkDialogVisible = false // 关闭弹窗
|
this.remarkDialogVisible = false; // 关闭弹窗
|
||||||
},
|
},
|
||||||
translateLicenceType(id) {
|
translateLicenceType(id) {
|
||||||
for (var i = 0; i < this.licenceTypeList.length; i++) {
|
for (var i = 0; i < this.licenceTypeList.length; i++) {
|
||||||
|
@ -316,54 +324,52 @@ export default{
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
apply(row) {
|
apply(row) {
|
||||||
this.dialogVisible = true
|
this.dialogVisible = true;
|
||||||
this.auditForm = {
|
this.auditForm = {
|
||||||
VISIT_START_TIME: '',
|
VISIT_START_TIME: '',
|
||||||
VISIT_END_TIME: '',
|
VISIT_END_TIME: '',
|
||||||
CORPINFO_ID: '',
|
CORPINFO_ID: '',
|
||||||
AUDITOR_ID: '',
|
AUDITOR_ID: '',
|
||||||
VISIT_PLACE: ''
|
VISIT_PLACE: ''
|
||||||
}
|
};
|
||||||
this.VEHICLE_ID = row.VEHICLE_ID
|
this.VEHICLE_ID = row.VEHICLE_ID
|
||||||
this.IS_DANGEROUS_CAR = row.IS_DANGEROUS_CAR
|
this.IS_DANGEROUS_CAR = row.IS_DANGEROUS_CAR
|
||||||
this.showCorpSelect = row.IS_DANGEROUS_CAR !== '1'
|
this.showCorpSelect = row.IS_DANGEROUS_CAR !== '1';
|
||||||
// 这里可以调用接口获取公司列表、审核人列表和访问地列表
|
// 这里可以调用接口获取公司列表、审核人列表和访问地列表
|
||||||
this.getCorpList()
|
this.getCorpList();
|
||||||
this.getPlaceList()
|
this.getPlaceList();
|
||||||
if (!this.showCorpSelect){
|
if (!this.showCorpSelect){
|
||||||
this.getAuditorList()
|
this.getAuditorList();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleCorpChange(corpId) {
|
handleCorpChange(corpId) {
|
||||||
// 根据选择的公司ID获取审核人列表
|
// 根据选择的公司ID获取审核人列表
|
||||||
this.getAuditorList(corpId)
|
this.getAuditorList(corpId);
|
||||||
},
|
},
|
||||||
getCorpList() {
|
getCorpList() {
|
||||||
// 调用接口获取公司列表
|
// 调用接口获取公司列表
|
||||||
requestFN('/mkmj/management/getCorpList').then(response => {
|
requestFN('/mkmj/management/getCorpList').then(response => {
|
||||||
this.corpList = response.corpList
|
this.corpList = response.corpList;
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
getAuditorList(corpId) {
|
getAuditorList(corpId) {
|
||||||
// 调用接口获取审核人列表
|
// 调用接口获取审核人列表
|
||||||
requestFN('/mkmj/management/getPersonList',
|
requestFN('/mkmj/management/getPersonList',
|
||||||
{ CORPINFO_ID: corpId }
|
{ CORPINFO_ID: corpId }
|
||||||
).then(response => {
|
).then(response => {
|
||||||
this.personList = response.personList
|
this.personList = response.personList;
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
getPlaceList() {
|
getPlaceList() {
|
||||||
// 调用接口获取访问地列表
|
// 调用接口获取访问地列表
|
||||||
requestFN('/mkmj/management/getPlaceList').then(response => {
|
requestFN('/mkmj/management/getPlaceList').then(response => {
|
||||||
this.doorList = response.doorList
|
this.doorList = response.doorList;
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
submitAudit() {
|
submitAudit() {
|
||||||
this.$refs.auditForm.validate(valid => {
|
|
||||||
if (!valid) {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
// 提交审核信息
|
// 提交审核信息
|
||||||
|
this.$refs.auditForm.validate(valid => {
|
||||||
|
if (valid) {
|
||||||
requestFN('/mkmj/management/intoPortApplication',
|
requestFN('/mkmj/management/intoPortApplication',
|
||||||
{
|
{
|
||||||
VEHICLE_ID: this.VEHICLE_ID,
|
VEHICLE_ID: this.VEHICLE_ID,
|
||||||
|
@ -374,21 +380,22 @@ export default{
|
||||||
DOOR_ID: this.auditForm.VISIT_PLACE
|
DOOR_ID: this.auditForm.VISIT_PLACE
|
||||||
}
|
}
|
||||||
).then(response => {
|
).then(response => {
|
||||||
this.$message.success('申请提交成功')
|
this.$message.success('申请提交成功');
|
||||||
this.dialogVisible = false
|
this.dialogVisible = false;
|
||||||
this.getList()
|
this.getList()
|
||||||
})
|
})
|
||||||
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
handleClose(){
|
handleClose(){
|
||||||
this.dialogVisible = false
|
this.dialogVisible = false;
|
||||||
this.auditForm = {
|
this.auditForm = {
|
||||||
VISIT_START_TIME: '',
|
VISIT_START_TIME: '',
|
||||||
VISIT_END_TIME: '',
|
VISIT_END_TIME: '',
|
||||||
CORPINFO_ID: '',
|
CORPINFO_ID: '',
|
||||||
AUDITOR_ID: '',
|
AUDITOR_ID: '',
|
||||||
VISIT_PLACE: ''
|
VISIT_PLACE: ''
|
||||||
}
|
};
|
||||||
},
|
},
|
||||||
returnBtn(){
|
returnBtn(){
|
||||||
this.$parent.activeName = 'List'
|
this.$parent.activeName = 'List'
|
||||||
|
|
|
@ -231,14 +231,14 @@
|
||||||
:clearable="false"
|
:clearable="false"
|
||||||
:options="departmentTreeData"
|
:options="departmentTreeData"
|
||||||
:props="defaultProps"
|
:props="defaultProps"
|
||||||
v-model="reapplyForm.DEPARTMENT_ID"
|
v-model="reapplyForm.DEPT_NAME"
|
||||||
placeholder="请选择车辆所属部门"
|
placeholder="请选择车辆所属部门"
|
||||||
style="width: 300px"
|
style="width: 300px"
|
||||||
@change="handleCorpChange"/>
|
@change="handleCorpChange"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="负责人" prop="U_NAME">
|
<el-form-item label="负责人" prop="U_NAME">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="reapplyForm.USER_ID"
|
v-model="reapplyForm.U_NAME"
|
||||||
placeholder="请选择负责人">
|
placeholder="请选择负责人">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="user in personList"
|
v-for="user in personList"
|
||||||
|
@ -283,7 +283,18 @@ export default {
|
||||||
return {
|
return {
|
||||||
rules: {
|
rules: {
|
||||||
LICENCE_NO: [
|
LICENCE_NO: [
|
||||||
{ required: true, message: '车牌号不能为空', trigger: 'blur' }
|
{ required: true, message: '车牌号不能为空', trigger: 'blur' },
|
||||||
|
{
|
||||||
|
validator: (rule, value, callback) => {
|
||||||
|
const reg = /^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼][A-HJ-NP-Z][A-HJ-NP-Z0-9]{4,5}[A-HJ-NP-Z0-9挂学警港澳]$/;
|
||||||
|
if (!reg.test(value)) {
|
||||||
|
callback(new Error('车牌号格式不正确'));
|
||||||
|
} else {
|
||||||
|
callback();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
],
|
],
|
||||||
LICENCE_TYPE: [
|
LICENCE_TYPE: [
|
||||||
{ required: true, message: '车牌类型不能为空', trigger: 'change' }
|
{ required: true, message: '车牌类型不能为空', trigger: 'change' }
|
||||||
|
@ -422,6 +433,7 @@ export default {
|
||||||
},
|
},
|
||||||
reapplyDialogVisible: false, // 控制重新申请对话框的显示
|
reapplyDialogVisible: false, // 控制重新申请对话框的显示
|
||||||
reapplyForm: { // 重新申请表单数据
|
reapplyForm: { // 重新申请表单数据
|
||||||
|
VEHICLE_DEPARTMENT_ID: '',
|
||||||
LICENCE_NO: '',
|
LICENCE_NO: '',
|
||||||
LICENCE_TYPE: '',
|
LICENCE_TYPE: '',
|
||||||
VEHICLE_TYPE: '',
|
VEHICLE_TYPE: '',
|
||||||
|
@ -611,7 +623,7 @@ export default {
|
||||||
this.ISCHECK = false
|
this.ISCHECK = false
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
this.$message.success('车牌号不规范')
|
this.$message.error('车牌号不规范')
|
||||||
this.ISCHECK = false
|
this.ISCHECK = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -627,8 +639,10 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
apply(row) {
|
apply(row) {
|
||||||
|
console.log(row)
|
||||||
this.reapplyForm = { ...row }; // 将当前行的数据复制到 reapplyForm
|
this.reapplyForm = { ...row }; // 将当前行的数据复制到 reapplyForm
|
||||||
this.reapplyForm.DEPT_NAME = row.DEPT_NAME
|
this.reapplyForm.DEPT_NAME = row.DEPT_NAME
|
||||||
|
this.reapplyForm.DEPARTMENT_ID = row.VEHICLE_DEPARTMENT_ID
|
||||||
this.reapplyForm.U_NAME = row.U_NAME
|
this.reapplyForm.U_NAME = row.U_NAME
|
||||||
this.reapplyDialogVisible = true; // 打开对话框
|
this.reapplyDialogVisible = true; // 打开对话框
|
||||||
console.log(this.reapplyForm)
|
console.log(this.reapplyForm)
|
||||||
|
@ -637,6 +651,7 @@ export default {
|
||||||
this.reapplyDialogVisible = false; // 关闭对话框
|
this.reapplyDialogVisible = false; // 关闭对话框
|
||||||
},
|
},
|
||||||
reapplyDialogConfirmBtn() {
|
reapplyDialogConfirmBtn() {
|
||||||
|
console.log()
|
||||||
// 在这里处理重新申请的逻辑
|
// 在这里处理重新申请的逻辑
|
||||||
this.$refs.reapplyForm.validate(valid => {
|
this.$refs.reapplyForm.validate(valid => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
<el-table-column prop="personType" label="人员身份"/>
|
<el-table-column prop="personType" label="人员身份"/>
|
||||||
<el-table-column prop="personType" label="人员身份"/>
|
<el-table-column prop="personType" label="人员身份"/>
|
||||||
<el-table-column prop="regionName" label="区域名称"/>
|
<el-table-column prop="regionName" label="区域名称"/>
|
||||||
<el-table-column prop="reportTime" label="上报时间"/>
|
<el-table-column prop="syncTime" label="上报时间"/>
|
||||||
</el-table>
|
</el-table>
|
||||||
<div class="page-btn-group">
|
<div class="page-btn-group">
|
||||||
<div/><div/>
|
<div/><div/>
|
||||||
|
|
Loading…
Reference in New Issue