活动按钮状态流转

This commit is contained in:
2026-03-25 15:53:37 +08:00
commit 37346e790f
2762 changed files with 240282 additions and 0 deletions

View File

@@ -0,0 +1,104 @@
<!-- +----------------------------------------------------------------------
| 麦沃德科技赋能开发者助力商协会发展
+----------------------------------------------------------------------
| Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
+----------------------------------------------------------------------
| 沃德商协会系统并不是自由软件不加密并不代表开源未经许可不可自由转售和商用
+----------------------------------------------------------------------
| Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
+----------------------------------------------------------------------
| 常见问题-详情 开发者: 麦沃德科技-半夏
+---------------------------------------------------------------------- -->
<template>
<view class="container">
<!-- 标题栏 -->
<title-bar title="常见问题"></title-bar>
<!-- 内容区 -->
<view class="container-main" v-if="loadEnd">
<view class="main-box">
<view class="box-title">{{problemInfo.title}}</view>
<view class="box-content">
<mp-html :content="problemInfo.reply"></mp-html>
</view>
</view>
</view>
<!-- 底部导航 -->
<tab-bar></tab-bar>
</view>
</template>
<script>
export default {
data() {
return {
// 加载完成
loadEnd: false,
// 问题id
problemId: null,
// 问题详情
problemInfo: {},
}
},
onLoad(option) {
uni.showLoading({
title: "加载中"
})
this.problemId = option.id
this.getProblemInfo(() => {
this.loadEnd = true
uni.hideLoading()
})
},
methods: {
// 获取问题详情
getProblemInfo(fn) {
this.$util.request("mine.problem.details", {
id: this.problemId
}).then(res => {
if (fn) fn()
if (res.code == 1) {
this.problemInfo = res.data
} else {
uni.showToast({
title: res.msg,
icon: 'none'
})
}
}).catch(error => {
console.error('获取问题详情 ', error)
})
},
},
}
</script>
<style lang="scss">
.container {
.container-main {
padding: 32rpx;
.main-box {
padding: 32rpx;
border-radius: 10rpx;
background: #ffffff;
.box-title {
color: #5A5B6E;
font-size: 32rpx;
font-weight: 600;
line-height: 40rpx;
padding-bottom: 32rpx;
border-bottom: 1rpx solid rgba(0, 0, 0, 0.1);
}
.box-content {
margin-top: 32rpx;
color: #5A5B6E;
font-size: 28rpx;
line-height: 48rpx;
}
}
}
}
</style>

View File

@@ -0,0 +1,123 @@
<!-- +----------------------------------------------------------------------
| 麦沃德科技赋能开发者助力商协会发展
+----------------------------------------------------------------------
| Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
+----------------------------------------------------------------------
| 沃德商协会系统并不是自由软件不加密并不代表开源未经许可不可自由转售和商用
+----------------------------------------------------------------------
| Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
+----------------------------------------------------------------------
| 常见问题-列表 开发者: 麦沃德科技-半夏
+---------------------------------------------------------------------- -->
<template>
<view class="container">
<!-- 标题栏 -->
<title-bar title="常见问题"></title-bar>
<!-- 内容区 -->
<view class="container-main" v-if="loadEnd">
<view class="main-list" v-if="problemList.length">
<view class="list-item" v-for="(item, index) in problemList" :key="index" @click="toDetails(item.id)">
{{item.title}}
</view>
</view>
<empty top="30%" title="暂无相关内容~" v-else></empty>
</view>
<!-- 底部导航 -->
<tab-bar></tab-bar>
</view>
</template>
<script>
export default {
data() {
return {
// 加载完成
loadEnd: false,
// 分类查询参数
page: 1,
limit: 20,
hasMore: false,
// 问题列表
problemList: [],
}
},
onLoad() {
uni.showLoading({
title: "加载中"
})
this.getProblemList(() => {
uni.hideLoading()
this.loadEnd = true
})
},
onPullDownRefresh() {
this.page = 1
this.getProblemList(() => {
uni.stopPullDownRefresh()
})
},
onReachBottom() {
if (this.hasMore) {
this.page++
this.getProblemList()
}
},
methods: {
// 获取帮助列表
getProblemList(fn) {
this.$util.request("mine.problem.list", {
page: this.page,
limit: this.limit,
}).then(res => {
if (fn) fn()
if (res.code == 1) {
let list = res.data.data
this.hasMore = this.page < res.data.total / this.limit ? true : false
this.problemList = this.page == 1 ? list : [...this.problemList, ...list];
} else {
uni.showToast({
title: res.msg,
icon: 'none'
})
}
}).catch(error => {
console.error('获取帮助列表 ', error)
})
},
// 跳转详情页面
toDetails(id) {
this.$util.toPage({
mode: 1,
path: "/pages/mine/problem/details?id=" + id
})
},
}
}
</script>
<style lang="scss">
.container {
.container-main {
padding: 32rpx;
.main-list {
padding: 0 32rpx;
border-radius: 10rpx;
background: #ffffff;
.list-item {
color: #5A5B6E;
font-size: 28rpx;
line-height: 40rpx;
padding: 32rpx 0;
border-top: 1rpx solid rgba(0, 0, 0, 0.1);
&:first-child {
border-top: none;
}
}
}
}
}
</style>