jufubao-admin-library 1.1.92 → 1.1.94
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.
|
@@ -177,6 +177,9 @@ export default {
|
|
|
177
177
|
server: "thirdmall-partner",
|
|
178
178
|
fn: "brand",
|
|
179
179
|
path: "p1",
|
|
180
|
+
params:{
|
|
181
|
+
channel_code: this.$channelCode,
|
|
182
|
+
}
|
|
180
183
|
},
|
|
181
184
|
this.appConfigm(getConfigParams),
|
|
182
185
|
// #endif
|
|
@@ -408,7 +411,7 @@ export default {
|
|
|
408
411
|
label: "服务费设置:",
|
|
409
412
|
ele: "xd-input-unit",
|
|
410
413
|
valueKey: "fee_value",
|
|
411
|
-
value: params.fee_value
|
|
414
|
+
value: params.fee_value==0||params.fee_value?params.fee_value : "",
|
|
412
415
|
isNumber: true,
|
|
413
416
|
useCustomRules: false,
|
|
414
417
|
notice: "仅支持正数,按商品总额x比例值计算(遇小数自动进位)",
|
|
@@ -430,9 +433,9 @@ export default {
|
|
|
430
433
|
return;
|
|
431
434
|
}
|
|
432
435
|
if (flag) {
|
|
433
|
-
if (value
|
|
436
|
+
if (value < 0) {
|
|
434
437
|
flag = false;
|
|
435
|
-
callback("
|
|
438
|
+
callback("服务费不能小于0");
|
|
436
439
|
return;
|
|
437
440
|
}
|
|
438
441
|
}
|
|
@@ -631,4 +634,4 @@ export default {
|
|
|
631
634
|
}
|
|
632
635
|
}
|
|
633
636
|
}
|
|
634
|
-
</style>
|
|
637
|
+
</style>
|