|
|
@@ -61,8 +61,8 @@ Page({
|
|
|
],
|
|
|
contentSaveList: [
|
|
|
{ code: 'flag', title: mixins.$t("autoSaleOutBoundFlag"), type: 'checkbox' },
|
|
|
- { code: 'need', title: mixins.$t("saleCollection"), type: 'str' },
|
|
|
- { code: 'receivable', content: 0, type: 'number' }
|
|
|
+ // { code: 'need', title: mixins.$t("saleCollection"), type: 'str' },
|
|
|
+ { code: 'receivable', content: 0, type: 'number',title: mixins.$t("saleCollection") }
|
|
|
],
|
|
|
popContent: [
|
|
|
{ code: 'outQty', type: 'step', title: mixins.$t("count"), required: true },
|
|
|
@@ -372,7 +372,7 @@ Page({
|
|
|
|
|
|
})
|
|
|
//组件显示 需收款
|
|
|
- contentSaveList[2]['content'] = Number(formData.sumAmount)
|
|
|
+ contentSaveList[0]['content'] = Number(formData.sumAmount)
|
|
|
this.setData({
|
|
|
formData: JSON.stringify(formData),
|
|
|
contentSaveList: contentSaveList
|
|
|
@@ -569,9 +569,9 @@ Page({
|
|
|
cardList[2].saleDiscount = formData.saleDiscount
|
|
|
//详情 办理
|
|
|
if (this.data.formMode == Constants.formMode.detail) {
|
|
|
- contentSaveList[1].content = formData.sumAmount
|
|
|
+ contentSaveList[0].content = formData.sumAmount
|
|
|
} else {
|
|
|
- contentSaveList[2].content = formData.sumAmount
|
|
|
+ contentSaveList[1].content = formData.sumAmount
|
|
|
}
|
|
|
|
|
|
this.setData({
|
|
|
@@ -649,8 +649,8 @@ Page({
|
|
|
{ code: 'save', title: mixins.$t("outProcessing"), width: '120rpx', color: '#1B365D' }
|
|
|
]
|
|
|
contentSaveList = [
|
|
|
- { code: 'need', title: mixins.$t("saleCollection"), type: 'str' },
|
|
|
- { code: 'receivable', content: 0, type: 'number' }
|
|
|
+ // { code: 'need', title: mixins.$t("saleCollection"), type: 'str' },
|
|
|
+ { code: 'receivable', content: 0, type: 'number',title: mixins.$t("saleCollection") }
|
|
|
]
|
|
|
popContent = [
|
|
|
{ code: 'outQty', type: 'step', title: mixins.$t("count"), required: true, readonly: true },
|