From af2e38d1d72633d03afdb6e75f8d30b7ef0d0aee Mon Sep 17 00:00:00 2001
From: 闫增涛 <1829501689@qq.com>
Date: 星期一, 29 七月 2024 15:24:30 +0800
Subject: [PATCH] 图书详情页添加对云学习目录整体购买的判断

---
 packagePersonal/pages/aboutUs/index.wxml |   39 +++++++++++++++++++++++----------------
 1 files changed, 23 insertions(+), 16 deletions(-)

diff --git a/packagePersonal/pages/aboutUs/index.wxml b/packagePersonal/pages/aboutUs/index.wxml
index 40f4321..8efcb1e 100644
--- a/packagePersonal/pages/aboutUs/index.wxml
+++ b/packagePersonal/pages/aboutUs/index.wxml
@@ -1,20 +1,27 @@
-<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" />
+<import src="index.skeleton.wxml" />
+<template is="skeleton" wx:if="{{loading}}" />
+
+<view class="aboutUsBox" hidden="{{hidden}}">
+  <view class="titleBox">
+    <view style="width: 100%; height: {{barHeight}}px; "></view>
+    <view class="nacigationBar" style="width: 90%; height: {{navBarHeight}}px;">
+      <view>
+        <t-icon name="chevron-left" size="30" data-name="{{item}}" bind:click="goBack" />
+      </view>
+
+      <view class="titleTextBox">
+        <view wx:if="{{types == 'jsek_aboutUs'}}" class="navbar-title">鍏充簬鎴戜滑</view>
+        <view wx:else class="navbar-title">鑱旂郴鎴戜滑</view>
+      </view>
+    </view>
   </view>
-  <view wx:if="{{types == 'jsek_aboutUs'}}" class="navbar-title">鍏充簬鎴戜滑</view>
-  <view wx:else class="navbar-title">鑱旂郴鎴戜滑</view>
-</view>
 
-
-
-
-
-
-<view class="aboutUs">
-
-  <view class="aboutText">
-    <rich-text nodes="{{aboutText}}"></rich-text>
+  <view wx:if="{{types == 'jsek_aboutUs'}}" class="aboutUs">
+    <view class="aboutText aboutUs">
+      <rich-text nodes="{{aboutText}}" space="emsp"></rich-text>
+    </view>
+  </view>
+  <view wx:else class="aboutText richTextBox">
+    <rich-text style="width: 100vw" space="emsp" nodes="{{aboutText}}" mode="compat"></rich-text>
   </view>
 </view>
\ No newline at end of file

--
Gitblit v1.9.1