|
|
@ -5,7 +5,7 @@ |
|
|
|
<div>{{ viewTitle }}</div> |
|
|
|
<div> |
|
|
|
<el-button type="primary" size="small" :disabled="submitdisabled" @click="saveEdit()">保存</el-button> |
|
|
|
<el-button type="primary" size="small" :disabled="submitdisabled" @click="submitVehicleApply()">确认</el-button> |
|
|
|
<el-button type="primary" size="small" :disabled="submitdisabled" @click="submitVehicleApply()">确认</el-button> |
|
|
|
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -32,11 +32,15 @@ |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-col :span="8"> |
|
|
|
<div class="span-sty spanOneWidth"><span>采购订单编号</span></div> |
|
|
|
<el-form-item><el-input v-model="formobj.purchaseOrderNo" placeholder="" clearable class="addinputw addinputwOne" style="width: 75% !important;"/></el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-col :span="8"> |
|
|
|
<div class="span-sty spanOneWidth"><span>采购系统</span></div> |
|
|
|
<el-form-item><span class="addinputInfo addinputwOne">{{ formobj.purchaseSystemName }}</span></el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="8"> |
|
|
|
<div class="span-sty spanOneWidth"><span>内部编码</span></div> |
|
|
|
<el-form-item><span class="addinputInfo addinputwOne">{{ formobj.insideCode }}</span></el-form-item> |
|
|
|
</el-col> |
|
|
@ -290,6 +294,7 @@ export default { |
|
|
|
policyTwoo: '', // 政策2 |
|
|
|
priceDate: '', |
|
|
|
purchaseOrderNo: '', |
|
|
|
purchaseSystemName: '', |
|
|
|
remarks: '', |
|
|
|
secondaryFreight: '', |
|
|
|
userSid: '', |
|
|
@ -726,8 +731,8 @@ export default { |
|
|
|
} |
|
|
|
}, |
|
|
|
changeVinNo(val) { |
|
|
|
if (val.length < 17 && val.length !== 8) { |
|
|
|
const message = '车架号的长度应为8位或17位' |
|
|
|
if (val.length < 17) { |
|
|
|
const message = '车架号的长度应为17位' |
|
|
|
this.$message({ showClose: true, type: 'error', message: message }) |
|
|
|
} |
|
|
|
}, |
|
|
|