|
@@ -13,7 +13,9 @@
|
|
|
<apps ref="apps" />
|
|
|
|
|
|
<view class="shop" v-if="shopDetail.storename">
|
|
|
- <view class="head">
|
|
|
+ <u-image v-if="shopDetail.cover" :src="shopDetail.cover" @click="previewImg(shopDetail.cover)" :lazy-load="true"
|
|
|
+ :width="tovw(335)" :height="tovw(134)" radius="8" />
|
|
|
+ <view class="head" :style="{ marginTop: shopDetail.cover ? tovw(10) : '' }">
|
|
|
<view class="text">
|
|
|
当前服务导购
|
|
|
</view>
|
|
@@ -91,6 +93,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import { viewImage } from "../../../utils/settleFiles"
|
|
|
import contact from "../../../components/contact"
|
|
|
import apps from "./modules/apps"
|
|
|
export default {
|
|
@@ -137,6 +140,9 @@ export default {
|
|
|
callBack()
|
|
|
}, 5000);
|
|
|
},
|
|
|
+ previewImg(url) {
|
|
|
+ viewImage(url)
|
|
|
+ },
|
|
|
changeStore(item) {
|
|
|
this.shopDetail = item;
|
|
|
this.showShopOtions = false;
|
|
@@ -146,6 +152,7 @@ export default {
|
|
|
this.getLocationLoading = true;
|
|
|
this.getLocation().then(s => {
|
|
|
console.log("获取地理位置信息", s)
|
|
|
+ //"sa storeid":3
|
|
|
this.$Http.basic({
|
|
|
"id": 20240416153202,
|
|
|
"content": {
|