This commit is contained in:
jia 2023-09-02 21:39:26 +08:00
commit f9c1183c6c
16 changed files with 1327 additions and 1216 deletions

View File

@ -217,6 +217,15 @@
"navigationStyle": "custom" "navigationStyle": "custom"
} }
}, {
"path": "supply_chain/maps",
"style": {
"enablePullDownRefresh": true,
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#e93323",
"navigationStyle": "custom"
}
}, { }, {
"path": "supply_chain/merchant", "path": "supply_chain/merchant",
"style": { "style": {

View File

@ -0,0 +1,22 @@
<template>
<view class="">
<map :class="mapClass" id="map" :enable-zoom="true" :scale="19" :latitude="28.908447" :enable-scroll="true"
:longitude="105.439304" style="width: 100vw;height: 100vh;">
<!-- <cover-image class="map_btn" @tap="test" src="../../static/img/logistics/DH.png">
</cover-image> -->
</map>
</view>
</template>
<script>
export default {
data() {
return {
}
}
}
</script>
<style>
</style>

View File

@ -8,14 +8,14 @@
<view class="back" @click='backjJump()'> <view class="back" @click='backjJump()'>
<view class="iconfont icon-xiangzuo" style="color: #333333;"></view> <view class="iconfont icon-xiangzuo" style="color: #333333;"></view>
</view> </view>
<view class=""> <view style="font-size: 40rpx;font-weight: 700;transform: skewX(-10deg);">
{{storeList[0].mer_info}} {{titName}}
</view> </view>
<view style="position: relative;"> <view style="position: relative;">
<!-- <text class='iconfont icon-sousuo'></text> <!-- <text class='iconfont icon-sousuo'></text>
<input placeholder='搜索店铺名称' placeholder-class='placeholder' confirm-type='search' name="search" <input placeholder='搜索店铺名称' placeholder-class='placeholder' confirm-type='search' name="search"
:value='sotreParam.keyword' @confirm="searchSubmit"></input> --> :value='sotreParam.keyword' @confirm="searchSubmit"></input> -->
<u-search borderColor="#FF6D20" bgColor="white" :showAction="false" placeholder="搜索店铺名称或区域" <u-search borderColor="#FF6D20" bgColor="white" :showAction="false" placeholder="搜索店铺名称"
v-model="sotreParam.keyword" class="serch_cls"></u-search> v-model="sotreParam.keyword" class="serch_cls"></u-search>
<u--image @tap="searchSubmit" class="img_cls" style="position: absolute; top: 3px;right: 3px;" <u--image @tap="searchSubmit" class="img_cls" style="position: absolute; top: 3px;right: 3px;"
:showLoading="true" src="/static/images/GXSC/SS.png" width="115.65rpx" :showLoading="true" src="/static/images/GXSC/SS.png" width="115.65rpx"
@ -30,7 +30,7 @@
<text>热搜sasas商品</text> --> <text>热搜sasas商品</text> -->
</view> </view>
<view class="menu_cls"> <!-- <view class="menu_cls">
<u-scroll-list> <u-scroll-list>
<view class="menu_li" @click="navGo(item.merchant_category_id)" v-for="item,index in menuList" <view class="menu_li" @click="navGo(item.merchant_category_id)" v-for="item,index in menuList"
:key="index"> :key="index">
@ -39,8 +39,8 @@
<text style="display: block; width: 15vw;">{{item.category_name}}</text> <text style="display: block; width: 15vw;">{{item.category_name}}</text>
</view> </view>
</u-scroll-list> </u-scroll-list>
</view> </view> -->
</u-scroll-list>
<view class="goods_list"> <view class="goods_list">
<view class="goods_card" @click="goStore(item.mer_id)" v-for="(item,index) in storeList" <view class="goods_card" @click="goStore(item.mer_id)" v-for="(item,index) in storeList"
:key="index"> :key="index">
@ -293,6 +293,7 @@
}, },
data() { data() {
return { return {
titName: "",
imgList: [ imgList: [
"/static/images/GXSC/BBY.png", "/static/images/GXSC/BBY.png",
"/static/images/GXSC/JYPX.png", "/static/images/GXSC/JYPX.png",
@ -385,6 +386,7 @@
this.sotreParam.type_id = options.type_id && options.type_id.split(',').toString() || '' this.sotreParam.type_id = options.type_id && options.type_id.split(',').toString() || ''
this.sotreParam.category_id = options.merchant_category_id || '' this.sotreParam.category_id = options.merchant_category_id || ''
this.storeList = []; this.storeList = [];
if (this.mer_location == 1) { if (this.mer_location == 1) {
this.selfLocation() this.selfLocation()
} }
@ -602,6 +604,7 @@
this.storeList = this.storeList.concat(res.data.list) this.storeList = this.storeList.concat(res.data.list)
this.loading = false this.loading = false
this.loadingIcon = false this.loadingIcon = false
this.titName = this.storeList[0].mer_info
}) })
}, },
// //
@ -721,14 +724,15 @@
.com_name { .com_name {
font-size: 32rpx; font-size: 32rpx;
// background-color: red; // background-color: red;
max-width: 40vw;
white-space: nowrap; white-space: nowrap;
/* 防止文字换行 */ /* 防止文字换行 */
overflow: hidden; overflow: hidden;
/* 超出部分隐藏 */ /* 超出部分隐藏 */
text-overflow: ellipsis; text-overflow: ellipsis;
max-width: 45vw;
/* 使用省略号表示溢出的内容 */ /* 使用省略号表示溢出的内容 */
width: 200px;
/* 可根据实际情况调整容器宽度 */ /* 可根据实际情况调整容器宽度 */
} }
@ -741,8 +745,9 @@
// padding: 0 20rpx 0; // padding: 0 20rpx 0;
.top { .top {
padding-top: 20rpx; // padding-top: var(--status-bar-height);
background-color: white; padding-top: 80rpx;
background-color: #F0F2F5;
position: fixed; position: fixed;
z-index: 999; z-index: 999;
width: 100%; width: 100%;

View File

@ -315,6 +315,13 @@
this.isFshow = true this.isFshow = true
} else if (e.scrollTop == 0) {
this.ishshow = false
this.isFshow = false
} else {
this.ishshow = false
this.isFshow = false
} }
}, },
// #endif // #endif

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 36 KiB

BIN
static/images/GXSC/MSGY.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
static/images/GXSC/NMJD.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

BIN
static/images/GXSC/NYSC.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
static/images/GXSC/SCFW.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
static/images/GXSC/SHFW.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
static/images/GXSC/WLSY.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
static/images/GXSC/WYLY.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
static/images/GXSC/YLBJ.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
static/images/GXSC/ZXJZ.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB