jufubao-base 1.0.305-beta1 → 1.0.305-beta51
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
|
@@ -91,13 +91,13 @@
|
|
|
91
91
|
* @event {Function} onDone 编辑或者创建覆盖物完成事件 参数:overlays(覆盖物对象), overlaysSource(覆盖物数据)
|
|
92
92
|
*/
|
|
93
93
|
|
|
94
|
-
import BaiduMap from '
|
|
95
|
-
import BmMarker from '
|
|
96
|
-
import BmCircle from '
|
|
97
|
-
import BmPolygon from '
|
|
98
|
-
import BmGeolocation from '
|
|
99
|
-
import BmBoundary from '
|
|
100
|
-
import BmNavigation from '
|
|
94
|
+
import BaiduMap from 'vue-baidu-map/components/map/Map.vue';
|
|
95
|
+
import BmMarker from 'vue-baidu-map/components/overlays/Marker';
|
|
96
|
+
import BmCircle from 'vue-baidu-map/components/overlays/Circle';
|
|
97
|
+
import BmPolygon from 'vue-baidu-map/components/overlays/Polygon';
|
|
98
|
+
import BmGeolocation from 'vue-baidu-map/components/controls/Geolocation';
|
|
99
|
+
import BmBoundary from 'vue-baidu-map/components/others/Boundary';
|
|
100
|
+
import BmNavigation from 'vue-baidu-map/components/controls/Navigation';
|
|
101
101
|
|
|
102
102
|
export default {
|
|
103
103
|
name: "XdBaiduOverlay",
|
|
@@ -59,12 +59,12 @@
|
|
|
59
59
|
* @event {Function} onSelect 选择地址详情对象(address))
|
|
60
60
|
*/
|
|
61
61
|
|
|
62
|
-
import BaiduMap from "
|
|
63
|
-
import BmMarker from "
|
|
62
|
+
import BaiduMap from "vue-baidu-map/components/map/Map.vue";
|
|
63
|
+
import BmMarker from "vue-baidu-map/components/overlays/Marker";
|
|
64
64
|
import XdButton from "@/components/XdButton/XdButton";
|
|
65
|
-
import BmNavigation from "
|
|
66
|
-
import BmGeolocation from "
|
|
67
|
-
import BmLocalSearch from "
|
|
65
|
+
import BmNavigation from "vue-baidu-map/components/controls/Navigation";
|
|
66
|
+
import BmGeolocation from "vue-baidu-map/components/controls/Geolocation";
|
|
67
|
+
import BmLocalSearch from "vue-baidu-map/components/search/LocalSearch";
|
|
68
68
|
|
|
69
69
|
export default {
|
|
70
70
|
name: "XdBaiduSearch",
|
|
@@ -784,11 +784,9 @@
|
|
|
784
784
|
<view class="jfb-base-order-detail__body-line"></view>
|
|
785
785
|
<view class="jfb-base-order-detail__body-booking-list">
|
|
786
786
|
<view v-for="(item,index) in info.contacts_v2['data']" :key="index" class="jfb-base-order-detail__body-booking-list-item">
|
|
787
|
-
<view :style="{color:mainColor,background:bgColor}" class="jfb-base-order-detail__body-booking-list-item-num">{{
|
|
787
|
+
<view :style="{color:mainColor,background:bgColor}" class="jfb-base-order-detail__body-booking-list-item-num">{{item.sub_title}}</view>
|
|
788
788
|
<view class="jfb-base-order-detail__body-booking-list-item-info">
|
|
789
|
-
<view class="jfb-base-order-detail__body-booking-list-item-info-
|
|
790
|
-
<view v-if="item.id_card" class="jfb-base-order-detail__body-booking-list-item-info-item">身份证:{{item.id_card}}</view>
|
|
791
|
-
<view v-if="item.phone" class="jfb-base-order-detail__body-booking-list-item-info-item">手机号:{{item.phone}}</view>
|
|
789
|
+
<view class="jfb-base-order-detail__body-booking-list-item-info-item" v-for="(ls,index) in item['contact']" :key="index">{{ls.label}}:{{ls.value}}</view>
|
|
792
790
|
</view>
|
|
793
791
|
</view>
|
|
794
792
|
</view>
|
|
@@ -53,12 +53,12 @@
|
|
|
53
53
|
* @event {Function} onSelect 选择地址详情对象(address))
|
|
54
54
|
*/
|
|
55
55
|
|
|
56
|
-
import BaiduMap from '
|
|
57
|
-
import BmMarker from '
|
|
56
|
+
import BaiduMap from 'vue-baidu-map/components/map/Map.vue';
|
|
57
|
+
import BmMarker from 'vue-baidu-map/components/overlays/Marker';
|
|
58
58
|
import XdButton from "@/components/XdButton/XdButton";
|
|
59
|
-
import BmNavigation from '
|
|
60
|
-
import BmGeolocation from '
|
|
61
|
-
import BmLocalSearch from '
|
|
59
|
+
import BmNavigation from 'vue-baidu-map/components/controls/Navigation';
|
|
60
|
+
import BmGeolocation from 'vue-baidu-map/components/controls/Geolocation';
|
|
61
|
+
import BmLocalSearch from 'vue-baidu-map/components/search/LocalSearch';
|
|
62
62
|
|
|
63
63
|
export default {
|
|
64
64
|
name: "XdBaiduSearch",
|