dl_uniapp/pages/index.vue

167 lines
3.9 KiB
Vue
Raw Normal View History

2025-03-18 17:41:45 +08:00
<template>
2025-03-21 17:57:53 +08:00
<view class="content">
<!-- 主体区域 -->
2025-03-31 14:31:41 +08:00
<view class="content-body">
2025-03-21 17:57:53 +08:00
<!-- 通告列表页 -->
2025-04-10 14:41:14 +08:00
<notice-index v-if="'home'==menuCode"></notice-index>
2025-04-11 15:08:25 +08:00
<mine-index :key="nowUserType" :nowUserType="nowUserType" v-if="'my'==menuCode"
@refreshUserType="refreshUserType()"></mine-index>
2025-04-10 14:41:14 +08:00
<subscribe v-if="'dingyue'==menuCode"></subscribe>
<my-notice v-if="'myNotice'==menuCode && '02'==nowUserType"></my-notice>
<my-notice-tg v-if="'myNotice'==menuCode && '01'==nowUserType"></my-notice-tg>
2025-03-21 17:57:53 +08:00
</view>
2025-04-11 15:08:25 +08:00
<tabBarVue :menuCode="menuCode" :nowUserType="nowUserType" ref="tarBar" @changeMenu="changeMenu"></tabBarVue>
2025-03-21 17:57:53 +08:00
</view>
2025-03-18 17:41:45 +08:00
</template>
<script>
2025-04-07 13:53:10 +08:00
import {
changeUserType,
getUserType,
formatNumberWithUnits,
calculateTimeDifference
} from '@/utils/common.js'
2025-03-21 17:57:53 +08:00
import tabBarVue from '@/components/tabbar/tabBar.vue'
2025-04-02 11:34:12 +08:00
import noticeIndex from '@/pages/components/notice-index.vue'
import subscribe from '@/pages/components/subscribe.vue'
import mineIndex from '@/pages/mine/mine-index.vue'
2025-04-03 16:46:51 +08:00
import myNotice from '@/pages/components/my-notice.vue'
2025-04-10 14:41:14 +08:00
import myNoticeTg from '@/pages/components/my-notice-tg.vue'
2025-04-08 11:07:05 +08:00
import {
getSiteConfig
} from '@/api/system/config.js'
import constant from '@/utils/constant'
import {
setStrData
} from '@/utils/auth.js'
2025-03-21 17:57:53 +08:00
export default {
2025-03-31 14:31:41 +08:00
components: {
2025-03-21 17:57:53 +08:00
tabBarVue,
noticeIndex,
2025-04-02 11:34:12 +08:00
subscribe,
2025-04-03 16:46:51 +08:00
mineIndex,
2025-04-10 14:41:14 +08:00
myNotice,
myNoticeTg
2025-03-21 17:57:53 +08:00
},
data() {
return {
2025-04-07 13:53:10 +08:00
//当前用户类型
nowUserType: null,
2025-03-31 14:31:41 +08:00
menus: ['全部', '最新', '高奖励', '急招', '品牌置换'],
2025-03-21 17:57:53 +08:00
menuIndex: 0,
2025-03-31 14:31:41 +08:00
dataList: ['1', '2', '2', '2'],
2025-03-21 17:57:53 +08:00
queryParams: {
pageNo: 1,
pageSize: 10,
},
total: 0,
//下来刷新状态
isTriggered: false,
2025-04-02 18:34:15 +08:00
menuCode: "home",
2025-03-21 17:57:53 +08:00
}
},
2025-04-10 14:41:14 +08:00
watch: {
nowUserType(newVal, oldVal) {
console.log(newVal, "newVal")
console.log(oldVal, "oldVal")
this.nowUserType = newVal;
},
},
mounted() {
2025-04-11 15:08:25 +08:00
this.refreshUserType()
2025-04-10 14:41:14 +08:00
},
onShow() {
2025-04-11 15:08:25 +08:00
this.refreshUserType()
2025-04-10 14:41:14 +08:00
},
2025-03-21 17:57:53 +08:00
onLoad: function() {
2025-04-08 11:07:05 +08:00
this.selectSiteConfig("platform_tel")
2025-03-21 17:57:53 +08:00
},
methods: {
2025-04-11 15:08:25 +08:00
/**
* 重新获取当前角色
*/
refreshUserType() {
this.nowUserType = getUserType()
},
2025-04-07 13:53:10 +08:00
updateParams(newVal) {
this.nowUserType = newVal;
},
2025-03-21 17:57:53 +08:00
itemClick(index, item) {
this.menuIndex = index
},
/**
* 菜单切换
* @param {Object} code
*/
2025-03-31 14:31:41 +08:00
changeMenu(code) {
2025-04-10 14:41:14 +08:00
this.nowUserType = getUserType()
2025-04-11 15:08:25 +08:00
if ("fabu" == code) {
this.$tab.navigateTo('/pages/notice/public-notice')
2025-04-11 15:18:48 +08:00
} else {
this.menuCode = code
2025-04-11 15:08:25 +08:00
}
2025-03-21 17:57:53 +08:00
},
/**
* 上滑加载数据
*/
onReachBottomCus() {
//判断 如果页码*页容量大于等于总条数,提示该页数据加载完毕
if (this.queryParams.pageNo * this.queryParams.pageSize >= this.total) {
uni.$u.toast('没有更多数据了')
return
}
//页码+1,调用获取数据的方法获取第二页数据
this.queryParams.pageNo++
},
/**
* 下拉刷新数据
*/
onRefresherrefresh() {
this.isTriggered = true
this.queryParams.pageNo = 1
this.total = 0
},
2025-04-08 11:07:05 +08:00
/**
* 查询平台配置
*/
selectSiteConfig(code) {
getSiteConfig({
code: code
}).then(res => {
let jsonArray = JSON.parse(res.data)
jsonArray.map((item) => {
if (constant.customer_service == item.name) {
setStrData(constant.customer_service, item.value)
} else if (constant.wechat_img == item.name) {
setStrData(constant.wechat_img, item.value)
}
})
}).catch((e) => {
uni.showToast({
icon: 'error',
duration: 2000,
title: e
});
})
}
2025-03-21 17:57:53 +08:00
}
}
</script>
2025-03-18 17:41:45 +08:00
2025-03-21 17:57:53 +08:00
<style lang="scss">
.content {
width: 100%;
color: #363636;
2025-03-31 14:31:41 +08:00
background-color: #F6F6F6;
2025-03-21 17:57:53 +08:00
font-size: 38rpx;
2025-04-02 18:34:15 +08:00
height: calc(100vh - var(--window-bottom) - 117rpx);
2025-03-31 14:31:41 +08:00
}
.content-body {
width: 100%;
2025-04-02 18:34:15 +08:00
height: 100%;
2025-03-31 14:31:41 +08:00
background-color: white;
2025-04-02 18:34:15 +08:00
// padding-bottom: calc(var(--window-bottom) + 127rpx);
2025-03-21 17:57:53 +08:00
}
2025-03-31 14:31:41 +08:00
</style>