cosmetology_list.wxml 2.66 KB
<view class="container">
  <image class="appointment" src="{{iurl}}/miniapp/images/yyservice/Cosm_appo.png"></image>

  <!-- 总预约 -->
  <view wx:if="{{true}}">
    <!-- 当个预约 -->
    <view class="single" wx:for="{{cosmetology_list}}">
      <!-- 个人属性 -->
      <view class="flex-vertical-between">
        <view class="flex-vertical">
          <image class="portrait" src="{{item.img}}"></image>
          <view>
            <!-- 用户名 -->
            <view class="UserName ellipsis-1 fs32">{{item.name}}</view>
            <!-- 评价星数 -->
            <view class="flex" style="margin-top:10rpx;">
              <image class="Stars" src="{{iurl}}/miniapp/images/StarsredCk.png" wx:for="11111"></image>
              <!-- images/StarswhiteUnCk.png//白色星星地址 -->
            </view>
            <!-- 个人标签 -->
            <view class="Label fs22 flex" wx:if="{{true}}">
              <view class="flex-center Labelitem itone">
                <view>{{item.type_a}}</view>
              </view>
              <view class="flex-center Labelitem itwo">
                <view>{{item.type_b}}</view>
              </view>
              <view class="flex-center Labelitem ith">
                <view>{{item.type_c}}</view>
              </view>

            </view>
          </view>
        </view>

        <!-- 预约状态 -->
        <block wx:if="{{0}}">
          <navigator class="flex-center gofu go" url="/pages/user/beauty_deta/beauty_deta">
            <view class="fs24">预约</view>
          </navigator>
        </block>
        <block wx:else>
          <view class="flex-center gofu gofull">
            <view class="fs24">已约满</view>
          </view>
        </block>
      </view>
      <view class="fs26 information">
        <block wx:if="{{true}}">
          <view class="ellipsis-3">在职业培训、职业技能鉴定与企业用人要求之间建立一个有效实用的联系,经研究 决定,以《职业技能鉴定国家题库操作技能考试手册》的方式,向全社会公布国家题库 操作技能考核试题库的全部内容。
          </view>
        </block>
        <block wx:else>
          <view>暂无对自己的介绍</view>
        </block>
      </view>
    </view>
  </view>
</view>
<!-- 无美容师 -->
<view class="empty_order" wx:if="{{false}}">
  <view class="flex-level">
    <image src="{{iurl}}miniapp/images/yyservice/no_beauty.png"></image>
  </view>
  <view class="flex-level fs30 xc-ash">暂无美容师</view>
  <view class="flex-level">
    <navigator url="/pages/user/my_service/my_service" bindtap="goto">
      <view class="flex-center fs28 white">其他项目</view>
    </navigator>
  </view>
</view>