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

36 lines
779 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="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: `/pages/myInfo/problemDetail/index?problemStatus=1`
},
{
title: '解锁得章节可以永久免费看吗?',
toPath: `/pages/myInfo/problemDetail/index?problemStatus=2`
}
]
}
}
}
</script>
<style lang="scss">
.content {
padding: 0;
}
</style>