|
|
@@ -62,6 +62,8 @@ Page({
|
|
|
],
|
|
|
'来源': [{ name: 'dataCode', title: mixins.$t('sourceCode') },
|
|
|
],
|
|
|
+ '盈亏原因': [{ name: 'dataCode', title: mixins.$t('profitLossCode') },
|
|
|
+ ],
|
|
|
},
|
|
|
popContent:
|
|
|
[
|
|
|
@@ -189,7 +191,17 @@ Page({
|
|
|
]
|
|
|
|
|
|
}
|
|
|
-
|
|
|
+ if (dictCode == mixins.$t('profitLossSys')) {
|
|
|
+ //设置新建编辑字段 客户来源
|
|
|
+ popContent =
|
|
|
+ [
|
|
|
+ { code: 'dataCode', type: 'str', title: mixins.$t('profitLossCode'), required: false, readonly: true, },
|
|
|
+ { code: 'dataValue', type: 'str', title: mixins.$t('profitLossName'), required: true },
|
|
|
+ ]
|
|
|
+ this.setData({
|
|
|
+ flgDefault: null
|
|
|
+ })
|
|
|
+ }
|
|
|
popContent.push({ code: 'remarks', type: 'str', title: mixins.$t('remarks'), required: false })
|
|
|
}
|
|
|
|