|
@@ -62,6 +62,7 @@
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
<!-- 交货方式 -->
|
|
<!-- 交货方式 -->
|
|
<ws-form-item label="结算方式" span="1" prop="settlementMethod">
|
|
<ws-form-item label="结算方式" span="1" prop="settlementMethod">
|
|
|
|
+
|
|
<ws-input
|
|
<ws-input
|
|
v-model="deptBudgetList.settlementMethod"
|
|
v-model="deptBudgetList.settlementMethod"
|
|
maxlength="100"
|
|
maxlength="100"
|
|
@@ -80,7 +81,7 @@
|
|
span="1"
|
|
span="1"
|
|
prop="sourceGoods"
|
|
prop="sourceGoods"
|
|
>
|
|
>
|
|
- {{ deptBudgetList.deliverType }}
|
|
|
|
|
|
+ {{ deptBudgetList.deliverType1 }}
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
<!-- 买方电话 -->
|
|
<!-- 买方电话 -->
|
|
<ws-form-item label="买方电话" span="1" prop="buyerPhone">
|
|
<ws-form-item label="买方电话" span="1" prop="buyerPhone">
|
|
@@ -602,6 +603,7 @@ export default {
|
|
examineList({ id: this.$route.query.id })
|
|
examineList({ id: this.$route.query.id })
|
|
.toPromise()
|
|
.toPromise()
|
|
.then((response) => {
|
|
.then((response) => {
|
|
|
|
+
|
|
if (response.weight) {
|
|
if (response.weight) {
|
|
response.weight = String(response.weight)
|
|
response.weight = String(response.weight)
|
|
}
|
|
}
|
|
@@ -632,12 +634,18 @@ export default {
|
|
].code
|
|
].code
|
|
this.selectedOptions1 = tmp1
|
|
this.selectedOptions1 = tmp1
|
|
this.deptBudgetList = response
|
|
this.deptBudgetList = response
|
|
|
|
+ if(this.deptBudgetList.deliverType == 1){
|
|
|
|
+ this.deptBudgetList.deliverType1 = "我方自提"
|
|
|
|
+ }else if(this.deptBudgetList.deliverType == 2){
|
|
|
|
+ this.deptBudgetList.deliverType1 = "对方送货"
|
|
|
|
+ }
|
|
})
|
|
})
|
|
// 包装方式
|
|
// 包装方式
|
|
packList({ constId: 'CON1' })
|
|
packList({ constId: 'CON1' })
|
|
.toPromise()
|
|
.toPromise()
|
|
.then((response) => {
|
|
.then((response) => {
|
|
this.packtypeList = response
|
|
this.packtypeList = response
|
|
|
|
+
|
|
})
|
|
})
|
|
// 验收方式
|
|
// 验收方式
|
|
this.getUnitList()
|
|
this.getUnitList()
|
|
@@ -694,6 +702,7 @@ export default {
|
|
})
|
|
})
|
|
.toPromise()
|
|
.toPromise()
|
|
.then((response) => {
|
|
.then((response) => {
|
|
|
|
+
|
|
this.unitList = response
|
|
this.unitList = response
|
|
let currItem
|
|
let currItem
|
|
this.unitList.forEach((item, index, arr) => {
|
|
this.unitList.forEach((item, index, arr) => {
|
|
@@ -706,6 +715,7 @@ export default {
|
|
if (currItem) {
|
|
if (currItem) {
|
|
this.selectContract(currItem.constValue)
|
|
this.selectContract(currItem.constValue)
|
|
}
|
|
}
|
|
|
|
+
|
|
})
|
|
})
|
|
},
|
|
},
|
|
// 关闭 dialog时 处理文件url 初始化upload组件
|
|
// 关闭 dialog时 处理文件url 初始化upload组件
|