jufubao-mall 2.0.32 → 2.0.33
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.
package/package.json
CHANGED
|
@@ -484,7 +484,7 @@
|
|
|
484
484
|
init(container) {
|
|
485
485
|
let isShowCashier = getContainerPropsValue(container, 'content.isShowCashier', '');
|
|
486
486
|
let isShowExchange = getContainerPropsValue(container, 'content.isShowExchange', '');
|
|
487
|
-
let oldShowCashier = isShowCashier || isShowExchange;
|
|
487
|
+
let oldShowCashier = (isShowCashier || isShowExchange) ? "N" : "";
|
|
488
488
|
|
|
489
489
|
this.showExchange = oldShowCashier || gCPVal(container, 'showExchange', 'Y');
|
|
490
490
|
let exchangeOldName = gCPVal(container, 'name', '');
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
export default function (data, gValue,gColor,oldData){
|
|
12
12
|
let isShowCashier = data.isShowCashier || "";
|
|
13
13
|
let isShowExchange = data.isShowExchange || "";
|
|
14
|
-
let oldShowCashier = isShowCashier || isShowExchange;
|
|
14
|
+
let oldShowCashier = (isShowCashier || isShowExchange) ? "N" : "Y";
|
|
15
15
|
let showOtherEnter = "N";
|
|
16
16
|
if(gValue.isAdd === true && gValue.isFirst) {
|
|
17
17
|
showOtherEnter = "Y";
|