技师列表 标签隐藏

This commit is contained in:
Mr.jiang 2024-08-15 14:20:49 +08:00
parent 66129df1ab
commit bc98fbc174
4 changed files with 21 additions and 26 deletions

View File

@ -27,10 +27,7 @@
<view class="flex">
<span class="text-bold text-30 margin-right-xs">{{item.artificerName}}</span>
<image class="touxiang-frame" style="width: 100rpx;height: 38rpx;" :src="item.technicianType=='3'?'../../static/vip/grade1.gif':item.technicianType=='4'?'../../static/vip/grade2.gif':'../../static/vip/grade3.gif'"></image>
<span class="label-word">{{item.artificerClassifyList[0].classifyName}}</span>
</view>
<view class="text-bold text-30 margin-right-xs" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">
<!-- {{ item.artificerClassifyList[0].classifyName }} -->
<!-- <span class="label-word">{{item.artificerClassifyList[0].classifyName}}</span> -->
</view>
</view>

View File

@ -45,10 +45,8 @@
<image class="headset-img" :src="order.technicianType=='3'?'../../static/vip/grade1.gif':order.technicianType=='4'?'../../static/vip/grade2.gif':'../../static/vip/grade3.gif'" mode=""></image>
<span class="headset-text2">{{order.technicianTypeName}}</span>
</view>
<view class="headset-line">
<span class="label-word">{{order.artificerClassifyList[0].classifyName}}</span>
</view>
</view>
<view class="jian-view-right">
<view class="oder-mian-qing" @click="shangxian" v-if="order.status == 2">请TA上线</view>
<view class="keyuyue">
@ -64,6 +62,9 @@
</view>-->
</view>
</view>
<view class="headset-line" style="margin-top: 5px;">
<span class="label-word" v-for="(item,index) in artificerClassifyList" :key="index">{{item.classifyName}}</span>
</view>
<view class="oder-mian">
<view class="oder-mian-left">
<span>ID:{{order.invitationCode}}</span>
@ -333,7 +334,8 @@
money:'',
filePath:'',
contentVideo:'',
videoId:''
videoId:'',
artificerClassifyList:[]
}
},
onLoad(option) {
@ -558,7 +560,9 @@
if (res.code == 0) {
this.order = res.data
this.status = res.data.status
this.tripWay = res.data.tripWay
this.tripWay = res.data.tripWay;
this.artificerClassifyList=res.data.artificerClassifyList
console.log("artificerClassifyList",this.artificerClassifyList)
if (this.order.lifePhoto) {
this.order.lifePhoto = this.order.lifePhoto.split(',')
}
@ -773,9 +777,9 @@
z-index: 99;
}
.headset-line{
display: flex;
position: relative;
flex-wrap: wrap;
}
.headset-img{
width: 100rpx;
@ -1519,5 +1523,6 @@
border: 1px solid #9b7a6e;
font-size: 22rpx;
margin-left: 10rpx;
margin-top: 5px;
}
</style>

View File

@ -36,7 +36,7 @@
<view class="list-right-top-view">
<view class="flex">
<span class="list-right-top-name">{{ item.artificerName }}</span>
<span class="label-word">{{ item.artificerClassifyList[0].classifyName }}</span>
<!-- <span class="label-word">{{ item.artificerClassifyList[0].classifyName }}</span> -->
</view>
<view class="keyuyue keyuyue-lan" v-if="item.status == 1">
<view class="flex">
@ -127,9 +127,9 @@
<view class="list-right-top-name">
{{ getOrderByCurrentMarkerIndex().artificerName }}
</view>
<view class="list-right-top-name" v-if="getOrderByCurrentMarkerIndex().artificerClassifyList">
<!-- <view class="list-right-top-name" v-if="getOrderByCurrentMarkerIndex().artificerClassifyList">
{{ getOrderByCurrentMarkerIndex().artificerClassifyList[0].classifyName }}
</view>
</view> -->
<!-- <view class="timea-fu flex" style="margin-right: 45px;">
<view>
{{getOrderByCurrentMarkerIndex().state == 1?"可服务":getOrderByCurrentMarkerIndex().state == 2?"今日可约":"休息中"}}
@ -340,6 +340,7 @@ import permision from "@/components/permission.js";
if(e){
this.artificerName=e.searchValue
}
that.getlist()
uni.getLocation({
type: 'gcj02',
geocode: true, //true

View File

@ -22,10 +22,12 @@
<view class="flex align-center" style="justify-content: start;">
<view class="flex align-center list-right-top">
<view class="list-right-top-view">
<view class="flex">
<span class="list-right-top-name">{{ item.artificerName }}</span>
<span class="label-word">{{ item.artificerClassifyList[0].classifyName }}</span>
<view class="list-right-top-name">
{{ item.artificerName }}
</view>
<!-- <view class="list-right-top-name">
{{ item.artificerClassifyList[0].classifyName }}
</view> -->
<view class="keyuyue keyuyue-lan" v-if="item.status == 1">
<view class="flex">
<view class="timea-fu">可服务</view>
@ -1025,14 +1027,4 @@
color: #666;
margin-right: 10rpx;
}
.label-word{
background: #f9f1e7;
color: #9b7a6e;
border-radius: 30rpx;
padding:0rpx 14rpx;
line-height:40rpx;
border: 1px solid #9b7a6e;
font-size: 22rpx;
margin-left: 10rpx;
}
</style>