39 lines
733 B
Vue
39 lines
733 B
Vue
<template>
|
|
<view class="content">
|
|
<view class="step_other_info">
|
|
<!-- url="/pages/componentsB/tag/tag" -->
|
|
<u-cell-group :border="false">
|
|
<u-cell v-for="(m,idx) in otherSteUpList" :key="idx" :title="m.title" isLink :border="false"
|
|
:titleStyle="m.titleStyle" size="large" :url="m.toPath">
|
|
</u-cell>
|
|
</u-cell-group>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
otherSteUpList: [
|
|
// {
|
|
// title: '同步微信昵称和头像',
|
|
// toPath: ''
|
|
// },
|
|
{
|
|
title: '常见问题',
|
|
toPath: '/pages/myInfo/problemList/index'
|
|
}
|
|
]
|
|
}
|
|
},
|
|
onShow(query) {
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.content {
|
|
padding: 0;
|
|
}
|
|
</style> |