2023-09-19 19:31:19 +08:00

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>