creditRating.vue
505 Bytes
<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>