| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 | <template>  <view class="about-container my-page">    <view class=" header-section text-center">      <image style="width: 150rpx;" src="/static/logo200.png" mode="widthFix" />	  <view class="uni-title__box" >	  	<text class="uni-title__base uni-h2"  style="color:#333333 ;">若依移动端</text>	  </view>    </view>    <view class="content-section">      <view class=" menu-list">        <view class=" list-cell list-cell-arrow">          <view class=" menu-item-box uni-row">            <view class=" font-14">版本信息</view>            <view class=" text-right font-14">v{{version}}</view>          </view>        </view>        <view class=" list-cell list-cell-arrow">          <view class=" menu-item-box uni-row">            <view class=" font-14">官方邮箱</view>            <view class=" text-right font-14">ruoyi@xx.com</view>          </view>        </view>        <view class=" list-cell list-cell-arrow">          <view class=" menu-item-box uni-row">            <view class=" font-14">服务热线</view>            <view class=" text-right font-14">400-999-9999</view>          </view>        </view>        <view class=" list-cell list-cell-arrow">          <view class=" menu-item-box uni-row">            <view class=" font-14">公司网站</view>            <view class=" text-right font-14">				<navigator  :url="'/pages/common/webview/index?title=公司网站&url='+url" >{{url}}</navigator>            </view>          </view>        </view>      </view>    </view>    <view class=" copyright">      <view class="font-14 text-center">Copyright © 2022 ruoyi.vip All Rights Reserved.</view>    </view>  </view></template><script lang="uts">  export default {    data() {      const globalData = getApp().globalData      const config = globalData.config != null ? globalData.config as UTSJSONObject : null      const appInfo:UTSJSONObject|null = config?.get('appInfo') as UTSJSONObject;      return {        url: appInfo?.get('site_url') as string | '',        version: appInfo?.get('version') as string | ''      }    }  }</script><style lang="scss">  .my-page {    background-color: #f8f8f8;	width: 100%;	height: 100%;  }  .copyright {    margin-top: 50rpx;    text-align: center;    line-height: 60rpx;    color: #999;  }  .header-section {    display: flex;    padding: 30rpx 0 0;    flex-direction: column;    align-items: center;  }    .uni-title__box {  	/* #ifndef APP-NVUE */  	display: flex;  	/* #endif */  	flex-direction: column;  	align-items: flex-start;  	justify-content: center;  	padding: 8px 0;  	flex: 1;  }    .uni-title__base {  	font-size: 15px;  	color: #333;  	/* #ifndef APP-ANDROID */  	font-weight: 500;  	/* #endif */  	/* #ifdef APP-ANDROID */  	font-weight: 400;  	/* #endif */  }    .uni-h1 {  	font-size: 20px;  	color: #333;  	font-weight: bold;  }    .uni-h2 {  	font-size: 18px;  	color: #333;  	font-weight: bold;  }    .uni-h3 {  	font-size: 16px;  	color: #333;  	font-weight: bold;  	/* font-weight: 400; */  }    .uni-h4 {  	font-size: 14px;  	color: #333;  	font-weight: bold;  	/* font-weight: 300; */  }    .uni-h5 {  	font-size: 12px;  	color: #333;  	font-weight: bold;  	/* font-weight: 200; */  }</style>
 |