| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <template>
- <view class="">
- <view v-for="(item,index) in workPersonList" @click="chooseServiceTeacher(item)" class="h-item-row">
- <view class="h-img">
- <image src="../../static/logo.png" mode=""></image>
- </view>
- <view class="h-item-content">
- <view class="h-title">
- <view class="name">
- <text>{{item.title}}</text>
- </view>
- <!-- <view class="btn">
- <text>包房</text>
- </view> -->
- </view>
- <view class="h-desc">
- <text>优质服务,从我做起</text>
- </view>
- <view class="h-content">
- <u-icon name="thumb-up" color="#333" size="16"></u-icon>
- <view class="h-text">
- <text>好评率:</text>
- </view>
- <view class="h-text1">
- <text>{{item.goodRate}}%</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- // import {serviceWorkPersonList} from '/src/api/goods/goods.js';
- export default {
- data() {
- return {
- reqParm:{
- auth: true,
- schedulingDate: null,
- periodId: null,
- organization: null, // 所属门店
- },
- workPersonList: []
- }
- },
- onLoad(option){
- this.reqParm.schedulingDate = option.schedulingDate;
- this.reqParm.periodId= option.periodId;
- this.reqParm.organization= option.organization;
- // 查询服务工作人员列表
- this.serviceWorkPersonList();
- },
- methods: {
- // 查询服务工作人员列表
- serviceWorkPersonList(){
- this.$api.serviceWorkPersonList({data:this.reqParm}).then((res)=>{
- this.workPersonList = res.rows;
- }).catch(() =>{
- uni.showToast({
- title: "操作失败"
- })
- });
- },
- // 获取图片
- async getImgUrlByOssId(data){
- for (let i = 0; i < data.length; i++) {
- const item = data[i];
- let url = await this.$getImgUrlByOssId(item.facePhoto);
- item.imgUrl = url;
- }
- this.serviceObjectList = data
- return data;
- },
- // 选择服务老师
- chooseServiceTeacher(item){
- // 选择完成后返回上一页
- uni.navigateBack({
- delta: 1,
- success: function(res) {
- // 在这里可以处理选择结果
- // 可以将选择的内容保存到本地或通过事件传递给上一个页面
- uni.$emit('selectedDataFromChild', item);
- }
- });
- }
- },
- };
- </script>
- <style scoped lang="scss">
- .h-item-row{
- display: flex;
- font-family: PingFangSC-Medium, PingFang SC;
- margin: 12px;
- background: #fff;
- padding: 12px;
- .h-img{
- margin-right: 8px;
- image{
- height: 80px;
- width: 80px;
- }
- }
- .h-item-content{
- .h-title{
- font-size: 16px;
- font-weight: 500;
- line-height: 30px;
- display: flex;
- .name{
- padding-right: 6px;
- color: #111111;
- }
- .btn text{
- background: #fff5d0;
- color: #333333;
- font-size: 12px;
- border: 1px solid #FFE05C;
- padding-left: 10px;
- padding-right: 10px;
- }
- }
- .h-desc{
- font-size: 12px;
- font-weight: 400;
- color: #999999;
- line-height: 25px;
- }
- .h-content{
- display: flex;
- align-items: center;
- font-size: 12px;
- font-weight: 400;
- line-height: 25px;
- .h-text{
- color: #999999;
- }
- .h-text1{
- color: #ED569F;
- }
- }
- }
- }
- </style>
|