Commit 713c49e5 authored by 罗超's avatar 罗超

1

parent 76d8f833
......@@ -161,8 +161,19 @@
<view style="font-size: 42rpx; color: #1f1f1f; font-weight: 600">
{{ detailData.CarrierName }}
</view>
<view style="margin-top: 16rpx">
<u-tag :text="ProjectType" mode="dark" :bg-color="mainColor" />
<view
style="margin-top: 16rpx; display: flex; align-items: center"
>
<u-tag
:text="ProjectType"
mode="dark"
size="mini"
:bg-color="mainColor"
/>
<view class="carriertag" v-if="detailData.FirstStoreTest === 1">
<view class="carriertagsub1">首店</view>
<view class="carriertagsub2">试验场</view>
</view>
</view>
</view>
<!-- 关注 -->
......@@ -1078,4 +1089,41 @@ export default {
margin-right: 20rpx;
margin-bottom: 20rpx;
}
.carriertag {
width: 145rpx;
height: 40rpx;
background: #fff;
border-radius: 8rpx;
display: flex;
justify-content: center;
align-items: center;
margin-left: 30rpx;
overflow: hidden;
}
.carriertagsub1 {
width: 65rpx;
height: 40rpx;
background: #1f1f1f;
border-radius: 4rpx 0rpx 0rpx 4rpx;
font-size: 22rpx;
font-family: PingFang SC;
font-weight: bold;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
}
.carriertagsub2 {
width: 81rpx;
height: 40rpx;
background: #d0aa7b;
border-radius: 0px 4rpx 4rpx 0rpx;
display: flex;
justify-content: center;
align-items: center;
font-size: 22rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
</style>
......@@ -217,6 +217,10 @@ export default {
},
list: [],
kystatus: [
{
id: -1,
name: "全部",
},
{
id: 0,
name: "即将开业",
......@@ -226,7 +230,7 @@ export default {
name: "已开业",
},
],
curStatusName: "即将开业",
curStatusName: "全部",
};
},
onShareTimeline() {
......@@ -503,6 +507,9 @@ export default {
color: #fff;
margin-right: 30rpx;
padding: 0 18rpx;
font-size: 22rpx;
font-family: PingFang SC;
font-weight: 500;
}
.curStatusName {
font-size: 22rpx;
......
......@@ -184,7 +184,7 @@ export default {
},
status: "",
CommpanyStatus: 0, //公司认证状态
FirstShopType: 1, //1:品牌,2:载体
FirstShopType: 0, //1:品牌,2:载体
};
},
onShareTimeline() {
......@@ -305,6 +305,7 @@ export default {
// });
},
auth(url) {
console.log(308, this.CommpanyStatus, this.FirstShopType);
if (this.CommpanyStatus === 1 || this.CommpanyStatus === 4) {
uni.showModal({
title: "提示",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment