master
张同海 1 year ago
parent c22a4eed06
commit d22df50da1

@ -11,8 +11,8 @@
<a-form :form="form"> <a-form :form="form">
<a-row> <a-row>
<a-col :span="24"> <a-col :span="24">
<a-form-item label="车队" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback> <a-form-item label="供应商" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
<a-select placeholder="请选择车队" v-decorator="['relationId']"> <a-select placeholder="请选择供应商" v-decorator="['relationId']">
<a-select-option v-for="item in relationIdData" :key="item.id" :value="item.id"> <a-select-option v-for="item in relationIdData" :key="item.id" :value="item.id">
{{ item.name }} {{ item.name }}
</a-select-option> </a-select-option>

@ -138,6 +138,7 @@ export default {
{ code: '3', name: '加盟车辆' } { code: '3', name: '加盟车辆' }
], ],
statusData: [ statusData: [
{ code: '0', name: '录入' },
{ code: '1', name: '已绑定' }, { code: '1', name: '已绑定' },
{ code: '2', name: '待确认' }, { code: '2', name: '待确认' },
{ code: '3', name: '已驳回' }, { code: '3', name: '已驳回' },
@ -162,19 +163,19 @@ export default {
title: '司机名称', title: '司机名称',
align: 'center', align: 'center',
width: '100', width: '100',
dataIndex: 'carLicense' dataIndex: 'driverName'
}, },
{ {
title: '联系电话', title: '联系电话',
align: 'center', align: 'center',
width: '80', width: '80',
dataIndex: 'driverName' dataIndex: 'tel'
}, },
{ {
title: '状态', title: '状态',
align: 'center', align: 'center',
width: '120', width: '120',
dataIndex: 'tel' dataIndex: 'status'
} }
], ],
tstyle: { 'padding-top': '12px', 'padding-bottom': '0px', 'margin-bottom': '10px' }, tstyle: { 'padding-top': '12px', 'padding-bottom': '0px', 'margin-bottom': '10px' },

Loading…
Cancel
Save