mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-11-01 02:38:43 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			76 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <view class="about-container">
 | |
|     <view class="header-section text-center">
 | |
|       <image style="width: 150rpx;height: 150rpx;" src="/static/logo200.png" mode="widthFix">
 | |
|       </image>
 | |
|       <uni-title type="h2" title="芋道移动端"></uni-title>
 | |
|     </view>
 | |
| 
 | |
|     <view class="content-section">
 | |
|       <view class="menu-list">
 | |
|         <view class="list-cell list-cell-arrow">
 | |
|           <view class="menu-item-box">
 | |
|             <view>版本信息</view>
 | |
|             <view class="text-right">v{{version}}</view>
 | |
|           </view>
 | |
|         </view>
 | |
|         <view class="list-cell list-cell-arrow">
 | |
|           <view class="menu-item-box">
 | |
|             <view>官方邮箱</view>
 | |
|             <view class="text-right">7685413@qq.com</view>
 | |
|           </view>
 | |
|         </view>
 | |
|         <view class="list-cell list-cell-arrow">
 | |
|           <view class="menu-item-box">
 | |
|             <view>服务热线</view>
 | |
|             <view class="text-right">400-999-9999</view>
 | |
|           </view>
 | |
|         </view>
 | |
|         <view class="list-cell list-cell-arrow">
 | |
|           <view class="menu-item-box">
 | |
|             <view>公司网站</view>
 | |
|             <view class="text-right">
 | |
|               <uni-link :href="url" :text="url" showUnderLine="false"></uni-link>
 | |
|             </view>
 | |
|           </view>
 | |
|         </view>
 | |
|       </view>
 | |
|     </view>
 | |
| 
 | |
|     <view class="copyright">
 | |
|       <view>Copyright © 2022 iocoder.cn All Rights Reserved.</view>
 | |
|     </view>
 | |
|   </view>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
|   export default {
 | |
|     data() {
 | |
|       return {
 | |
|         url: getApp().globalData.config.appInfo.site_url,
 | |
|         version: getApp().globalData.config.appInfo.version
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| </script>
 | |
| 
 | |
| <style lang="scss">
 | |
|   page {
 | |
|     background-color: #f8f8f8;
 | |
|   }
 | |
| 
 | |
|   .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;
 | |
|   }
 | |
| </style>
 | 
