From cf1fcff430fa1331c1d9b2b844fa9ad710fb7a26 Mon Sep 17 00:00:00 2001
From: 闫增涛 <1829501689@qq.com>
Date: 星期二, 16 四月 2024 11:30:34 +0800
Subject: [PATCH] 详情页,答题器bug修改

---
 packageBookService/pages/bookServices/examination/questionList/index.js      |    2 
 packageBookService/pages/bookServices/examination/questionList/index.wxss    |   15 +++
 packageBookService/pages/bookServices/examination/questionList/index.wxml    |   14 ++-
 packageBookService/pages/bookServices/detail/index.json                      |    3 
 packageBookService/pages/bookServices/detail/index.wxml                      |    4 
 pages/bookServices/assort/index.skeleton.wxss                                |   42 ++++------
 packageBookService/pages/bookServices/detail/index.wxss                      |    5 
 packageBookService/pages/bookServices/examination/examination.wxml           |    3 
 packageBookService/pages/bookServices/examination/questionOptions/index.wxss |    1 
 pages/bookServices/assort/index.skeleton.wxml                                |   51 ++++--------
 packageBookService/pages/bookServices/detail/components/tree/index.wxml      |    3 
 packageBookService/pages/bookServices/examination/examination.js             |   27 +++++-
 pages/bookServices/assort/index.json                                         |    2 
 pages/bookServices/assort/index.wxml                                         |    4 -
 packageBookService/pages/bookServices/detail/index.js                        |   29 ++++---
 15 files changed, 103 insertions(+), 102 deletions(-)

diff --git a/packageBookService/pages/bookServices/detail/components/tree/index.wxml b/packageBookService/pages/bookServices/detail/components/tree/index.wxml
index 899f245..e835dc0 100644
--- a/packageBookService/pages/bookServices/detail/components/tree/index.wxml
+++ b/packageBookService/pages/bookServices/detail/components/tree/index.wxml
@@ -311,8 +311,7 @@
           itemId="{{itemId}}"
           tab="{{tab}}"
           buyIds="{{buyIds}}"
-          openTeachids="{{openTeachids}}"
-          openLearnids="{{openLearnids}}"
+          openIds="{{openIds}}"
         ></tree>
       </view>
       <!-- 鏆傛棤鏁版嵁 -->
diff --git a/packageBookService/pages/bookServices/detail/index.js b/packageBookService/pages/bookServices/detail/index.js
index 1b9d9cd..4399b17 100644
--- a/packageBookService/pages/bookServices/detail/index.js
+++ b/packageBookService/pages/bookServices/detail/index.js
@@ -177,6 +177,9 @@
         name: options.name,
       },
     });
+    wx.setNavigationBarTitle({
+      title: options.name,
+    })
     this.getBookInfo(options.id);
     this.getResourceClass(); // 鑾峰彇璧勬簮鎵�灞炲垎绫�
     const token = wx.getStorageSync(app.config.tokenKey);
@@ -895,29 +898,29 @@
   },
   // 鑾峰彇灞曞紑椤�
   findChildIds(data, result) {
-    let index = 0;
+    let index = 0
     for (let i = 0; i < data.length; i++) {
       if (index < 3) {
-        const item = data[i];
-        if (item.children && item.children.length > 0) {
-          result.push(item.id);
+        const item = data[i]
+        if (item.childrenFolderCount > 0) {
+          result.push(item.id)
           for (let j = 0; j < item.children.length; j++) {
             if (index < 3) {
-              const childrenItme = item.children[j];
-              if (item.children && item.children.length > 0) {
-                result.push(childrenItme.id);
-                index += 1;
+              const childrenItme = item.children[j]
+              if (item.childrenCount > 0) {
+                result.push(childrenItme.id)
+                index += 1
               }
             } else {
-              break;
+              break
             }
           }
-        } else if (item.children && item.children.length > 0) {
-          result.push(item.id);
-          index += 1;
+        } else if (item.childrenCount > 0) {
+          result.push(item.id)
+          index += 1
         }
       } else {
-        break;
+        break
       }
     }
   },
diff --git a/packageBookService/pages/bookServices/detail/index.json b/packageBookService/pages/bookServices/detail/index.json
index 5714f08..641a0cc 100644
--- a/packageBookService/pages/bookServices/detail/index.json
+++ b/packageBookService/pages/bookServices/detail/index.json
@@ -20,9 +20,8 @@
     "t-empty": "tdesign-miniprogram/empty/empty",
     "t-fab": "tdesign-miniprogram/fab/fab",
     "t-skeleton": "tdesign-miniprogram/skeleton/skeleton",
-    "suggest-dialog":"/packageBookService/pages/bookServices/detail/components/suggestDialog/index"
+    "suggest-dialog": "/packageBookService/pages/bookServices/detail/components/suggestDialog/index"
   },
-  "navigationStyle": "custom",
   "onReachBottomDistance": 200,
   "disableScroll": true
 }
\ No newline at end of file
diff --git a/packageBookService/pages/bookServices/detail/index.wxml b/packageBookService/pages/bookServices/detail/index.wxml
index 13787b6..9631d21 100644
--- a/packageBookService/pages/bookServices/detail/index.wxml
+++ b/packageBookService/pages/bookServices/detail/index.wxml
@@ -12,7 +12,7 @@
 ></suggest-dialog>
 <!-- <popup showIndex="{{showIndex}}"></popup> -->
 <view class="page-bookService" wx:if="{{!pageLoading}}">
-  <view style="width: 100%; height: {{barHeight}}px; "></view>
+  <!-- <view style="width: 100%; height: {{barHeight}}px; "></view>
   <view class="nacigationBar" style="width: 100%; height: {{navBarHeight}}px;">
     <view>
       <t-icon
@@ -25,7 +25,7 @@
     <view class="navbar-title" style="width: 100%">
       <text>{{options.name}}</text>
     </view>
-  </view>
+  </view> -->
   <t-toast id="t-toast" />
   <scroll-view
     scroll-y="{{true}}"
diff --git a/packageBookService/pages/bookServices/detail/index.wxss b/packageBookService/pages/bookServices/detail/index.wxss
index 69f336c..31fa838 100644
--- a/packageBookService/pages/bookServices/detail/index.wxss
+++ b/packageBookService/pages/bookServices/detail/index.wxss
@@ -32,7 +32,8 @@
 
 .book {
   position: relative;
-  height: calc(100vh - env(safe-area-inset-bottom) - 141px);
+  height: calc(100vh - env(safe-area-inset-bottom) - 60px);
+  /* height: calc(100vh - env(safe-area-inset-bottom) - 141px); */
   background-color: #F2F3F8;
 }
 
@@ -221,13 +222,11 @@
 
 /* 鍥句功璧勬簮 */
 .book-resource {
-  /* min-height: 640rpx; */
   min-height: calc(100vh - 900rpx);
   margin-top: 20rpx;
   background-color: #fff !important;
   --td-tab-item-height: 140rpx;
 }
-
 
 .custom-tabs {
   --td-tab-item-active-color: #FF6C00;
diff --git a/packageBookService/pages/bookServices/examination/examination.js b/packageBookService/pages/bookServices/examination/examination.js
index a819f70..ceac28b 100644
--- a/packageBookService/pages/bookServices/examination/examination.js
+++ b/packageBookService/pages/bookServices/examination/examination.js
@@ -47,7 +47,7 @@
     sliderValue: 0, // 瀛椾綋婊戝潡
     startTime: "", //杩涘叆椤甸潰褰撳墠鏃堕棿
     pauseTime: 0, //鏆傚仠鏃堕棿
-
+    showDialog: false // 鏈彁浜ら��鍑烘嫤鎴脊绐�
   },
 
   /**
@@ -68,6 +68,9 @@
       idPathList: options.idPathList ? JSON.parse(options.idPathList) : [],
       answerType: options.answerType,
     });
+    // wx.setNavigationBarTitle({
+    //   title: options.answerTitle,
+    // })
     if (this.data.answerType == "mock") {
       this.setData({
         uuid: options.uuid,
@@ -238,10 +241,15 @@
       confirmColor: "#ff6c00",
       cancelColor: "#949494",
       complete: (res) => {
-        if (res.cancel) {}
+        if (res.cancel) {
+          this.setData({
+            showDialog: true
+          })
+        }
         if (res.confirm) {
           this.setData({
             submitStatus: true,
+            showDialog: false
           });
           wx.navigateBack();
         }
@@ -488,6 +496,7 @@
   // 鎻愪氦閫昏緫
   submitPaper() {
     this.setData({
+      showDialog: false,
       submitStatus: true,
       loading: true,
     });
@@ -566,7 +575,6 @@
     });
     if (this.data.answerType == "option") {
       if (this.data)
-        // this.startCountdown()
         this.setData({
           countdownTime: 2 * 60 * 60 * 1000,
         });
@@ -630,6 +638,9 @@
             oldMockData.state == "2"
           ) {
             this.startCountdown();
+            this.setData({
+              showDialog: true
+            })
           }
           if (oldMockData.state == "3") {
             this.setData({
@@ -729,6 +740,9 @@
               await this.getQuestionList(value.dataList);
             } else {
               await this.getQuestionList(); // 鑾峰彇棰樺簱棰樼洰
+              this.setData({
+                showDialog: true
+              })
             }
           });
         }
@@ -984,7 +998,7 @@
     }
     // 鏈夐鐩啀寮�濮嬪�掕鏃�
     if (this.data.questionDataList.length) {
-      // console.log(this.data.questionDataList);
+      console.log(this.data.questionDataList);
       this.startCountdown();
     } else {
       this.setData({
@@ -2057,11 +2071,12 @@
       })
       .then((res) => {
         if (res[0]) {
+          // 杩欓噷鐨� countdownTime 璧嬪�硷細濡傛灉鏄椂闂村埌浜嗘彁浜わ紝璁板綍鐨勫墿浣欐椂闂村氨鏄�0锛屾墍浠ワ細濡傛灉鏄�0鐨勮瘽璧嬪��1绉掞紝闃叉鐩戝惉鍒版椂闂翠负0鍐嶆鎻愪氦
           this.setData({
             currentIndex: JSON.parse(res[0].value).currentIndex,
             "mockData.time": JSON.parse(res[0].value).time,
-            countdownTime: JSON.parse(res[0].value).time ?
-              JSON.parse(res[0].value).time : this.data.mockData.sumTime,
+            countdownTime: JSON.parse(res[0].value).time > 0 ?
+              JSON.parse(res[0].value).time : 1000,
             "mockData.answer": JSON.parse(res[0].value).answerData,
           });
           console.log(JSON.parse(res[0].value));
diff --git a/packageBookService/pages/bookServices/examination/examination.wxml b/packageBookService/pages/bookServices/examination/examination.wxml
index ec63e12..42e68cc 100644
--- a/packageBookService/pages/bookServices/examination/examination.wxml
+++ b/packageBookService/pages/bookServices/examination/examination.wxml
@@ -93,8 +93,7 @@
 </view>
 
 <page-container
-  wx:if="{{(answerType == 'mock' || answerType == 'option') && !submitStatus}}"
-  show="{{true}}"
+  show="{{showDialog}}"
   duration="{{false}}"
   overlay="{{false}}"
   bind:beforeleave="beforeleave"
diff --git a/packageBookService/pages/bookServices/examination/questionList/index.js b/packageBookService/pages/bookServices/examination/questionList/index.js
index 1785411..c881818 100644
--- a/packageBookService/pages/bookServices/examination/questionList/index.js
+++ b/packageBookService/pages/bookServices/examination/questionList/index.js
@@ -35,7 +35,7 @@
     }
   },
   observers: {},
-  ready() {
+  detached() {
     innerAudioContext.stop();
     innerAudioContext.destroy();
   },
diff --git a/packageBookService/pages/bookServices/examination/questionList/index.wxml b/packageBookService/pages/bookServices/examination/questionList/index.wxml
index 5212ab2..4820cd7 100644
--- a/packageBookService/pages/bookServices/examination/questionList/index.wxml
+++ b/packageBookService/pages/bookServices/examination/questionList/index.wxml
@@ -189,12 +189,13 @@
               disabled="{{item.isComplete}}"
               icon="rectangle"
               block="{{false}}"
+              class="t-checkbox"
               value="{{contentItem.value}}"
-              style="background-color:{{isNight ? '#222' :'#F9F9F9'}}; display: flex; align-items: center; margin-bottom: 20rpx;"
+              style="background-color:{{isNight ? '#222' :'#F9F9F9'}}; "
             >
               <!-- 浠呮枃瀛� -->
               <view
-                class="fl-center"
+                class="fl-center mh"
                 wx:if="{{item.optionStyle == 'Txt'}}"
                 style="color:{{ isNight  ? '#fff' : '#000'}};font-size:{{sliderValue || 32}}rpx;"
               >
@@ -203,7 +204,10 @@
               </view>
 
               <!-- 浠呭浘鐗� -->
-              <view wx:if="{{item.optionStyle == 'Image'}}" class="fl-center">
+              <view
+                wx:if="{{item.optionStyle == 'Image'}}"
+                class="fl-center mh"
+              >
                 <text
                   style="color:{{ isNight  ? '#fff' : '#000'}};font-size:{{sliderValue || 32}}rpx;"
                   >{{contentItem.value}}銆�</text
@@ -213,7 +217,7 @@
               <!-- 鏂囧瓧鍔犲浘鐗� -->
               <view
                 wx:if="{{item.optionStyle == 'TxtAndImage'}}"
-                class="fl-center"
+                class="fl-center mh"
               >
                 <text
                   style="color:{{ isNight  ? '#fff' : '#000'}};font-size:{{sliderValue || 32}}rpx;"
@@ -232,7 +236,7 @@
               <!-- 瀵屾枃鏈� -->
               <view
                 wx:if="{{item.optionStyle == 'RichText'}}"
-                class="check-rich-box"
+                class="check-rich-box mh"
               >
                 <text>{{contentItem.value}}銆�</text>
                 <rich-text
diff --git a/packageBookService/pages/bookServices/examination/questionList/index.wxss b/packageBookService/pages/bookServices/examination/questionList/index.wxss
index eaa29f0..5e7c018 100644
--- a/packageBookService/pages/bookServices/examination/questionList/index.wxss
+++ b/packageBookService/pages/bookServices/examination/questionList/index.wxss
@@ -94,14 +94,19 @@
   align-items: center;
 }
 
-.checkbox-group {
-  --td-checkbox-icon-checked-color: #FF6C00;
-}
 
 .t-checkbox {
   display: flex;
   align-items: center;
+  margin-bottom: 20rpx;
+  --td-checkbox-icon-checked-color: #ff6c00;
 }
+
+
+/* .t-checkbox {
+  display: flex;
+  align-items: center;
+} */
 
 .completion-box {
   display: inline-block;
@@ -290,4 +295,8 @@
 .fl-cl {
   display: flex;
   flex-direction: column;
+}
+
+.mh {
+  min-height: 104rpx;
 }
\ No newline at end of file
diff --git a/packageBookService/pages/bookServices/examination/questionOptions/index.wxss b/packageBookService/pages/bookServices/examination/questionOptions/index.wxss
index 45afba8..7187b0a 100644
--- a/packageBookService/pages/bookServices/examination/questionOptions/index.wxss
+++ b/packageBookService/pages/bookServices/examination/questionOptions/index.wxss
@@ -67,6 +67,7 @@
 }
 
 .question-explain {
+  height: 100rpx;
   padding-right: 40rpx;
   display: flex;
   justify-content: flex-end;
diff --git a/pages/bookServices/assort/index.json b/pages/bookServices/assort/index.json
index bc96060..45e1881 100644
--- a/pages/bookServices/assort/index.json
+++ b/pages/bookServices/assort/index.json
@@ -1,5 +1,5 @@
 {
-  "navigationStyle": "custom",
+  "navigationBarTitleText": "鍥句功鏈嶅姟",
   "onReachBottomDistance": 10,
   "backgroundTextStyle": "light",
   "disableScroll": true,
diff --git a/pages/bookServices/assort/index.skeleton.wxml b/pages/bookServices/assort/index.skeleton.wxml
index 77b6a25..e96289e 100644
--- a/pages/bookServices/assort/index.skeleton.wxml
+++ b/pages/bookServices/assort/index.skeleton.wxml
@@ -1,5 +1,5 @@
 <!--
-姝ゆ枃浠朵负寮�鍙戣�呭伐鍏风敓鎴愶紝鐢熸垚鏃堕棿: 2024/4/11涓嬪崍2:20:53
+姝ゆ枃浠朵负寮�鍙戣�呭伐鍏风敓鎴愶紝鐢熸垚鏃堕棿: 2024/4/16涓婂崍11:03:51
 浣跨敤鏂规硶锛�
 鍦� D:\WebData\project\2024\jsek-applet\pages\bookServices\assort\index.wxml 寮曞叆妯℃澘
 
@@ -18,21 +18,13 @@
 <template name="skeleton">
   <view class="sk-container">
     <page-meta style="width: 100vw; overflow: hidden">
-      <view style="width: 100%; height: 47px"></view>
-      <view class="nacigationBar" style="width: 100%; height: 40px">
-        <view
-          class="navbar-title "
-          style="background-position-x: 50%"
-          >鍥句功鏈嶅姟</view
-        >
-      </view>
       <view class="page-header">
         <view class="search">
-          <view class="t-search search--t-search" >
+          <view class="t-search search--t-search">
             <view
               class="t-search__input-box search--t-search__input-box t-not-focused search--t-not-focused t-search__input-box-- search--t-search__input-box-- t-search__input-box--square search--t-search__input-box--square t-search__input-container"
             >
-              <view class="wr icon--wr" >
+              <view class="wr icon--wr" style="color: #bbb; font-size: 20px">
                 <label
                   class="wr-search icon--wr-search t-icon-base icon--t-icon-base sk-pseudo sk-pseudo-circle"
                 ></label>
@@ -52,7 +44,7 @@
       <view class="page-container">
         <view class="side-bar-wrapper">
           <view class="tab-left">
-            <view class="t-side-bar bar--t-side-bar" >
+            <view class="t-side-bar bar--t-side-bar">
               <view
                 class="t-side-bar-item item--t-side-bar-item t-side-bar-item--active item--t-side-bar-item--active sk-transparent sk-button"
               >
@@ -100,27 +92,27 @@
               <view class="tab-top">
                 <view class="myScroll">
                   <view
-                    class="row sk-transparent sk-text-14-2857-470 sk-text"
+                    class="row sk-transparent sk-text-14-2857-751 sk-text"
                     data-tabdata="[object Object]"
                     >鍏叡鍩虹绫�</view
                   >
                   <view
-                    class="row sk-transparent sk-text-14-2857-274 sk-text"
+                    class="row sk-transparent sk-text-14-2857-718 sk-text"
                     data-tabdata="[object Object]"
                     >鍝插</view
                   >
                   <view
-                    class="row sk-transparent sk-text-14-2857-868 sk-text"
+                    class="row sk-transparent sk-text-14-2857-788 sk-text"
                     data-tabdata="[object Object]"
                     >娉曞</view
                   >
                   <view
-                    class="row sk-transparent sk-text-14-2857-149 sk-text"
+                    class="row sk-transparent sk-text-14-2857-764 sk-text"
                     data-tabdata="[object Object]"
                     >缁忔祹瀛�</view
                   >
                   <view
-                    class="row sk-transparent sk-text-14-2857-66 sk-text"
+                    class="row sk-transparent sk-text-14-2857-970 sk-text"
                     data-tabdata="[object Object]"
                     >绠$悊瀛�</view
                   >
@@ -133,7 +125,7 @@
               >
                 <view class="class-box" id="list405">
                   <view
-                    class="class-name sk-transparent sk-text-14-2857-360 sk-text"
+                    class="class-name sk-transparent sk-text-14-2857-157 sk-text"
                     >鍏叡鍩虹绫�</view
                   >
                   <view class="class-content">
@@ -146,7 +138,7 @@
                         <image mode="aspectFit" class="sk-image"></image>
                       </view>
                       <view
-                        class="classify sk-transparent sk-text-14-2857-787 sk-text"
+                        class="classify sk-transparent sk-text-14-2857-985 sk-text"
                         >澶у璇枃绫�</view
                       >
                     </view>
@@ -159,7 +151,7 @@
                         <image mode="aspectFit" class="sk-image"></image>
                       </view>
                       <view
-                        class="classify sk-transparent sk-text-14-2857-115 sk-text"
+                        class="classify sk-transparent sk-text-14-2857-156 sk-text"
                         >楂樼瓑鏁板绫�</view
                       >
                     </view>
@@ -172,7 +164,7 @@
                         <image mode="aspectFit" class="sk-image"></image>
                       </view>
                       <view
-                        class="classify sk-transparent sk-text-14-2857-469 sk-text"
+                        class="classify sk-transparent sk-text-14-2857-56 sk-text"
                         >灏变笟銆佸垱鏂颁笌鍒涗笟绫�</view
                       >
                     </view>
@@ -185,7 +177,7 @@
                         <image mode="aspectFit" class="sk-image"></image>
                       </view>
                       <view
-                        class="classify sk-transparent sk-text-14-2857-515 sk-text"
+                        class="classify sk-transparent sk-text-14-2857-717 sk-text"
                         >搴旂敤鏂囧啓浣滅被</view
                       >
                     </view>
@@ -198,7 +190,7 @@
                         <image mode="aspectFit" class="sk-image"></image>
                       </view>
                       <view
-                        class="classify sk-transparent sk-text-14-2857-824 sk-text"
+                        class="classify sk-transparent sk-text-14-2857-278 sk-text"
                         >蹇冪悊鍋ュ悍鏁欒偛绫�</view
                       >
                     </view>
@@ -211,7 +203,7 @@
                         <image mode="aspectFit" class="sk-image"></image>
                       </view>
                       <view
-                        class="classify sk-transparent sk-text-14-2857-988 sk-text"
+                        class="classify sk-transparent sk-text-14-2857-608 sk-text"
                         >浣撹偛绫�</view
                       >
                     </view>
@@ -224,7 +216,7 @@
                         <image mode="aspectFit" class="sk-image"></image>
                       </view>
                       <view
-                        class="classify sk-transparent sk-text-14-2857-89 sk-text"
+                        class="classify sk-transparent sk-text-14-2857-652 sk-text"
                         >鐢熸动瑙勫垝绫�</view
                       >
                     </view>
@@ -237,18 +229,13 @@
                         <image mode="aspectFit" class="sk-image"></image>
                       </view>
                       <view
-                        class="classify sk-transparent sk-text-14-2857-188 sk-text"
+                        class="classify sk-transparent sk-text-14-2857-938 sk-text"
                         >鍏朵粬绫�</view
                       >
                     </view>
                   </view>
                 </view>
-                <view class="class-box" id="list406">
-                  <view
-                    class="class-name sk-transparent sk-text-14-2857-674 sk-text"
-                    >鍝插</view
-                  >
-                </view>
+                <view class="class-box" id="list406"></view>
               </scroll-view>
             </view>
           </view>
diff --git a/pages/bookServices/assort/index.skeleton.wxss b/pages/bookServices/assort/index.skeleton.wxss
index 28c15ef..9c1db2a 100644
--- a/pages/bookServices/assort/index.skeleton.wxss
+++ b/pages/bookServices/assort/index.skeleton.wxss
@@ -1,5 +1,5 @@
 /*
-姝ゆ枃浠朵负寮�鍙戣�呭伐鍏风敓鎴愶紝鐢熸垚鏃堕棿: 2024/4/11涓嬪崍2:20:53
+姝ゆ枃浠朵负寮�鍙戣�呭伐鍏风敓鎴愶紝鐢熸垚鏃堕棿: 2024/4/16涓婂崍11:03:51
 
 鍦� D:\WebData\project\2024\jsek-applet\pages\bookServices\assort\index.wxss 涓紩鍏ユ牱寮�
 ```
@@ -11,9 +11,9 @@
 .sk-transparent {
     color: transparent !important;
   }
-.sk-text-14-2857-436 {
+.sk-text-14-2857-751 {
     background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
-    background-size: 100% 53.8462rpx;
+    background-size: 100% 37.6923rpx;
     position: relative !important;
   }
 .sk-text {
@@ -23,79 +23,69 @@
     color: transparent !important;
     background-repeat: repeat-y !important;
   }
-.sk-text-14-2857-470 {
+.sk-text-14-2857-718 {
     background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
     background-size: 100% 37.6923rpx;
     position: relative !important;
   }
-.sk-text-14-2857-274 {
+.sk-text-14-2857-788 {
     background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
     background-size: 100% 37.6923rpx;
     position: relative !important;
   }
-.sk-text-14-2857-868 {
+.sk-text-14-2857-764 {
     background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
     background-size: 100% 37.6923rpx;
     position: relative !important;
   }
-.sk-text-14-2857-149 {
+.sk-text-14-2857-970 {
     background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
     background-size: 100% 37.6923rpx;
     position: relative !important;
   }
-.sk-text-14-2857-66 {
-    background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
-    background-size: 100% 37.6923rpx;
-    position: relative !important;
-  }
-.sk-text-14-2857-360 {
+.sk-text-14-2857-157 {
     background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
     background-size: 100% 43.0769rpx;
     position: relative !important;
   }
-.sk-text-14-2857-787 {
+.sk-text-14-2857-985 {
     background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
     background-size: 100% 37.6923rpx;
     position: relative !important;
   }
-.sk-text-14-2857-115 {
+.sk-text-14-2857-156 {
     background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
     background-size: 100% 37.6923rpx;
     position: relative !important;
   }
-.sk-text-14-2857-469 {
+.sk-text-14-2857-56 {
     background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
     background-size: 100% 37.6923rpx;
     position: relative !important;
   }
-.sk-text-14-2857-515 {
+.sk-text-14-2857-717 {
     background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
     background-size: 100% 37.6923rpx;
     position: relative !important;
   }
-.sk-text-14-2857-824 {
+.sk-text-14-2857-278 {
     background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
     background-size: 100% 37.6923rpx;
     position: relative !important;
   }
-.sk-text-14-2857-988 {
+.sk-text-14-2857-608 {
     background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
     background-size: 100% 37.6923rpx;
     position: relative !important;
   }
-.sk-text-14-2857-89 {
+.sk-text-14-2857-652 {
     background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
     background-size: 100% 37.6923rpx;
     position: relative !important;
   }
-.sk-text-14-2857-188 {
+.sk-text-14-2857-938 {
     background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
     background-size: 100% 37.6923rpx;
-    position: relative !important;
-  }
-.sk-text-14-2857-674 {
-    background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
-    background-size: 100% 43.0769rpx;
     position: relative !important;
   }
 .sk-button {
diff --git a/pages/bookServices/assort/index.wxml b/pages/bookServices/assort/index.wxml
index 3741dfa..db45635 100644
--- a/pages/bookServices/assort/index.wxml
+++ b/pages/bookServices/assort/index.wxml
@@ -3,10 +3,6 @@
 
 <!--鍥句功鏈嶅姟鍒嗙被-->
 <page-meta style="width: 100vw; overflow: hidden" wx:if="{{!listLoding}}">
-  <view style="width: 100%; height: {{barHeight}}px; "></view>
-  <view class="nacigationBar" style="width: 100%; height: {{navBarHeight}}px;">
-    <view class="navbar-title">鍥句功鏈嶅姟</view>
-  </view>
   <view class="page-header">
     <!-- 鎼滅储妗� -->
     <view class="search">

--
Gitblit v1.9.1