talk_appAmin/pages/activity/index.vue

327 lines
8.1 KiB
Vue
Raw Normal View History

<template class="content">
<!-- 顶部导航栏 -->
<up-navbar leftText="" title="" :placeholder="true" :safeAreaInsetTop="true" :bgColor="bgColor">
<template class="img1BOX" #left>
<view class="leftinfo">
<span class="lefttext">时间</span>
<image
style=" margin-left: 10rpx; transform: rotate(-45deg); /* 旋转45度 */ width: 15rpx; height: 15rpx;"
:src="tu21"></image>
</view>
</template>
<template #center>
<div class="navbarcenter"><span>热门活动</span></div>
</template>
</up-navbar>
<view class="bgc"></view>
<!-- 搜索栏 -->
<view class="sousuoBox1 flex alignCenter justifyBetween">
2024-06-02 11:10:25 +08:00
<view class="sousuoBox flex alignCenter justifyBetween" @click="toESearch">
<view class="souBOx flex alignCenter">
<image :src="tu22" class="img3"></image>
<span class="shuruText">电音节节日活动</span>
</view>
</view>
</view>
<!-- tabs标签 -->
<view class="tabsinfo flex alignCenter justifyCenter">
2024-06-08 14:36:51 +08:00
<up-tabs :list="list4" lineWidth="24" lineHeight="4" @click="tabsClick" lineColor="#B3D7FF" :activeStyle="{
color: '#000000',
fontSize: '30rpx',
transform: 'scale(1.05)'
}" :inactiveStyle="{
color: '#999999',
fontSize: '28rpx',
transform: 'scale(1.05)'
}" itemStyle=" width: 185rpx; padding-bottom:18rpx;">
</up-tabs>
</view>
2024-06-02 19:09:14 +08:00
<!-- 列表信息 -->
2024-06-05 19:52:43 +08:00
<view>
2024-06-02 19:09:14 +08:00
<ActiInfoList v-model="actiInfoList" @scrolltolower="scrolltolower"></ActiInfoList>
</view>
2024-06-05 19:52:43 +08:00
<view>
</view>
</template>
<script setup>
2024-06-05 16:57:58 +08:00
import { listInfo, getInfo, delInfo, addInfo, updateInfo } from "@/api/activityInfo/info";
2024-06-02 11:10:25 +08:00
import ActiInfoList from '../common/activityList/index.vue'
import { onShow, onLoad ,onPullDownRefresh} from '@dcloudio/uni-app'
2024-06-02 19:09:14 +08:00
import { getDicts } from "@/api/system/dict/data"
2024-06-05 19:52:43 +08:00
import { ref, reactive, getCurrentInstance, toRefs } from 'vue'
import { useStore } from 'vuex';
import { func } from "uview-plus/libs/function/test";
const { proxy } = getCurrentInstance();
2024-06-02 19:09:14 +08:00
const iconConfig = proxy.iconConfig;
2024-06-01 12:23:29 +08:00
const tu21 = iconConfig.tu21;
const tu22 = iconConfig.tu22;
2024-06-01 15:04:14 +08:00
const tu51 = iconConfig.tu51;
const tu52 = iconConfig.tu52;
const tu53 = iconConfig.tu53;
2024-06-05 16:57:58 +08:00
const total = ref()
const imgInfo = ref("")
const search = ref("电音节节日活动")
// 创建响应式数据 ref('#001f3f')
const bgColor = ref('rgba(170, 0, 0, 0)');
const store = useStore()
2024-06-02 19:09:14 +08:00
const list4 = reactive([
2024-06-08 14:36:51 +08:00
{ name: '全部',state:9 },
{ name: '未开始',state:1 },
{ name: '进行中',state:2 },
{ name: '已结束',state:0 }
2024-06-02 19:09:14 +08:00
]);
2024-06-05 16:57:58 +08:00
const actiInfoList = ref([]);
const data = reactive({
2024-06-05 19:52:43 +08:00
form: {},
queryParams: {
pageNum: 1,
pageSize: 5,
launchUserId: null,
accendCondition: null,
acName: null,
acTitle: null,
acContent: null,
startTime: null,
endTime: null,
state: null,
addres: null,
longitude: null,
latitude: null,
file: null,
elroll: null,
acQrcode: null,
tab: null,
readCount: null,
transmitCount: null,
likeCount: null,
commentCount: null,
favoriteCount: null,
postTop: null,
type: null,
anonymity: null,
auditor: null,
auditStatus: null,
auditTime: null,
auditAdvice: null,
cut: null,
},
rules: {
auditStatus: [
{ required: true, message: "状态0正常1待脱敏 2待审核 3脱敏未通过 4 审核未通过 5草稿不能为空", trigger: "change" }
],
}
2024-06-05 16:57:58 +08:00
});
const { queryParams, form, rules } = toRefs(data);
// 表单重置
function reset() {
2024-06-05 19:52:43 +08:00
form.value = {
id: null,
launchUserId: null,
accendCondition: null,
acName: null,
acTitle: null,
acContent: null,
startTime: null,
endTime: null,
state: null,
addres: null,
longitude: null,
latitude: null,
file: null,
elroll: null,
acQrcode: null,
tab: null,
readCount: null,
transmitCount: null,
likeCount: null,
commentCount: null,
favoriteCount: null,
postTop: null,
type: null,
anonymity: null,
createTime: null,
auditor: null,
auditStatus: null,
auditTime: null,
auditAdvice: null,
cut: null,
delFlag: null
};
proxy.resetForm("infoRef");
2024-06-05 16:57:58 +08:00
}
// 下拉刷新
onPullDownRefresh((options) => {
console.log("下拉刷新,",options);
getList();
})
2024-06-08 14:36:51 +08:00
//tabs
const tabsClick =(e) =>{
if(e.state == 9){
queryParams.value.state = null;
}else{
queryParams.value.state = e.state;
}
getList();
}
2024-06-05 16:57:58 +08:00
/** 查询活动详情列表 */
function getList() {
2024-06-05 19:52:43 +08:00
queryParams.value.params = {};
queryParams.value.pageNum = 1
queryParams.value.pageSize = 5
2024-06-05 19:52:43 +08:00
listInfo(queryParams.value).then(response => {
actiInfoList.value = response.rows;
response.rows.forEach(item => {
actiInfoList.value.push(item)
})
total.value = response.total;
});
2024-06-05 16:57:58 +08:00
}
onLoad((options) => {
2024-06-05 16:57:58 +08:00
getList();
})
onShow(() => {
2024-06-02 19:09:14 +08:00
console.log('Page onShow')
})
2024-06-05 19:52:43 +08:00
// 在data中添加isLoading标志
const isLoading = ref(false);
const scrolltolower = async () => {
// 检查是否还有更多数据可以加载
if (queryParams.value.pageNum * queryParams.value.pageSize < total.value) {
// 防止在数据加载时重复触发
if (isLoading.value) return;
isLoading.value = true;
queryParams.value.pageNum += 1;
try {
const response = await listInfo(queryParams.value);
// 使用Array.prototype.push.apply将新数据追加到actiInfoList中
Array.prototype.push.apply(actiInfoList.value, response.rows);
console.log(actiInfoList.value);
} catch (error) {
console.error("加载更多数据时发生错误:", error);
} finally {
isLoading.value = false;
}
} else {
// 可以在这里处理没有更多数据的情况,例如显示提示信息
console.log("没有更多数据了");
}
};
2024-06-05 16:57:58 +08:00
2024-06-02 19:09:14 +08:00
function toESearch() {
2024-06-02 11:10:25 +08:00
console.log("toESearch");
proxy.$tab.navigateTo('/pages/search/activitySearch')
}
2024-06-01 15:04:14 +08:00
</script>
<style lang="scss">
2024-06-08 17:06:47 +08:00
page{
background-color: #FBFBFB;
}
2024-06-02 11:10:25 +08:00
2024-06-02 19:09:14 +08:00
.leftinfo {
display: flex;
align-items: flex-end;
2024-06-02 19:09:14 +08:00
}
.content {
position: relative;
.img1BOX {
padding-left: 32rpx;
display: flex;
align-content: center;
2024-06-02 19:09:14 +08:00
.lefttext {
font-weight: 400;
width: 58rpx;
height: 30rpx;
font-size: 30rpx;
text-align: left;
color: #000000 100%;
}
}
}
2024-06-02 19:09:14 +08:00
.img2BOX {
display: flex;
align-items: center;
}
2024-06-02 19:09:14 +08:00
.navbarcenter {
font-weight: 400;
2024-06-02 19:09:14 +08:00
width: 146rpx;
height: 36rpx;
font-size: 36rpx;
text-align: left;
color: #000000 100%;
display: flex;
align-items: center;
}
2024-06-02 19:09:14 +08:00
.bgc {
2024-06-09 15:37:59 +08:00
width: 750rpx;
height: 500rpx;
background: linear-gradient(
180deg, /* 渐变方向,从上到下 */
#C9F6F5 0%, /* 起始颜色 */
#F8F8E2 80%, /* 中间颜色 */
#FBFBFB 100% /* 结束颜色 */
);
position: fixed;
top: 0rpx;
left: 0rpx;
}
.sousuoBox1 {
margin: 10rpx 32rpx;
}
.sousuoBox {
width: 684rpx;
height: 68rpx;
border: #B3D7FF solid 2rpx;
border-radius: 30rpx 30rpx 30rpx 30rpx;
background: #ffffff80;
z-index: 1;
}
.souBOx {
width: 684rpx;
margin-left: 32rpx;
}
2024-06-02 19:09:14 +08:00
.sousuoBox .souBOx .shuruText {
2024-06-01 15:04:14 +08:00
margin-left: 20rpx;
font-weight: 400;
font-size: 28rpx;
2024-06-02 19:09:14 +08:00
color: #999999 !important;
}
2024-06-02 19:09:14 +08:00
.img3 {
width: 38rpx;
height: 38rpx;
}
2024-06-02 19:09:14 +08:00
.tabsinfo {
2024-06-02 19:09:14 +08:00
height: 80rpx;
margin: 0 32rpx;
}
</style>