Browse Source

修改司机新增字段

dev-xx
qb 6 months ago
parent
commit
2b0753229a
  1. 311
      src/views/basicdata/driverArtery/basicdataDriverArteryAdd.vue
  2. 125
      src/views/basicdata/driverArtery/basicdataDriverArteryView.vue
  3. 1
      src/views/supervise/management.vue

311
src/views/basicdata/driverArtery/basicdataDriverArteryAdd.vue

@ -40,7 +40,6 @@
clearable clearable
type="date" type="date"
:placeholder="item.placeholder || '请选择' + item.label" :placeholder="item.placeholder || '请选择' + item.label"
:disabled-date="disabledDate"
class="w100" class="w100"
:value-format="item.valueFormat || 'yyyy-MM-dd'" :value-format="item.valueFormat || 'yyyy-MM-dd'"
/> />
@ -73,33 +72,90 @@
:prop="item.prop" :prop="item.prop"
:rules="item.rules" :rules="item.rules"
> >
<div v-loading="item.loading">
<el-upload
list-type="picture-card"
:show-file-list="false"
:on-preview="handlePreview"
:action="'/api/blade-resource/oss/endpoint/put-file'"
:on-success="file => handleUpLoadSuccess(file, item)"
:before-upload="file => handleBeforeUpload(file, item)"
:on-exceed="() => handleImgError(item)"
:headers="headers"
>
<div v-if="form[item.prop]" @click.stop class="upLoadImg_box">
<el-image
:src="form[item.prop]"
class="avatar"
:preview-src-list="[form[item.prop]]"
/>
<div class="clearIcon" @click="() => handleRemoveImg(item)">
<el-icon color="#f00"><DeleteFilled /></el-icon>
</div>
</div>
<el-icon v-else class="avatar-uploader-icon"><Plus /></el-icon>
</el-upload>
</div>
</el-form-item>
</div>
<el-form-item
style="width: 100%"
:label="item.label"
v-for="(item, index) in fileOption"
:key="item.prop"
:prop="item.prop"
:rules="item.rules"
>
<div v-loading="item.loading" style="width: 100%">
<el-upload <el-upload
list-type="picture-card" ref="upload"
:show-file-list="false" style="width: 100%"
:on-preview="handlePreview"
:action="'/api/blade-resource/oss/endpoint/put-file'" :action="'/api/blade-resource/oss/endpoint/put-file'"
:on-success="file => handleUpLoadSuccess(file, item)" :on-success="file => handleUpLoadSuccess(file, item)"
:before-upload="handleBeforeUpload" :before-upload="
:on-exceed="() => handleImgError(item)" file => {
const typeArr = file.name.split('.');
const type = typeArr[typeArr.length - 1];
item.loading = true;
return file;
}
"
:on-exceed="
files => {
try {
console.log('$refs :>> ', $refs);
$refs.upload[index].clearFiles();
const file = files[0];
console.log('file :>> ', file);
$refs.upload[index].handleStart(file);
} catch (error) {
console.log('error :>> ', error);
}
}
"
:headers="headers" :headers="headers"
:drag="item.drag"
:show-file-list="false"
> >
<div v-if="form[item.prop]" @click.stop class="upLoadImg_box"> <el-icon class="el-icon--upload"><upload-filled /></el-icon>
<el-image <div class="el-upload__text">请上传图片 / word文档 / pdf</div>
:src="form[item.prop]"
class="avatar"
:preview-src-list="[form[item.prop]]"
/>
<div class="clearIcon" @click="() => handleRemoveImg(item)">
<el-icon color="#f00"><DeleteFilled /></el-icon>
</div>
</div>
<el-icon v-else class="avatar-uploader-icon"><Plus /></el-icon>
</el-upload> </el-upload>
</el-form-item> </div>
</div> <div v-if="form[item.prop]" style="display: flex; margin-top: 20px">
<el-link :href="form[item.prop]">{{ form[item.prop] }}</el-link>
<div class="clearIcon" style="margin-left: 20px" @click="() => handleRemoveImg(item)">
<el-icon color="#fff"><DeleteFilled /></el-icon>
</div>
</div>
</el-form-item>
</el-form> </el-form>
</div> </div>
<div class="footer_container"></div>
<div class="submit_container"> <div class="submit_container">
<el-button icon="CircleClose" @click="back"> </el-button> <el-button icon="CircleClose" @click="back"> </el-button>
<el-button icon="Refresh" type="primary" @click="handleReset"> </el-button> <el-button icon="Refresh" type="primary" @click="handleReset"> </el-button>
@ -136,6 +192,7 @@ export default {
label: '姓名', label: '姓名',
prop: 'name', prop: 'name',
type: 'input', type: 'input',
default: '',
rules: [{ required: true, message: '请输入姓名!', trigger: ['blur', 'change'] }], rules: [{ required: true, message: '请输入姓名!', trigger: ['blur', 'change'] }],
}, },
{ {
@ -148,7 +205,7 @@ export default {
payload.value = payload.value + 1; payload.value = payload.value + 1;
console.log('111 :>> ', 111); console.log('111 :>> ', 111);
}, },
default: '',
rules: [ rules: [
{ {
required: true, required: true,
@ -162,8 +219,8 @@ export default {
prop: 'type', prop: 'type',
filterable: true, filterable: true,
type: 'select', type: 'select',
dicUrl: '/api/blade-system/dict-biz/dictionary?code=basic_driver_type',
options: [], options: [],
default: '',
rules: [{ required: true, message: '请选择司机类型', trigger: ['blur', 'change'] }], rules: [{ required: true, message: '请选择司机类型', trigger: ['blur', 'change'] }],
}, },
{ {
@ -171,9 +228,9 @@ export default {
prop: 'jobType', prop: 'jobType',
filterable: true, filterable: true,
type: 'select', type: 'select',
dicUrl: '/api/blade-system/dict-biz/dictionary?code=basic_driverjob_type',
options: [], options: [],
multiple: true, multiple: true,
default: [],
rules: [{ required: true, message: '请选择职务类型', trigger: ['blur'] }], rules: [{ required: true, message: '请选择职务类型', trigger: ['blur'] }],
}, },
{ {
@ -181,7 +238,7 @@ export default {
prop: 'drivingType', prop: 'drivingType',
filterable: true, filterable: true,
type: 'select', type: 'select',
dicUrl: '/api/blade-system/dict-biz/dictionary?code=basic_driving_type', default: '',
rules: [{ required: true, message: '请选择准驾车型', trigger: ['blur', 'change'] }], rules: [{ required: true, message: '请选择准驾车型', trigger: ['blur', 'change'] }],
options: [], options: [],
}, },
@ -193,8 +250,7 @@ export default {
type: 'select', type: 'select',
remote: true, remote: true,
multiple: true, multiple: true,
// dicData: [], default: [],
dicUrl: '/api/logpm-basicdata/vehicle/dictionary?vehicleNub={{key}}',
options: [], options: [],
multiple: true, multiple: true,
}, },
@ -204,6 +260,7 @@ export default {
type: 'date', type: 'date',
format: 'YYYY-MM-DD', format: 'YYYY-MM-DD',
valueFormat: 'YYYY-MM-DD', valueFormat: 'YYYY-MM-DD',
default: '',
}, },
{ {
label: '合同结束时间', label: '合同结束时间',
@ -211,20 +268,21 @@ export default {
type: 'date', type: 'date',
format: 'YYYY-MM-DD', format: 'YYYY-MM-DD',
valueFormat: 'YYYY-MM-DD', valueFormat: 'YYYY-MM-DD',
default: '',
}, },
{ {
label: '身份证号', label: '身份证号',
prop: 'idCard', prop: 'idCard',
type: 'number', type: 'input',
default: '',
}, },
{ {
label: '性别', label: '性别',
prop: 'gender', prop: 'gender',
filterable: true, filterable: true,
type: 'select', type: 'select',
dicUrl: '/api/blade-system/dict-biz/dictionary?code=sex',
options: [], options: [],
default: '',
}, },
{ {
label: '仓库', label: '仓库',
@ -232,38 +290,42 @@ export default {
filterable: true, filterable: true,
type: 'select', type: 'select',
remote: true, remote: true,
dicUrl: '/logpm-basicdata/warehouse/listName?name={{key}}',
options: [], options: [],
rules: [{ required: true, message: '请选择仓库!', trigger: 'blur' }], rules: [{ required: true, message: '请选择仓库!', trigger: 'blur' }],
multiple: true, multiple: true,
default: [],
}, },
{ {
label: '居住地址', label: '居住地址',
prop: 'residentialAddress', prop: 'residentialAddress',
type: 'input', type: 'input',
default: '',
}, },
{ {
label: '银行类型', label: '银行类型',
prop: 'bankType', prop: 'bankType',
filterable: true, filterable: true,
type: 'select', type: 'select',
dicUrl: '/api/blade-system/dict-biz/dictionary?code=basic_bank_type',
options: [], options: [],
default: '',
}, },
{ {
label: '银行卡号', label: '银行卡号',
prop: 'bankCardNub', prop: 'bankCardNub',
type: 'number', type: 'input',
default: '',
}, },
{ {
label: '驾驶证号', label: '驾驶证号',
prop: 'driverLicenseNub', prop: 'driverLicenseNub',
type: 'input', type: 'input',
default: '',
}, },
{ {
label: '驾驶证发证机关', label: '驾驶证发证机关',
prop: 'driverLicenseOrgan', prop: 'driverLicenseOrgan',
type: 'input', type: 'input',
default: '',
}, },
{ {
label: '驾驶证起始日期', label: '驾驶证起始日期',
@ -271,6 +333,7 @@ export default {
type: 'date', type: 'date',
format: 'YYYY-MM-DD', format: 'YYYY-MM-DD',
valueFormat: 'YYYY-MM-DD', valueFormat: 'YYYY-MM-DD',
default: '',
}, },
{ {
label: '驾驶证到期日期', label: '驾驶证到期日期',
@ -278,49 +341,60 @@ export default {
type: 'date', type: 'date',
format: 'YYYY-MM-DD', format: 'YYYY-MM-DD',
valueFormat: 'YYYY-MM-DD', valueFormat: 'YYYY-MM-DD',
default: '',
}, },
{ {
label: '从业资格证编号', label: '从业资格证编号',
prop: 'employeeQualificationNub', prop: 'employeeQualificationNub',
type: 'input', type: 'input',
default: '',
}, },
{ {
label: '道路经营许可证号', label: '道路经营许可证号',
prop: 'roadOperationLicenseNub', prop: 'roadOperationLicenseNub',
type: 'input', type: 'input',
default: '',
}, },
{ {
label: '承运商', label: '承运商',
prop: 'carrierId', prop: 'carrierId',
type: 'select', type: 'select',
filterable: true, filterable: true,
dicUrl: '/api/logpm-basicdata/carrier/dictionary',
options: [], options: [],
rules: [{ required: true, message: '请选择承运商!', trigger: 'blur' }], rules: [{ required: true, message: '请选择承运商!', trigger: 'blur' }],
default: '',
}, },
{ {
label: '结算渠道', label: '结算渠道',
prop: 'settlementChannel', prop: 'settlementChannel',
type: 'select', type: 'select',
filterable: true, filterable: true,
dicUrl: '/api/logpm-basicdata/carrier/dictionary', options: [
options: [], { dictKey: '1', dictValue: '微信' },
rules: [{ required: true, message: '请选择结算渠道!', trigger: 'blur' }], { dictKey: '2', dictValue: '支付宝' },
{ dictKey: '3', dictValue: '银行卡' },
{ dictKey: '4', dictValue: '现金' },
],
rules: [{ required: false, message: '请选择结算渠道!', trigger: 'blur' }],
default: '',
}, },
{ {
label: '结算账号', label: '结算账号',
prop: 'roadOperationLicenseNub', prop: 'settlementAccount',
type: 'input', type: 'input',
default: '',
}, },
{ {
label: '运输协议', label: '运输协议',
prop: 'transportationAgreement', prop: 'transportationAgreement',
type: 'input', type: 'input',
default: '',
}, },
{ {
label: '备注', label: '备注',
prop: 'notes', prop: 'notes',
type: 'input', type: 'input',
default: '',
}, },
], ],
imgOption: [ imgOption: [
@ -330,13 +404,10 @@ export default {
type: 'upload', type: 'upload',
dataType: 'string', dataType: 'string',
listType: 'picture-img', listType: 'picture-img',
hide: true,
multiple: false, multiple: false,
loading: false,
action: '/blade-resource/oss/endpoint/put-file', action: '/blade-resource/oss/endpoint/put-file',
propsHttp: { default: '',
res: 'data',
url: 'link',
},
}, },
{ {
label: '身份证正面照片', label: '身份证正面照片',
@ -344,13 +415,10 @@ export default {
type: 'upload', type: 'upload',
dataType: 'string', dataType: 'string',
listType: 'picture-img', listType: 'picture-img',
hide: true,
multiple: false, multiple: false,
loading: false,
action: '/blade-resource/oss/endpoint/put-file', action: '/blade-resource/oss/endpoint/put-file',
propsHttp: { default: '',
res: 'data',
url: 'link',
},
}, },
{ {
label: '身份证背面照片', label: '身份证背面照片',
@ -358,13 +426,10 @@ export default {
type: 'upload', type: 'upload',
dataType: 'string', dataType: 'string',
listType: 'picture-img', listType: 'picture-img',
hide: true,
multiple: false, multiple: false,
loading: false,
action: '/blade-resource/oss/endpoint/put-file', action: '/blade-resource/oss/endpoint/put-file',
propsHttp: { default: '',
res: 'data',
url: 'link',
},
}, },
{ {
label: '驾驶证照片', label: '驾驶证照片',
@ -372,13 +437,10 @@ export default {
type: 'upload', type: 'upload',
dataType: 'string', dataType: 'string',
listType: 'picture-img', listType: 'picture-img',
hide: true,
multiple: false, multiple: false,
loading: false,
action: '/blade-resource/oss/endpoint/put-file', action: '/blade-resource/oss/endpoint/put-file',
propsHttp: { default: '',
res: 'data',
url: 'link',
},
}, },
{ {
label: '驾驶证背面照片', label: '驾驶证背面照片',
@ -386,13 +448,24 @@ export default {
type: 'upload', type: 'upload',
dataType: 'string', dataType: 'string',
listType: 'picture-img', listType: 'picture-img',
hide: true,
multiple: false, multiple: false,
loading: false,
action: '/blade-resource/oss/endpoint/put-file', action: '/blade-resource/oss/endpoint/put-file',
propsHttp: { default: '',
res: 'data', },
url: 'link', ],
}, fileOption: [
{
label: '合同',
prop: 'contract',
type: 'upload',
dataType: 'string',
listType: 'picture-img',
drag: true,
loading: false,
multiple: false,
action: '/blade-resource/oss/endpoint/put-file',
default: '',
}, },
], ],
rules: {}, rules: {},
@ -400,35 +473,6 @@ export default {
headers: { headers: {
'Blade-Auth': 'bearer ' + getToken(), 'Blade-Auth': 'bearer ' + getToken(),
}, },
shortcuts: [
{
text: '最近一周',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
return [start, end];
},
},
{
text: '最近一个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
return [start, end];
},
},
{
text: '最近三个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
return [start, end];
},
},
],
/** loading */ /** loading */
loadingObj: { loadingObj: {
/** 表格loading */ /** 表格loading */
@ -436,6 +480,7 @@ export default {
/** 页面loading */ /** 页面loading */
pageLoading: false, pageLoading: false,
}, },
upload: '',
}; };
}, },
computed: { computed: {
@ -560,32 +605,38 @@ export default {
console.log('res :>> ', res); console.log('res :>> ', res);
}, },
/** 上传前 */ /** 上传前 */
async handleBeforeUpload(file) { async handleBeforeUpload(file, item) {
const isJPG = file.type === 'image/jpeg'; try {
const isPNG = file.type === 'image/png'; const isJPG = file.type === 'image/jpeg';
const isLt2M = file.size / 1024 / 1024 < 2; const isPNG = file.type === 'image/png';
const isLt2M = file.size / 1024 / 1024 < 2;
if (!isJPG && !isPNG) {
this.$message.error('上传图片只能是 JPG 或 PNG 格式!'); if (!isJPG && !isPNG) {
return false; this.$message.error('上传图片只能是 JPG 或 PNG 格式!');
} return false;
if (!isLt2M) { }
this.$message.error('上传图片大小不能超过 2MB!'); if (!isLt2M) {
return false; this.$message.error('上传图片大小不能超过 2MB!');
return false;
}
item.loading = true;
const res = await compressImageBlob(file);
return res;
} catch (error) {
console.log('error :>> ', error);
} }
const res = await compressImageBlob(rawFile);
return res;
}, },
/** 上传成功 */ /** 上传成功 */
handleUpLoadSuccess(file, item) { handleUpLoadSuccess(file, item) {
console.log('file :>> ', file); console.log('file :>> ', file);
console.log(' this.form :>> ', this.form); console.log(' this.form :>> ', this.form);
item.loading = false;
if (file.code !== 200) return; if (file.code !== 200) return;
this.form[item.prop] = file.data.link; this.form[item.prop] = file.data.link;
}, },
/** 移除图片 */ /** 移除图片 */
handleRemoveImg(item) { handleRemoveImg(item) {
delete this.form[item.prop]; this.form[item.prop] = '';
}, },
handleImgError(item) { handleImgError(item) {
this.$message.error(item.label + '仅需上传一张图片'); this.$message.error(item.label + '仅需上传一张图片');
@ -595,7 +646,27 @@ export default {
}, },
async onLoad() { async onLoad() {
const _id = this.$route.query.id; const _id = this.$route.query.id;
for (let i = 0; i < this.option.length; i++) {
const val = this.option[i];
this.form[val.prop] = val.default;
}
for (let i = 0; i < this.imgOption.length; i++) {
const val = this.imgOption[i];
this.form[val.prop] = val.default;
}
for (let i = 0; i < this.fileOption.length; i++) {
const val = this.fileOption[i];
this.form[val.prop] = val.default;
}
if (!_id) return; if (!_id) return;
const res = await getDetail(_id); const res = await getDetail(_id);
const { code, data } = res.data; const { code, data } = res.data;
@ -738,22 +809,28 @@ export default {
display: block; display: block;
} }
.clearIcon {
right: 10px;
top: 10px;
transition: all 0.3s;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
border-radius: 50%;
cursor: pointer;
background-color: #f00;
}
.upLoadImg_box { .upLoadImg_box {
position: relative; position: relative;
.clearIcon { .clearIcon {
opacity: 0; opacity: 0;
position: absolute; position: absolute;
right: 10px;
top: 10px;
transition: all 0.3s;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff; background-color: #fff;
border-radius: 50%;
} }
&:hover { &:hover {
@ -764,6 +841,10 @@ export default {
} }
} }
.footer_container {
height: 60px;
}
.submit_container { .submit_container {
position: absolute; position: absolute;
bottom: 20px; bottom: 20px;

125
src/views/basicdata/driverArtery/basicdataDriverArteryView.vue

@ -80,6 +80,19 @@
</div> </div>
</el-form-item> </el-form-item>
</div> </div>
<el-form-item
style="width: 100%"
:label="item.label"
v-for="(item, index) in fileOption"
:key="item.prop"
:prop="item.prop"
:rules="item.rules"
>
<div v-if="form[item.prop]" style="display: flex; margin-top: 20px">
<el-link :href="form[item.prop]">{{ form[item.prop] }}</el-link>
</div>
</el-form-item>
</el-form> </el-form>
</div> </div>
<div class="submit_container"> <div class="submit_container">
@ -114,6 +127,7 @@ export default {
label: '姓名', label: '姓名',
prop: 'name', prop: 'name',
type: 'input', type: 'input',
default: '',
rules: [{ required: true, message: '请输入姓名!', trigger: ['blur', 'change'] }], rules: [{ required: true, message: '请输入姓名!', trigger: ['blur', 'change'] }],
}, },
{ {
@ -126,7 +140,7 @@ export default {
payload.value = payload.value + 1; payload.value = payload.value + 1;
console.log('111 :>> ', 111); console.log('111 :>> ', 111);
}, },
default: '',
rules: [ rules: [
{ {
required: true, required: true,
@ -140,23 +154,27 @@ export default {
prop: 'type', prop: 'type',
filterable: true, filterable: true,
type: 'select', type: 'select',
dicUrl: '/api/blade-system/dict-biz/dictionary?code=basic_driver_type',
options: [], options: [],
default: '',
rules: [{ required: true, message: '请选择司机类型', trigger: ['blur', 'change'] }],
}, },
{ {
label: '职务类型', label: '职务类型',
prop: 'jobType', prop: 'jobType',
filterable: true, filterable: true,
type: 'select', type: 'select',
dicUrl: '/api/blade-system/dict-biz/dictionary?code=basic_driverjob_type',
options: [], options: [],
multiple: true,
default: [],
rules: [{ required: true, message: '请选择职务类型', trigger: ['blur'] }],
}, },
{ {
label: '准驾车型', label: '准驾车型',
prop: 'drivingType', prop: 'drivingType',
filterable: true, filterable: true,
type: 'select', type: 'select',
dicUrl: '/api/blade-system/dict-biz/dictionary?code=basic_driving_type', default: '',
rules: [{ required: true, message: '请选择准驾车型', trigger: ['blur', 'change'] }],
options: [], options: [],
}, },
@ -167,8 +185,7 @@ export default {
type: 'select', type: 'select',
remote: true, remote: true,
multiple: true, multiple: true,
// dicData: [], default: [],
dicUrl: '/api/logpm-basicdata/vehicle/dictionary?vehicleNub={{key}}',
options: [], options: [],
multiple: true, multiple: true,
}, },
@ -178,6 +195,7 @@ export default {
type: 'date', type: 'date',
format: 'YYYY-MM-DD', format: 'YYYY-MM-DD',
valueFormat: 'YYYY-MM-DD', valueFormat: 'YYYY-MM-DD',
default: '',
}, },
{ {
label: '合同结束时间', label: '合同结束时间',
@ -185,20 +203,21 @@ export default {
type: 'date', type: 'date',
format: 'YYYY-MM-DD', format: 'YYYY-MM-DD',
valueFormat: 'YYYY-MM-DD', valueFormat: 'YYYY-MM-DD',
default: '',
}, },
{ {
label: '身份证号', label: '身份证号',
prop: 'idCard', prop: 'idCard',
type: 'number', type: 'input',
default: '',
}, },
{ {
label: '性别', label: '性别',
prop: 'gender', prop: 'gender',
filterable: true, filterable: true,
type: 'select', type: 'select',
dicUrl: '/api/blade-system/dict-biz/dictionary?code=sex',
options: [], options: [],
default: '',
}, },
{ {
label: '仓库', label: '仓库',
@ -206,38 +225,42 @@ export default {
filterable: true, filterable: true,
type: 'select', type: 'select',
remote: true, remote: true,
dicUrl: '/logpm-basicdata/warehouse/listName?name={{key}}',
options: [], options: [],
rules: [{ required: true, message: '请选择仓库!', trigger: 'blur' }], rules: [{ required: true, message: '请选择仓库!', trigger: 'blur' }],
multiple: true, multiple: true,
default: [],
}, },
{ {
label: '居住地址', label: '居住地址',
prop: 'residentialAddress', prop: 'residentialAddress',
type: 'input', type: 'input',
default: '',
}, },
{ {
label: '银行类型', label: '银行类型',
prop: 'bankType', prop: 'bankType',
filterable: true, filterable: true,
type: 'select', type: 'select',
dicUrl: '/api/blade-system/dict-biz/dictionary?code=basic_bank_type',
options: [], options: [],
default: '',
}, },
{ {
label: '银行卡号', label: '银行卡号',
prop: 'bankCardNub', prop: 'bankCardNub',
type: 'number', type: 'input',
default: '',
}, },
{ {
label: '驾驶证号', label: '驾驶证号',
prop: 'driverLicenseNub', prop: 'driverLicenseNub',
type: 'input', type: 'input',
default: '',
}, },
{ {
label: '驾驶证发证机关', label: '驾驶证发证机关',
prop: 'driverLicenseOrgan', prop: 'driverLicenseOrgan',
type: 'input', type: 'input',
default: '',
}, },
{ {
label: '驾驶证起始日期', label: '驾驶证起始日期',
@ -245,6 +268,7 @@ export default {
type: 'date', type: 'date',
format: 'YYYY-MM-DD', format: 'YYYY-MM-DD',
valueFormat: 'YYYY-MM-DD', valueFormat: 'YYYY-MM-DD',
default: '',
}, },
{ {
label: '驾驶证到期日期', label: '驾驶证到期日期',
@ -252,36 +276,60 @@ export default {
type: 'date', type: 'date',
format: 'YYYY-MM-DD', format: 'YYYY-MM-DD',
valueFormat: 'YYYY-MM-DD', valueFormat: 'YYYY-MM-DD',
default: '',
}, },
{ {
label: '从业资格证编号', label: '从业资格证编号',
prop: 'employeeQualificationNub', prop: 'employeeQualificationNub',
type: 'input', type: 'input',
default: '',
}, },
{ {
label: '道路经营许可证号', label: '道路经营许可证号',
prop: 'roadOperationLicenseNub', prop: 'roadOperationLicenseNub',
type: 'input', type: 'input',
default: '',
}, },
{ {
label: '承运商', label: '承运商',
prop: 'carrierId', prop: 'carrierId',
filterable: true,
type: 'select', type: 'select',
filterable: true, filterable: true,
dicUrl: '/api/logpm-basicdata/carrier/dictionary',
options: [], options: [],
rules: [{ required: true, message: '请选择承运商!', trigger: 'blur' }], rules: [{ required: true, message: '请选择承运商!', trigger: 'blur' }],
default: '',
},
{
label: '结算渠道',
prop: 'settlementChannel',
type: 'select',
filterable: true,
options: [
{ dictKey: '1', dictValue: '微信' },
{ dictKey: '2', dictValue: '支付宝' },
{ dictKey: '3', dictValue: '银行卡' },
{ dictKey: '4', dictValue: '现金' },
],
rules: [{ required: false, message: '请选择结算渠道!', trigger: 'blur' }],
default: '',
},
{
label: '结算账号',
prop: 'settlementAccount',
type: 'input',
default: '',
}, },
{ {
label: '运输协议', label: '运输协议',
prop: 'transportationAgreement', prop: 'transportationAgreement',
type: 'input', type: 'input',
default: '',
}, },
{ {
label: '备注', label: '备注',
prop: 'notes', prop: 'notes',
type: 'input', type: 'input',
default: '',
}, },
], ],
imgOption: [ imgOption: [
@ -291,13 +339,10 @@ export default {
type: 'upload', type: 'upload',
dataType: 'string', dataType: 'string',
listType: 'picture-img', listType: 'picture-img',
hide: true,
multiple: false, multiple: false,
loading: false,
action: '/blade-resource/oss/endpoint/put-file', action: '/blade-resource/oss/endpoint/put-file',
propsHttp: { default: '',
res: 'data',
url: 'link',
},
}, },
{ {
label: '身份证正面照片', label: '身份证正面照片',
@ -305,13 +350,10 @@ export default {
type: 'upload', type: 'upload',
dataType: 'string', dataType: 'string',
listType: 'picture-img', listType: 'picture-img',
hide: true,
multiple: false, multiple: false,
loading: false,
action: '/blade-resource/oss/endpoint/put-file', action: '/blade-resource/oss/endpoint/put-file',
propsHttp: { default: '',
res: 'data',
url: 'link',
},
}, },
{ {
label: '身份证背面照片', label: '身份证背面照片',
@ -319,13 +361,10 @@ export default {
type: 'upload', type: 'upload',
dataType: 'string', dataType: 'string',
listType: 'picture-img', listType: 'picture-img',
hide: true,
multiple: false, multiple: false,
loading: false,
action: '/blade-resource/oss/endpoint/put-file', action: '/blade-resource/oss/endpoint/put-file',
propsHttp: { default: '',
res: 'data',
url: 'link',
},
}, },
{ {
label: '驾驶证照片', label: '驾驶证照片',
@ -333,13 +372,10 @@ export default {
type: 'upload', type: 'upload',
dataType: 'string', dataType: 'string',
listType: 'picture-img', listType: 'picture-img',
hide: true,
multiple: false, multiple: false,
loading: false,
action: '/blade-resource/oss/endpoint/put-file', action: '/blade-resource/oss/endpoint/put-file',
propsHttp: { default: '',
res: 'data',
url: 'link',
},
}, },
{ {
label: '驾驶证背面照片', label: '驾驶证背面照片',
@ -347,13 +383,24 @@ export default {
type: 'upload', type: 'upload',
dataType: 'string', dataType: 'string',
listType: 'picture-img', listType: 'picture-img',
hide: true,
multiple: false, multiple: false,
loading: false,
action: '/blade-resource/oss/endpoint/put-file', action: '/blade-resource/oss/endpoint/put-file',
propsHttp: { default: '',
res: 'data', },
url: 'link', ],
}, fileOption: [
{
label: '合同',
prop: 'contract',
type: 'upload',
dataType: 'string',
listType: 'picture-img',
drag: true,
loading: false,
multiple: false,
action: '/blade-resource/oss/endpoint/put-file',
default: '',
}, },
], ],
rules: {}, rules: {},

1
src/views/supervise/management.vue

@ -287,6 +287,7 @@ import functions from '@/utils/functions.js';
import { getToken } from '@/utils/auth'; import { getToken } from '@/utils/auth';
import { downloadXls } from '@/utils/util'; import { downloadXls } from '@/utils/util';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { compressImageBlob } from '@/components/IMGcompressor/imgcompressor.js';
import { import {
$_Getclassify, $_Getclassify,
$_newlyadded, $_newlyadded,

Loading…
Cancel
Save