From eb3cf68faee31402822350045ee08f3fea28cd5c Mon Sep 17 00:00:00 2001 From: 闫增涛 <1829501689@qq.com> Date: 星期五, 26 四月 2024 11:02:49 +0800 Subject: [PATCH] 资源购买页去除已购买资源 --- packagePersonal/pages/aboutUs/index.wxml | 25 ++++++++++++++++--------- 1 files changed, 16 insertions(+), 9 deletions(-) diff --git a/packagePersonal/pages/aboutUs/index.wxml b/packagePersonal/pages/aboutUs/index.wxml index 634d3ce..4dbe5a2 100644 --- a/packagePersonal/pages/aboutUs/index.wxml +++ b/packagePersonal/pages/aboutUs/index.wxml @@ -1,24 +1,31 @@ -<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" /> </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 wx:if="{{types == 'jsek_aboutUs'}}" class="aboutUs"> - - <view class="aboutText "> + <view class="aboutText aboutUs"> <rich-text nodes="{{aboutText}}" space="emsp"></rich-text> </view> - </view> - <view wx:else class="aboutText "> - <rich-text style="width: 100%;" nodes="{{aboutText}}"></rich-text> + <view wx:else class="aboutText" style="margin: 5rpx;"> + <rich-text class="richTextBox" style="width: 100%;" space="emsp" nodes="{{aboutText}}" mode="compat"></rich-text> </view> </view> \ No newline at end of file -- Gitblit v1.9.1