v4.0细节优化
parent
e4fbf743a2
commit
0d03d7a79a
|
|
@ -8,7 +8,7 @@
|
|||
<image :src="item.logo" mode="widthFix" class="logo circle br"></image>
|
||||
<view class="base-right flex-1 flex-width">
|
||||
<view class="title fw-b text-size single-text">
|
||||
<text v-if="(item.alias || null) != null" class="va-m title-icon border-radius-xs br-main cr-main text-size-xs padding-horizontal-xs margin-right-xs">{{ item.alias }}</text>
|
||||
<text v-if="(item.alias || null) != null" class="va-m title-icon border-radius-sm br-main cr-main text-size-xs padding-horizontal-xs margin-right-xs">{{ item.alias }}</text>
|
||||
<text class="va-m">{{ item.name }}</text>
|
||||
</view>
|
||||
<view class="margin-top-sm padding-top-xs text-size-xs cr-grey">
|
||||
|
|
|
|||
|
|
@ -49,14 +49,21 @@
|
|||
},
|
||||
"quickapp" : {},
|
||||
"mp-weixin" : {
|
||||
"requiredPrivateInfos" : [ "chooseLocation", "getLocation", "chooseAddress", "onLocationChange", "startLocationUpdate", "startLocationUpdateBackground" ],
|
||||
"requiredPrivateInfos" : [
|
||||
"chooseLocation",
|
||||
"getLocation",
|
||||
"chooseAddress",
|
||||
"onLocationChange",
|
||||
"startLocationUpdate",
|
||||
"startLocationUpdateBackground"
|
||||
],
|
||||
"appid" : "wxda7779770f53e901",
|
||||
"setting" : {
|
||||
"urlCheck" : false,
|
||||
"es6" : true,
|
||||
"minified" : true,
|
||||
"ignoreDevUnusedFiles": false,
|
||||
"ignoreUploadUnusedFiles": false
|
||||
"ignoreDevUnusedFiles" : false,
|
||||
"ignoreUploadUnusedFiles" : false
|
||||
},
|
||||
"usingComponents" : true,
|
||||
"permission" : {
|
||||
|
|
@ -64,7 +71,7 @@
|
|||
"desc" : "你的位置将用于小程序中相应业务位置服务使用"
|
||||
}
|
||||
},
|
||||
"__usePrivacyCheck__": true,
|
||||
"__usePrivacyCheck__" : true,
|
||||
"plugins" : {
|
||||
// 直播(需要到小程序后台设置->第三方设置->插件管理里面添加【小程序直播组件】插件,教程 https://mp.weixin.qq.com/wxopen/pluginbasicprofile?action=intro&appid=wx2b03c6e691cd7370)
|
||||
// "live-player-plugin" : {
|
||||
|
|
@ -72,9 +79,9 @@
|
|||
// "provider" : "wx2b03c6e691cd7370"
|
||||
// },
|
||||
// 腾讯地图路线规划插件(需要到小程序后台设置->第三方设置->插件管理里面添加【腾讯位置服务路线规划】插件,教程 https://mp.weixin.qq.com/wxopen/plugindevdoc?appid=wx50b5593e81dd937a)
|
||||
// "routePlan": {
|
||||
// "version": "1.0.19",
|
||||
// "provider": "wx50b5593e81dd937a"
|
||||
// "routePlan" : {
|
||||
// "version" : "1.0.19",
|
||||
// "provider" : "wx50b5593e81dd937a"
|
||||
// }
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -40,7 +40,6 @@ page {
|
|||
width: 68rpx;
|
||||
height: 28rpx;
|
||||
line-height: 28rpx;
|
||||
border-radius: 4rpx;
|
||||
border: 2rpx solid #52C41A;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@
|
|||
</view>
|
||||
</view>
|
||||
<view :class="'title fw-b text-size single-text ' + ((info.buy_use_type_list || null) != null && info.buy_use_type_list.length > 0 ? 'title-length-limit' : '')">
|
||||
<text v-if="(info.alias || null) != null" class="va-m title-icon round br-main cr-main text-size-xs padding-left-sm padding-right-sm margin-right-xs">{{ info.alias }}</text>
|
||||
<text v-if="(info.alias || null) != null" class="va-m title-icon border-radius-sm br-main cr-main text-size-xs padding-left-sm padding-right-sm margin-right-xs">{{ info.alias }}</text>
|
||||
<text class="va-m">{{ info.name }}</text>
|
||||
</view>
|
||||
<view class="margin-top-xs text-size-xs cr-grey">
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
{{ info.province_name }}{{ info.city_name }}{{ info.county_name }}{{ info.address }}
|
||||
</view>
|
||||
<!-- #ifndef MP-KUAISHOU -->
|
||||
<view v-if="info.lat != 0 && info.lng != 0" class="dis-inline-block tc cp text-size-xss cr-green navigation margin-left-xs" @tap="address_map_event"> 导航 </view>
|
||||
<view v-if="info.lat != 0 && info.lng != 0" class="dis-inline-block tc cp border-radius-sm text-size-xss cr-green navigation margin-left-xs" @tap="address_map_event"> 导航 </view>
|
||||
<!-- #endif -->
|
||||
</view>
|
||||
<!-- 右侧操作 -->
|
||||
|
|
|
|||
Loading…
Reference in New Issue