jufubao-mall 2.0.35-beta10 → 2.0.35-beta11
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
|
@@ -271,7 +271,7 @@
|
|
|
271
271
|
*/
|
|
272
272
|
init(container) {
|
|
273
273
|
//基础
|
|
274
|
-
this.xnamespace = gCPVal(container, "xnamespace",
|
|
274
|
+
this.xnamespace = gCPVal(container, "xnamespace", '');
|
|
275
275
|
this.serverType = gCPVal(container, 'serverType', [['SELL']]);
|
|
276
276
|
this.shopType = gCPVal(container, 'shopType', '');
|
|
277
277
|
this.shopListStyle = gCPVal(container, 'shopListStyle', 'v2');
|
|
@@ -341,7 +341,7 @@
|
|
|
341
341
|
* @param container {object} 业务组件对象自己
|
|
342
342
|
*/
|
|
343
343
|
init(container) {
|
|
344
|
-
this.xnamespace = gCPVal(container, 'xnamespace',
|
|
344
|
+
this.xnamespace = gCPVal(container, 'xnamespace', '');
|
|
345
345
|
this.serverType = gCPVal(container, 'serverType', [['SELL']]);
|
|
346
346
|
this.showOftenTab = 'N' //todo gCPVal(container, 'showOftenTab', 'N');
|
|
347
347
|
if(this.showOftenTab === 'N') this.titleList = [{label: '附近门店', value: 'nearby'}];
|