Blame view

pages/mine/setting/about.vue 711 Bytes
46b6767c   刘淇   init 提交到库
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
32
33
34
  <template>
  	<view class="container">
  		<view class="fs-flex__column fs-items__center fs-pt200">
  			<image src="/static/images/logo.png" style="width:400rpx;" mode="widthFix" />
  			<tui-text :text="'园林养护平台 v' + version" class="fs-mt80"></tui-text>
  			<tui-text type="gray" text="Copyright © 2024 蓟城山水集团 All Rights Reserved." class="fs-mt20"></tui-text>
  		</view>
  	</view>
  </template>
  
  <script>
  import { version } from '@/config/app'
  export default {
  	data() {
  		return {
  			version: version
  		}
  	},
  	onLoad() {
  
  	},
  	methods: {
  		toDetails(id) {
  			uni.$tui.href(`/pages/work/event/details?id=${id}`)
  		}
  	}
  }
  </script>
  
  <style lang="scss">
  	page {
  		background-color: #FFF;
  	}
  </style>