jufubao-mall 2.0.35-beta1 → 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 +1 -1
- package/src/components/JfbMallNewShopList/JfbMallNewShopList.vue +1 -1
- package/src/components/JfbMallResourceShop/XdBaiduMap.vue +3 -3
- package/src/components/JfbMallShop/XdBaiduMap.vue +3 -3
- package/src/components/JfbMallShopVip/Api.js +11 -3
- package/src/components/JfbMallShopVip/JfbMallShopVip.vue +658 -459
- package/src/components/JfbMallShopVip/Mock.js +221 -448
- package/src/components/JfbMallShopVip/XdBaiduMap.vue +336 -48
- package/src/components/JfbMallShopVip/cusAttr/advanced.js +11 -69
- package/src/components/JfbMallShopVip/cusAttr/content.js +32 -35
- package/src/components/JfbMallShopVip/cusAttr/shops.js +5 -65
- package/src/components/JfbMallShopVip/cusAttr/style.js +1 -3
- package/src/components/JfbMallShopVip/CusShops.vue +0 -591
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');
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
|
|
16
16
|
<script>
|
|
17
17
|
|
|
18
|
-
import BaiduMap from 'vue-baidu-map/components/map/Map.vue';
|
|
19
|
-
import BmMarker from 'vue-baidu-map/components/overlays/Marker';
|
|
18
|
+
import BaiduMap from 'modules/vue-baidu-map/components/map/Map.vue';
|
|
19
|
+
import BmMarker from 'modules/vue-baidu-map/components/overlays/Marker';
|
|
20
20
|
|
|
21
21
|
export default {
|
|
22
22
|
name: "XdBaiduMap",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
if(!this.ak) throw new Error('请传入百度AK值');
|
|
49
49
|
},
|
|
50
50
|
methods:{
|
|
51
|
-
|
|
51
|
+
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
</script>
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
|
|
16
16
|
<script>
|
|
17
17
|
|
|
18
|
-
import BaiduMap from 'vue-baidu-map/components/map/Map.vue';
|
|
19
|
-
import BmMarker from 'vue-baidu-map/components/overlays/Marker';
|
|
18
|
+
import BaiduMap from 'modules/vue-baidu-map/components/map/Map.vue';
|
|
19
|
+
import BmMarker from 'modules/vue-baidu-map/components/overlays/Marker';
|
|
20
20
|
|
|
21
21
|
export default {
|
|
22
22
|
name: "XdBaiduMap",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
if(!this.ak) throw new Error('请传入百度AK值');
|
|
49
49
|
},
|
|
50
50
|
methods:{
|
|
51
|
-
|
|
51
|
+
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
</script>
|
|
@@ -7,10 +7,18 @@
|
|
|
7
7
|
module.exports = [
|
|
8
8
|
{
|
|
9
9
|
mapFnName: 'getNearbyVipShopList',
|
|
10
|
-
title: '
|
|
11
|
-
path: '/mall/v1/shop/
|
|
10
|
+
title: '下线门店列表',
|
|
11
|
+
path: '/mall/v1/shop/list',
|
|
12
12
|
isRule: false,
|
|
13
|
-
params: {
|
|
13
|
+
params: {
|
|
14
|
+
brand_ids: ['品牌ID', 'String', 'true'],
|
|
15
|
+
keyword: ['搜索关键字', 'String', 'true'],
|
|
16
|
+
city_code: ['城市CODE', 'String', 'true'],
|
|
17
|
+
latitude: ['纬度', 'String', 'true'],
|
|
18
|
+
longitude: ['经度', 'String', 'true'],
|
|
19
|
+
xnamespace: ['业务线', 'String','true'],
|
|
20
|
+
consume_mode:['服务类型', 'String','true']
|
|
21
|
+
},
|
|
14
22
|
isConsole: true,
|
|
15
23
|
disabled: true,
|
|
16
24
|
},
|