jufubao-admin-library 1.1.78 → 1.1.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -952,6 +952,24 @@ export default {
|
|
|
952
952
|
{ required: true, message: '请输入数值', trigger: 'blur' },
|
|
953
953
|
],
|
|
954
954
|
},
|
|
955
|
+
{
|
|
956
|
+
label: '小数点保留位数:',
|
|
957
|
+
ele: 'xd-select-list',
|
|
958
|
+
valueKey: 'price_bit',
|
|
959
|
+
value: params.price_bit || 2,
|
|
960
|
+
placeholder: '请选择小数点保留位数',
|
|
961
|
+
multiple: false,
|
|
962
|
+
list: [
|
|
963
|
+
{ "label": "零位", "value": -1 },
|
|
964
|
+
{ "label": "一位", "value": 1 },
|
|
965
|
+
{ "label": "两位", "value": 2 },
|
|
966
|
+
],
|
|
967
|
+
rules: [{
|
|
968
|
+
required: true,
|
|
969
|
+
message: '请选择小数点保留位数',
|
|
970
|
+
trigger: 'blur'
|
|
971
|
+
}],
|
|
972
|
+
},
|
|
955
973
|
].filter(i => i)
|
|
956
974
|
},
|
|
957
975
|
|
|
@@ -200,7 +200,7 @@ export default {
|
|
|
200
200
|
// #endif
|
|
201
201
|
]).then((res) => {
|
|
202
202
|
// #ifdef app-thirdmall
|
|
203
|
-
this.openDialogForm = res[2]["data"]["
|
|
203
|
+
this.openDialogForm = res[2]["data"]["service_fee_form"];
|
|
204
204
|
this.brandList = res[1].data.brands;
|
|
205
205
|
// #endif
|
|
206
206
|
// #ifdef partner
|
|
@@ -337,6 +337,11 @@ export default {
|
|
|
337
337
|
: this.openInfoData
|
|
338
338
|
? this.openInfoData.business_code
|
|
339
339
|
: "",
|
|
340
|
+
pay_url_data: copyValue.pay_url_data
|
|
341
|
+
? copyValue.pay_url_data
|
|
342
|
+
: this.openInfoData
|
|
343
|
+
? this.openInfoData.pay_url_data
|
|
344
|
+
: "",
|
|
340
345
|
})
|
|
341
346
|
);
|
|
342
347
|
});
|
|
@@ -1256,6 +1261,9 @@ export default {
|
|
|
1256
1261
|
trigger: ["blur", "change"],
|
|
1257
1262
|
},
|
|
1258
1263
|
];
|
|
1264
|
+
}else if(item.ele === "el-input"){
|
|
1265
|
+
let key = item.valueKey;
|
|
1266
|
+
item.value = params[key] || '';
|
|
1259
1267
|
}
|
|
1260
1268
|
});
|
|
1261
1269
|
this.listForm = listForm;
|