You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
959 B
35 lines
959 B
|
4 years ago
|
<template>
|
||
|
|
<view>
|
||
|
|
<uni-list>
|
||
|
|
<uni-list-item title="我的信息" clickable @click="onClick" ></uni-list-item>
|
||
|
|
<uni-list-item title="我的收藏" :show-extra-icon="true" :extra-icon="gift-filled" link to="/pages/userInfo/myCollection/myCollection"></uni-list-item>
|
||
|
|
<uni-list-item title="常见问题" :show-extra-icon="true" :extra-icon="extraIcon1" link to="/pages/userInfo/question/question"></uni-list-item>
|
||
|
|
<uni-list-item title="联系我们" link to="/pages/userInfo/contactUs/contactUs"></uni-list-item>
|
||
|
|
<uni-list-item title="设置" link to="/pages/userInfo/setting/setting"></uni-list-item>
|
||
|
|
<uni-list-item title="分享" clickable @click="getLink()"></uni-list-item>
|
||
|
|
</uni-list>
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
getLink(){
|
||
|
|
uni.showModal({
|
||
|
|
content: '啦啦啦分享啦',
|
||
|
|
showCancel: false
|
||
|
|
});
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
|
||
|
|
</style>
|