|
@@ -40,45 +40,46 @@
|
|
|
<view class="title"
|
|
|
>{{ userInfo.nick }}
|
|
|
|
|
|
- <view
|
|
|
- v-if="userInfo.userTypes.includes(4)"
|
|
|
- class="tag"
|
|
|
- style="
|
|
|
- background: url('https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/driver.png')
|
|
|
- no-repeat;
|
|
|
- background-size: 55% 100%;
|
|
|
- "
|
|
|
- ></view>
|
|
|
+ <view v-if="userInfo.userTypes.includes(4)" class="tag">
|
|
|
+ <image
|
|
|
+ style="width: 70px; height: 25px"
|
|
|
+ src="https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/driver.png"
|
|
|
+ mode=""
|
|
|
+ />
|
|
|
+ </view>
|
|
|
+ <view v-else-if="userInfo.userTypes.includes(7)" class="tag">
|
|
|
+ <image
|
|
|
+ style="width: 70px; height: 25px"
|
|
|
+ src="https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/supplier.png"
|
|
|
+ mode=""
|
|
|
+ />
|
|
|
+ </view>
|
|
|
+ <view v-else-if="userInfo.userTypes.includes(2)" class="tag">
|
|
|
+ <image
|
|
|
+ style="width: 70px; height: 25px"
|
|
|
+ src="https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/supplier.png"
|
|
|
+ mode=""
|
|
|
+ />
|
|
|
+ </view>
|
|
|
|
|
|
- <view
|
|
|
- v-if="userInfo.userTypes.includes(2)"
|
|
|
- class="tag"
|
|
|
- style="
|
|
|
- background: url('https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/supplier.png')
|
|
|
- no-repeat;
|
|
|
- background-size: 55% 100%;
|
|
|
- "
|
|
|
- ></view>
|
|
|
-
|
|
|
- <view
|
|
|
- v-if="userInfo.userTypes.includes(5)"
|
|
|
- class="tag"
|
|
|
- style="
|
|
|
- background: url('https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/agent.png')
|
|
|
- no-repeat;
|
|
|
- background-size: 55% 100%;
|
|
|
- "
|
|
|
- ></view>
|
|
|
+ <view v-else-if="userInfo.userTypes.includes(5)" class="tag">
|
|
|
+ <image
|
|
|
+ style="width: 70px; height: 25px"
|
|
|
+ src="https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/agent.png"
|
|
|
+ mode=""
|
|
|
+ />
|
|
|
+ </view>
|
|
|
|
|
|
<view
|
|
|
- v-if="userInfo.userTypes.includes(6)"
|
|
|
+ v-else-if="userInfo.userTypes.includes(6)"
|
|
|
class="tag"
|
|
|
- style="
|
|
|
- background: url('https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/partner.png')
|
|
|
- no-repeat;
|
|
|
- background-size: 55% 100%;
|
|
|
- "
|
|
|
- ></view>
|
|
|
+ >
|
|
|
+ <image
|
|
|
+ style="width: 70px; height: 25px"
|
|
|
+ src="https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/partner.png"
|
|
|
+ mode=""
|
|
|
+ />
|
|
|
+ </view>
|
|
|
<!-- <view>
|
|
|
{{
|
|
|
userInfo.userTypes.includes(2)
|
|
@@ -179,19 +180,18 @@ export default {
|
|
|
border-radius: 20px;
|
|
|
}
|
|
|
.tag {
|
|
|
- padding: 0px 20rpx;
|
|
|
- height: 45rpx;
|
|
|
- background: linear-gradient(270deg, #f0ff00 0%, #00cf07 100%);
|
|
|
- background-size: 100% 100%;
|
|
|
- border-radius: 4rpx;
|
|
|
- display: flex;
|
|
|
- flex-direction: row;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- font-size: 24rpx;
|
|
|
- color: #ffffff;
|
|
|
- width: 100px;
|
|
|
- margin-left: 5px;
|
|
|
+ margin-left:10px
|
|
|
+ // padding: 0px 20rpx;
|
|
|
+ // height: 45rpx;
|
|
|
+ // border-radius: 4rpx;
|
|
|
+ // display: flex;
|
|
|
+ // flex-direction: row;
|
|
|
+ // justify-content: center;
|
|
|
+ // align-items: center;
|
|
|
+ // font-size: 24rpx;
|
|
|
+ // color: #ffffff;
|
|
|
+ // width: 100px;
|
|
|
+ // margin-left: 5px;
|
|
|
}
|
|
|
.main {
|
|
|
.item {
|