|
|
@ -41,7 +41,7 @@ |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="16" class="colStyle"> |
|
|
|
<el-col :span="8" class="colStyle"> |
|
|
|
<div class="span-sty spanOneWidth"><span>采购原因:</span></div> |
|
|
|
<el-form-item> |
|
|
|
<el-select v-model="formobj.schedulingType" placeholder="请选择" @change="changeSchedulingType" clearable class="addinputInfo addinputOne"> |
|
|
@ -49,6 +49,10 @@ |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="8" class="colStyle"> |
|
|
|
<div class="span-sty spanOneWidth"><span>订金付款备注:</span></div> |
|
|
|
<el-form-item><el-input class="addinputw addinputOne" :disabled="formobj.currentAmount === '0' || formobj.currentAmount === ''" v-model="formobj.payRemarks" clearable placeholder=""/></el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row class="rowStyle"> |
|
|
|
<el-col :span="24" class="colStyle"> |
|
|
@ -171,6 +175,7 @@ export default { |
|
|
|
schedulingType: '', // 采购原因 |
|
|
|
schedulingTypeKey: '', |
|
|
|
remarks: '', // 备注 |
|
|
|
payRemarks: '', |
|
|
|
currentAmount: '', // 当前订金金额 |
|
|
|
salesSid: '', // 销售订单sid 可为空,只有客户订单时才有 |
|
|
|
instanceId: '', // 流程实例ID |
|
|
@ -237,7 +242,7 @@ export default { |
|
|
|
}, |
|
|
|
// 明细表删除一行数据 |
|
|
|
dataDelete(index, row) { |
|
|
|
this.formobj.busVehicleApplyDetailDtoList.splice(index, 1) |
|
|
|
this.formobj.busVehicleApplyDetailList.splice(index, 1) |
|
|
|
}, |
|
|
|
showInfo(sid, row) { |
|
|
|
this.$nextTick(() => { |
|
|
@ -259,7 +264,7 @@ export default { |
|
|
|
this.viewState = 1 |
|
|
|
if (value.length > 0) { |
|
|
|
value.forEach((e) => { |
|
|
|
this.formobj.busVehicleApplyDetailDtoList.push({ |
|
|
|
this.formobj.busVehicleApplyDetailList.push({ |
|
|
|
quantity: '', |
|
|
|
applySid: '', |
|
|
|
configSid: e.configurationItemsSid, |
|
|
|