deming/pageE/mine/MineHelp.vue

49 lines
892 B
Vue
Raw Normal View History

2020-06-01 16:51:11 +08:00
<template>
<view class="mine-help">
2020-06-02 11:42:13 +08:00
<view class="help-box">
2020-06-02 15:35:19 +08:00
<view v-for="(item, index) in helpList" :key="index" class="help-item" @click="toDetailsPage()">
2020-06-02 11:42:13 +08:00
<view>使用帮助</view>
<img src="../static/mine/21.png" />
</view>
2020-06-01 16:51:11 +08:00
</view>
</view>
</template>
<script>
export default {
data() {
return {
2020-06-02 11:42:13 +08:00
helpList: [1,1,1,1, 1, 1, 1]
2020-06-01 16:51:11 +08:00
}
2020-06-02 15:35:19 +08:00
},
methods: {
toDetailsPage() {
uni.navigateTo({
url: '/pageE/mine/HelpDetails'
});
}
},
2020-06-01 16:51:11 +08:00
}
</script>
<style lang="scss" scoped>
.mine-help {
2020-06-02 11:42:13 +08:00
min-height: 100vh;
background-color: #ECECEC;
.help-box {
.help-item {
display: flex;
align-items: center;
justify-content: space-between;
height: 98rpx;
border-top: 2rpx solid #EBEBEB;
background-color: #ffffff;
padding: 0 30rpx;
font-size: 30rpx;
color: rgba(51,51,51,1);
> img {
width: 14rpx;
height: 24rpx;
}
}
2020-06-01 16:51:11 +08:00
}
}
</style>