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

---
 packagePersonal/pages/aboutUs/index.wxml |   41 ++++++++++++++++++++++++++++++-----------
 1 files changed, 30 insertions(+), 11 deletions(-)

diff --git a/packagePersonal/pages/aboutUs/index.wxml b/packagePersonal/pages/aboutUs/index.wxml
index 3b15b35..34d03b0 100644
--- a/packagePersonal/pages/aboutUs/index.wxml
+++ b/packagePersonal/pages/aboutUs/index.wxml
@@ -1,20 +1,39 @@
-<view class="aboutUsBox">
+<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: 70%; height: {{navBarHeight}}px;">
+    <view class="nacigationBar" style="width: 90%; height: {{navBarHeight}}px;">
       <view>
-        <t-icon name="chevron-left" size="30" data-name="{{item}}" bind:click="goBack" />
+        <t-icon
+          name="chevron-left"
+          size="30"
+          data-name="{{item}}"
+          bind:click="goBack"
+        />
       </view>
-      <view wx:if="{{types == 'jsek_aboutUs'}}" class="navbar-title">鍏充簬鎴戜滑</view>
-      <view wx:else class="navbar-title">鑱旂郴鎴戜滑</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 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>
\ No newline at end of file
+  <view wx:else class="aboutText richTextBox" style="margin: 5rpx">
+    <rich-text
+      style="width: 100%"
+      space="emsp"
+      nodes="{{aboutText}}"
+      mode="compat"
+    ></rich-text>
+  </view>
+</view>

--
Gitblit v1.9.1