1. 新增:微信小程序端新增微信手机号登录功能(必须为企业认证小程序) 2. 新增:加入动态更新常见问题 3. 新增:新增小程序分享功能 4. 新增:小程序新增第一次登录需要修改密码 5. 新增:新增接口权限控制 6. 新增:用户新增is_staff用来判断是否为工作人员 7. 新增:软删除新增is_delete字段来判断,delete_datetime当前主要来记录时间 8. 更新:部分接口删除功能已更新,需要试用软删除的才会试用软删除 9. 更新:更新系统配置缓存功能 10. 更新:接口认证依赖项更新 11. 更新:获取系统基础配置信息与用户协议与隐私协议更新 12. 优化:优化接口与数据库操作
84 lines
1.6 KiB
Vue
84 lines
1.6 KiB
Vue
<template>
|
|
<view class="help-container">
|
|
<view v-for="(item, findex) in list" :key="findex" :title="item.name" class="list-title">
|
|
<view class="text-title">
|
|
<view>{{ item.name }}</view>
|
|
</view>
|
|
<view class="childList">
|
|
<view v-for="(issue, zindex) in item.issues" :key="zindex" class="question" hover-class="hover"
|
|
@click="handleText(issue)">
|
|
<view class="text-item">{{ issue.title }}</view>
|
|
<view class="line" v-if="zindex !== item.issues.length - 1"></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { getIssueCategoryList } from '@/common/request/api/vadmin/help/issue.js'
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
list: []
|
|
}
|
|
},
|
|
onLoad() {
|
|
getIssueCategoryList().then(res => {
|
|
this.list = res.data
|
|
})
|
|
},
|
|
methods: {
|
|
handleText(item) {
|
|
this.$tab.navigateTo(`/pages/mine/help/issue/info?id=${item.id}`)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background-color: #f8f8f8;
|
|
}
|
|
|
|
.help-container {
|
|
margin-bottom: 100rpx;
|
|
padding: 30rpx;
|
|
}
|
|
|
|
.list-title {
|
|
margin-bottom: 30rpx;
|
|
}
|
|
|
|
.childList {
|
|
background: #ffffff;
|
|
box-shadow: 0px 0px 10rpx rgba(193, 193, 193, 0.2);
|
|
border-radius: 16rpx;
|
|
margin-top: 10rpx;
|
|
}
|
|
|
|
.line {
|
|
width: 100%;
|
|
height: 1rpx;
|
|
background-color: #F5F5F5;
|
|
}
|
|
|
|
.text-title {
|
|
color: #303133;
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
margin-left: 10rpx;
|
|
}
|
|
|
|
.text-item {
|
|
font-size: 28rpx;
|
|
padding: 24rpx;
|
|
}
|
|
|
|
.question {
|
|
color: #606266;
|
|
font-size: 28rpx;
|
|
}
|
|
</style>
|