Browse Source

样式调整

master
parent
commit
037065ece5
  1. 32
      api/common/notic.js
  2. 124
      sub/owner/notic.vue

32
api/common/notic.js

@ -0,0 +1,32 @@
import request from '@/utils/request'
export const NoticApi = {
/**
* 获取标签数据
*/
getTabData: () => {
return request({
url: '/system/notify-message/typeCount',
method: 'GET',
})
},
/**
* 获取列表数据
*/
getListData: params => {
return request({
url: '/system/notify-message/page',
method: 'GET',
params
})
},
/**
* 已读
*/
readNotic: id => {
return request({
url: `/system/notify-message/update-read?ids=${id}`,
method: 'PUT',
})
}
}

124
sub/owner/notic.vue

@ -3,14 +3,16 @@
<!-- Tab 切换 --> <!-- Tab 切换 -->
<view class="tab-container"> <view class="tab-container">
<view <view
v-for="(tab, index) in tabs" v-for="tab in tabs"
:key="index" :key="tab.label"
class="tab-item" class="tab-item"
:class="{ active: currentTab === index }" :class="{ active: queryParams.templateId === tab.label }"
@tap="switchTab(index)" @tap="switchTab(tab.label)"
> >
<text>{{ tab.name }}</text> <text>
<text v-if="tab.count > 0" class="badge">{{ tab.count }}</text> {{ $dict.echoDicValue(dictMap.notfy_message_type, tab.label) }}
</text>
<text v-if="tab.value > 0" class="badge">{{ tab.value }}</text>
</view> </view>
</view> </view>
@ -26,13 +28,13 @@
<view <view
v-for="(item, index) in list" v-for="(item, index) in list"
:key="index" :key="index"
:class="['notice-item', !item.type ? 'is-read' : '']" :class="['notice-item', !item.readStatus ? 'is-read' : '']"
@tap="goDetail(item)" @tap="goDetail(item)"
> >
<view :class="['notice-icon', !item.type ? 'green' : '']"> <view :class="['notice-icon', !item.readStatus ? 'green' : '']">
<image <image
:src=" :src="
!item.type !item.readStatus
? '/static/images/owner/message.png' ? '/static/images/owner/message.png'
: '/static/images/owner/message-grey.png' : '/static/images/owner/message-grey.png'
" "
@ -40,28 +42,49 @@
></image> ></image>
</view> </view>
<view class="notice-content"> <view class="notice-content">
<view class="notice-title">{{ item.title }}</view> <view class="notice-title">
<view class="notice-time">{{ item.time }}</view> {{ item.templateParams.title }}
</view>
<view class="notice-time" v-if="item.templateParams.startTime">
{{
`${$util.formatDate(
item.templateParams.startTime,
'YYYY年M月D日'
)} -
${$util.formatDate(
item.templateParams.endTime,
'YYYY年M月D日'
)}`
}}
</view>
<view class="notice-time" v-else>
{{
`到期时间
${$util.formatDate(item.templateParams.endTime, 'YYYY年M月D日')}`
}}
</view>
</view> </view>
<view class="notice-arrow"> <view class="notice-arrow">
<text class="iconfont icon-right"></text> <text class="iconfont icon-right"></text>
</view> </view>
</view> </view>
<cs-emty v-if="list.length == 0"></cs-emty> <cs-emty v-if="list.length == 0" :marginTop="24"></cs-emty>
</scroll-view> </scroll-view>
</view> </view>
</template> </template>
<script> <script>
import { getDictBatchByType } from '@/api/system/dict.js'
import { NoticApi } from '@/api/common/notic.js'
export default { export default {
data() { data() {
return { return {
tabs: [ tabs: [],
{ name: '任务通知', count: 4 }, queryParams: {
{ name: '整改到期', count: 0 }, templateId: 0,
{ name: '资质逾期', count: 0 } pageSize: 6,
], pageNo: 1
currentTab: 0, },
list: [], list: [],
mock: [ mock: [
{ {
@ -93,62 +116,81 @@ export default {
type: 1 type: 1
} }
], ],
page: 1, dictMap: {},
isRefreshing: false, isRefreshing: false,
hasMore: true // hasMore: true //
} }
}, },
onLoad() { onLoad() {
this.getDict()
this.getTabber()
},
onShow() {
this.getList() this.getList()
}, },
methods: { methods: {
async getDict() {
const dict = await getDictBatchByType({
type: ['notfy_message_type'].join(',')
})
this.dictMap = {
...dict.data
}
},
async getTabber() {
const res = await NoticApi.getTabData()
this.tabs = res.data
this.queryParams.templateId = res.data[0].label
this.getList()
},
switchTab(index) { switchTab(index) {
if (this.currentTab === index) return if (this.queryParams.templateId === index) return
this.currentTab = index this.queryParams.templateId = index
this.page = 1 this.queryParams.pageNo = 1
this.list = [] this.list = []
this.getList() this.getList()
}, },
async getList() { async getList() {
if (this.currentTab == 0) { const res = await NoticApi.getListData(this.queryParams)
this.list = [...this.mock, ...this.mock] this.list = res.data.list
if (this.list.length == res.data.total) {
this.hasMore = false
} }
}, },
async loadMore() { async loadMore() {
if (!this.hasMore) return // if (!this.hasMore) return //
this.page++ this.queryParams.pageNo++
await this.getList() await this.getList()
}, },
async onRefresh() { async onRefresh() {
try { try {
this.isRefreshing = true this.isRefreshing = true
this.page = 1 this.queryParams.pageNo = 1
await this.getList() await this.getList()
} finally { } finally {
this.isRefreshing = false this.isRefreshing = false
} }
}, },
goDetail(item) { goDetail(item) {
// // //
// uni.navigateTo({ uni.navigateTo({
// url: `/pages/notice-detail/notice-detail?id=${item.id}`, url: item.templateParams.url,
// }); success() {
NoticApi.readNotic(item.id)
}
})
} }
} }
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.container {
height: 100vh;
display: flex;
flex-direction: column;
}
.tab-container { .tab-container {
display: flex; display: flex;
flex-flow: row now;
max-width: 100%;
overflow-x: scroll;
background: #fff; background: #fff;
padding: 24rpx 32rpx; padding: 24rpx 32rpx;
gap: 24rpx; gap: 24rpx;
@ -157,13 +199,10 @@ export default {
flex: 1; flex: 1;
text-align: center; text-align: center;
position: relative; position: relative;
height: 64rpx; padding: 16rpx 0;
line-height: 64rpx;
font-size: 28rpx;
color: #4b5675; color: #4b5675;
background: #f9f9f9; background: #f9f9f9;
border-radius: 240rpx; border-radius: 240rpx;
&.active { &.active {
color: #07c160; color: #07c160;
background: rgba(7, 193, 96, 0.1); background: rgba(7, 193, 96, 0.1);
@ -178,9 +217,8 @@ export default {
} }
.scroll-container { .scroll-container {
flex: 1;
box-sizing: border-box; box-sizing: border-box;
max-height: calc(100vh - 124rpx); height: calc(100vh - 124rpx);
padding: 0 24rpx; padding: 0 24rpx;
} }

Loading…
Cancel
Save