1b44ac51
chenbiao
add 信用等级 实名认证form表单
|
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>
<uni-section title="实名认证" type="line">
<uni-list>
<uni-list-item title="信用等级" :rightText="ratingText" clickable showArrow @click="ratingCell()" />
</uni-list>
</uni-section>
</view>
</template>
<script>
export default {
data() {
return {
ratingText:"未认证"
};
},
methods:{
ratingCell(){
uni.navigateTo({
url: '../nameAuthentication/nameAuthentication'
});
}
}
}
</script>
<style lang="scss">
</style>
|