From ccda9ec2fe70d8f51ef184eafc04b78d22dfbabd Mon Sep 17 00:00:00 2001
From: litian <C21AF165>
Date: 星期三, 26 六月 2024 15:02:28 +0800
Subject: [PATCH] 小程序,教材,课程

---
 pages/bookExhibitionDetails/index.wxml |   79 +++++++++++++++++++++++++--------------
 1 files changed, 50 insertions(+), 29 deletions(-)

diff --git a/pages/bookExhibitionDetails/index.wxml b/pages/bookExhibitionDetails/index.wxml
index 87b5129..0a8231c 100644
--- a/pages/bookExhibitionDetails/index.wxml
+++ b/pages/bookExhibitionDetails/index.wxml
@@ -1,38 +1,59 @@
 <!--pages/bookExhibitionDetails/index.wxml-->
-<view style="width: 100%; height: {{barHeight}}px; "></view>
-<view class="nacigationBar" style="width: 70%; height: {{navBarHeight}}px;">
-  <view>
-    <t-icon name="chevron-left" size="30" data-name="{{item}}" bind:click="goBack" />
-  </view>
-  <view class="navbar-title">{{bookName}}</view>
-</view>
-
-<view class="headBox">
-  <text class="titleBox">{{bookName}}</text>
-  <view class="informationBox">
-    <text class="informationNameBox">鍙戝竷浜�:{{bookCreator}}</text>
-    <text class="informationTimeBox">鍙戝竷鏃ユ湡锛歿{bookBeginDate}}</text>
-
-  </view>
-</view>
+<import src="index.skeleton.wxml" />
+<template is="skeleton" wx:if="{{loading}}" />
 
 
+<view hidden="{{hidden}}" class="centerBox">
+  <!-- <view class="tltiBox">
+    <view style="width: 100%; height: {{barHeight}}px; "></view>
+    <view class="nacigationBar" style="width: 100%; height: {{navBarHeight}}px;">
+      <view>
+        <t-icon name="chevron-left" size="30" data-name="{{item}}" bind:click="goBack" />
+      </view>
 
-<image class="partingBox" src="/static/images/bookExhibitionDetails/Parting.png" mode="aspectFill" />
+      <view class="navbar-title">{{subtitleName}}</view>
 
-<image class="bannerBox" src="{{bookImage}}" mode="" />
-
-<view class="textContent">
-  <rich-text nodes="{{bookContent}}"></rich-text>
-
-  <!-- <text>{{bookContent}}</text> -->
-</view>
-<view class="outsideBooksBox">
-  <view class="booksBox" wx:for="{{bookExhibitionList}}" wx:key="index" wx:for-item="item" wx:for-index="index" data-item="{{item}}" bind:tap="onBookDetails">
-    <view class="outsideBooksImageBox">
-      <image class="booksImageBox" src="{{item.icon}}" mode="" />
     </view>
-    <view class="booksTextBox"> <text>{{item.name}}</text></view>
+  </view> -->
+
+  <view class="outsideHeadBox">
+
+
+    <view class="headBox">
+      <view class="titleBox">{{bookName}}</view>
+      <view class="informationBox">
+        <text class="informationNameBox">鍙戝竷浜�:{{bookCreator}}</text>
+        <text class="informationTimeBox">鍙戝竷鏃ユ湡锛歿{bookBeginDate}}</text>
+
+      </view>
+    </view>
+
+
+
+    <image class="partingBox" src="/static/images/bookExhibitionDetails/Parting.png" mode="aspectFill" />
+    <view class="bannerBox">
+      <image src="{{bookImage}}" mode="aspectFit" />
+    </view>
+
+
+    <view class="textContent">
+      <rich-text nodes="{{bookContent}}"></rich-text>
+
+      <!-- <text>{{bookContent}}</text> -->
+    </view>
+    <view class="outsideBooksBox">
+      <view class="booksBox" wx:for="{{bookExhibitionList}}" wx:key="index" wx:for-item="item" wx:for-index="index" data-item="{{item}}" bind:tap="onBookDetails">
+        <view class="outsideBooksImageBox">
+          <image src="{{item.icon}}" mode="aspectFit" />
+        </view>
+        <view class="booksTextBox"> <text>{{item.name}}</text></view>
+        <view class="boosAuthor">{{item.author}}</view>
+      </view>
+      <view wx:if="{{bookExhibitionList.length > 0}}" class="bottom-box">
+        <t-loading theme="circular" size="40rpx" class="wrapper" wx:if="{{isMore == true}}" />
+        <text wx:if="{{isMore == false}}">娌℃湁鏇村浜�</text>
+      </view>
+    </view>
 
   </view>
 </view>
\ No newline at end of file

--
Gitblit v1.9.1