Commit 0040ffead5cd7b097383d91e1fc3bc59e442e99c

Authored by taiyuan
1 parent 24f2f74b

新增批量预约按钮

pages/user/my_service/i_service.json
1 { 1 {
2 "navigationBarTitleText": "服务项目", 2 "navigationBarTitleText": "服务项目",
  3 + "enablePullDownRefresh": false,
3 "usingComponents": { 4 "usingComponents": {
4 "qr_code": "/components/qr_code/qr_code", 5 "qr_code": "/components/qr_code/qr_code",
5 "warn": "/components/long_warn/long_warn", 6 "warn": "/components/long_warn/long_warn",
pages/user/my_service/i_service.wxml
@@ -96,4 +96,8 @@ @@ -96,4 +96,8 @@
96 <!-- 弹出框扫描 --> 96 <!-- 弹出框扫描 -->
97 <qr_code id="qc_com"></qr_code> 97 <qr_code id="qc_com"></qr_code>
98 <warn id="warn"></warn> 98 <warn id="warn"></warn>
99 -<my_confirm id="my_confirm"></my_confirm>  
100 \ No newline at end of file 99 \ No newline at end of file
  100 +<my_confirm id="my_confirm"></my_confirm>
  101 +
  102 +
  103 +<!-- 批量预约图标 -->
  104 +<view class="icon-container" bindtap="goto" data-url="/packageA/pages/my_service2/appment_main"><text class="iconfont icon-plyy"></text></view>
101 \ No newline at end of file 105 \ No newline at end of file
pages/user/my_service/i_service.wxss
@@ -166,3 +166,18 @@ page { @@ -166,3 +166,18 @@ page {
166 margin: 0rpx 15rpx; 166 margin: 0rpx 15rpx;
167 color: #ccc; 167 color: #ccc;
168 } 168 }
  169 +
  170 +.icon-container {
  171 + position: fixed;
  172 + right: 10rpx;
  173 + bottom: 440rpx;
  174 + background-color: #272636;
  175 + color: white;
  176 + width: 80rpx;
  177 + height: 80rpx;
  178 + border-radius: 50%;
  179 + display: flex;
  180 + justify-content: center;
  181 + align-items: center;
  182 + z-index: 999;
  183 +}