Browse Source

完善车辆台账增加买断状态、锁定状态、库存状态等初始值

zhanglei
yunuo970428 3 years ago
parent
commit
8e41394d75
  1. 10
      anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/cheliangtaizhangAdd.vue

10
anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/cheliangtaizhangAdd.vue

@ -48,7 +48,7 @@
<el-col :span="8">
<el-form-item prop="vinNo">
<span slot="label">车架号</span>
<el-input v-model="temp.vinNo" maxlength="17" placeholder="" class="addinputw" clearable/>
<el-input v-model="temp.vinNo" maxlength="17" placeholder="车架号位数与金蝶系统一致" class="addinputw" clearable/>
</el-form-item>
</el-col>
<el-col :span="8">
@ -428,6 +428,14 @@ export default {
})
this.dialogStatus = 'add'
this.viewTitle = '【新增】车辆台账'
this.temp.lockedState = '03'
this.temp.lockedStateValue = '未锁定'
this.temp.vehicleState = '0001'
this.temp.vehicleStateValue = '库存'
this.temp.settlementStatus = '0'
this.temp.settlementStatusValue = '未买断'
this.temp.freight = 0
this.temp.isProblemVeh = '0'
this.getType()
this.getPathSid()
},

Loading…
Cancel
Save