商品页面添加快捷导航
parent
8fa58c7010
commit
de639c808c
|
@ -5,10 +5,14 @@
|
||||||
// 开发环境
|
// 开发环境
|
||||||
const dev = {
|
const dev = {
|
||||||
common: "https://common-api.pickmall.cn",
|
common: "https://common-api.pickmall.cn",
|
||||||
buyer: "https://buyer-api.pickmall.cn",
|
buyer: "https://buyer-api.pickmall.cn",
|
||||||
|
// common: 'http://192.168.0.109:8890',
|
||||||
|
// buyer: 'http://192.168.0.109:8888',
|
||||||
};
|
};
|
||||||
// 生产环境
|
// 生产环境
|
||||||
const prod = {
|
const prod = {
|
||||||
|
// common: 'http://192.168.0.109:8890',
|
||||||
|
// buyer: 'http://192.168.0.109:8888',
|
||||||
common: "https://common-api.pickmall.cn",
|
common: "https://common-api.pickmall.cn",
|
||||||
buyer: "https://buyer-api.pickmall.cn",
|
buyer: "https://buyer-api.pickmall.cn",
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -7,13 +7,17 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="name-star star-con">
|
<view class="name-star star-con">
|
||||||
<text class="name">{{ storeDetail.storeName }}</text>
|
<text class="name">{{ storeDetail.storeName }}</text>
|
||||||
<view>
|
<!-- <view>
|
||||||
<text :class="{ star: storeDetail.store_service_credit > 0 }"></text>
|
<text :class="{ star: storeDetail.store_service_credit > 0 }"></text>
|
||||||
<text :class="{ star: storeDetail.store_service_credit > 1 }"></text>
|
<text :class="{ star: storeDetail.store_service_credit > 1 }"></text>
|
||||||
<text :class="{ star: storeDetail.store_service_credit > 2 }"></text>
|
<text :class="{ star: storeDetail.store_service_credit > 2 }"></text>
|
||||||
<text :class="{ star: storeDetail.store_service_credit > 3 }"></text>
|
<text :class="{ star: storeDetail.store_service_credit > 3 }"></text>
|
||||||
<text :class="{ star: storeDetail.store_service_credit > 4 }"></text>
|
<text :class="{ star: storeDetail.store_service_credit > 4 }"></text>
|
||||||
</view>
|
</view> -->
|
||||||
|
<view class="desc">
|
||||||
|
<text>{{storeDetail.goodsNum || 0}}商品</text>
|
||||||
|
<text>{{storeDetail.collectionNum || 0}}关注</text>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="to-store-btn" @click="tostorePage(goodsDetail)">
|
<view class="to-store-btn" @click="tostorePage(goodsDetail)">
|
||||||
<view>进店逛逛</view>
|
<view>进店逛逛</view>
|
||||||
|
@ -138,8 +142,17 @@ export default {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
}
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
.desc {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #999;
|
||||||
|
margin-left: 10px;
|
||||||
|
text{
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.to-store-btn {
|
.to-store-btn {
|
||||||
|
|
|
@ -130,12 +130,22 @@ page{
|
||||||
display: flex;
|
display: flex;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: #fff !important;
|
background: #fff !important;
|
||||||
> div {
|
> div:nth-child(1) {
|
||||||
flex: 1;
|
width: 50rpx;
|
||||||
}
|
|
||||||
> .headerList {
|
|
||||||
flex: 8;
|
|
||||||
}
|
}
|
||||||
|
> div:nth-child(2) {
|
||||||
|
flex: 1;
|
||||||
|
.headerList{
|
||||||
|
display: flex;
|
||||||
|
div{
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
> div:nth-child(3) {
|
||||||
|
width: 100rpx;
|
||||||
|
}
|
||||||
|
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -366,4 +376,20 @@ page {
|
||||||
.status_bar{
|
.status_bar{
|
||||||
background: #fff;
|
background: #fff;
|
||||||
height: var(--status-bar-height);
|
height: var(--status-bar-height);
|
||||||
|
}
|
||||||
|
// 快捷导航
|
||||||
|
|
||||||
|
.fast-icon{
|
||||||
|
background-color: #999;
|
||||||
|
border-radius: 50rpx;
|
||||||
|
font-size: 40rpx;
|
||||||
|
padding: 4rpx;
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
.ml-20{
|
||||||
|
margin-left: 20rpx;
|
||||||
|
}
|
||||||
|
.fast-icon-dark {
|
||||||
|
color: #999;
|
||||||
|
background-color: #fff;
|
||||||
}
|
}
|
Loading…
Reference in New Issue