yiming
2024-04-28 04acf6421dded7b6f6eef9d2cf41d0b4a0e8dd0d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<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="aboutUs">
    <view class="aboutText aboutUs">
      <rich-text nodes="{{aboutText}}" space="emsp"></rich-text>
    </view>
  </view>
  <view wx:else class="aboutText richTextBox" style="margin: 5rpx;">
    <rich-text style="width: 100%;" space="emsp" nodes="{{aboutText}}" mode="compat"></rich-text>
  </view>
</view>