Blame view

pages/my/accountSecurity/index.vue 433 Bytes
290144e9   易尊强   第一次
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
  <template>
  	<view class="accountSecurity-v">
  		<u-cell-group>
  			<u-cell-item title="注销账号" @click="openPage('/pages/my/cancellation/index')"></u-cell-item>
  		</u-cell-group>
  	</view>
  </template>
  
  <script>
  	export default {
  		data() {
  			return {
  
  			}
  		},
  		methods: {
  			openPage(path) {
  				uni.navigateTo({
  					url: path
  				})
  			}
  		}
  	}
  </script>
  
  <style lang="scss">
  	page {
  		background-color: #f0f2f6;
  	}
  </style>