2021-12-16 16:04:21 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="AppServicePublic">
|
2021-12-23 15:09:25 +08:00
|
|
|
<AiTopFixed v-if="tabs.length">
|
|
|
|
|
<div class="tab-select" @click="tabClick(item)">
|
|
|
|
|
<div class="item" :class="tabIndex == index ? 'active' : ''" v-for="(item, index) in tabs" :key="index" @click="tabClick(item)">{{item.categoryName}}<span></span></div>
|
|
|
|
|
</div>
|
|
|
|
|
</AiTopFixed>
|
2021-12-16 16:04:21 +08:00
|
|
|
<div class="header-top">
|
|
|
|
|
<div>区域选择</div>
|
2021-12-23 15:09:25 +08:00
|
|
|
<AiAreaPicker v-model="areaId" :areaId="user.areaId" @select="areaSelect"></AiAreaPicker>
|
2021-12-16 16:04:21 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<u-search class="serach_content" placeholder="请输入公开标题" :show-action="false" v-model="keyword" @clear="clearSearch" @search="search"></u-search>
|
|
|
|
|
|
|
|
|
|
<template v-if="datas.length > 0">
|
2021-12-16 17:13:18 +08:00
|
|
|
<AiCard v-for="(item, i) in datas" :key="i" @click.native="toAdd(item, 1)">
|
|
|
|
|
<template #custom>
|
2021-12-23 15:09:25 +08:00
|
|
|
<div class="titles">{{ item.title }}</div>
|
2021-12-16 17:13:18 +08:00
|
|
|
|
|
|
|
|
<div class="flex">
|
|
|
|
|
<span class="left">
|
2021-12-23 15:09:25 +08:00
|
|
|
<span class="garydiv" v-if="item.categoryName">{{item.categoryName}}</span>
|
|
|
|
|
<span class="times">{{item.createTime.substring(0, 10)}}</span>
|
2021-12-16 17:13:18 +08:00
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<span class="right">
|
2021-12-23 15:09:25 +08:00
|
|
|
<span class="font">{{item.viewCount}}</span>
|
2021-12-16 17:13:18 +08:00
|
|
|
<span>人看过</span>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="imgs">
|
|
|
|
|
<!-- <img :src="items.url" alt="" v-for="(items, i) in item.images" :key="i" @click.stop="previewImage(item.images, items.url)" /> -->
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<template #menu>
|
|
|
|
|
<div class="menu" @tap.stop="toAdd(item, 2)">编辑</div>
|
|
|
|
|
<div class="menu" @tap.stop="toDetele(item)">删除</div>
|
|
|
|
|
</template>
|
|
|
|
|
</AiCard>
|
2021-12-16 16:04:21 +08:00
|
|
|
|
|
|
|
|
<u-loadmore :status="loadmore" color="#999" font-size="24" margin-top="32" margin-bottom="80" />
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<AiEmpty description="暂无数据" v-else></AiEmpty>
|
|
|
|
|
|
|
|
|
|
<AiFixedBtn>
|
|
|
|
|
<div class="addBtn iconfont iconfont-iconfangda" @tap.stop="toAdd()" />
|
|
|
|
|
</AiFixedBtn>
|
2021-12-16 17:13:18 +08:00
|
|
|
|
|
|
|
|
<u-modal v-model="deletShow" content="您确认要删除该条信息吗?" :show-cancel-button="true" :mask-close-able="true" :show-title="false" @confirm="delet"></u-modal>
|
2021-12-16 16:04:21 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { mapState } from 'vuex'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'AppServicePublic',
|
|
|
|
|
appName: '三务公开',
|
|
|
|
|
components: {},
|
|
|
|
|
props: {},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
datas: [],
|
|
|
|
|
keyword: '',
|
|
|
|
|
areaId: '',
|
|
|
|
|
current: 1,
|
|
|
|
|
size: 10,
|
|
|
|
|
pages: 0,
|
2021-12-16 17:13:18 +08:00
|
|
|
deletShow: false,
|
|
|
|
|
deletId: '',
|
2021-12-23 15:09:25 +08:00
|
|
|
moduleId: '',
|
|
|
|
|
listName: '',
|
|
|
|
|
tabs: [],
|
|
|
|
|
tabIndex: 0,
|
|
|
|
|
categoryId: ''
|
2021-12-16 16:04:21 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
...mapState(['user']),
|
|
|
|
|
|
|
|
|
|
loadmore() {
|
|
|
|
|
return this.pages <= this.current ? 'loading ' : 'nomore'
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
watch: {},
|
2021-12-23 11:03:06 +08:00
|
|
|
onLoad(o) {
|
2021-12-16 16:04:21 +08:00
|
|
|
this.areaId = this.user.areaId
|
2021-12-23 11:03:06 +08:00
|
|
|
this.moduleId = o.moduleId
|
2021-12-23 15:09:25 +08:00
|
|
|
this.listName = o.listName
|
|
|
|
|
this.getType()
|
2021-12-16 16:04:21 +08:00
|
|
|
this.getList()
|
2021-12-23 15:49:49 +08:00
|
|
|
uni.$on('update' , () => {
|
|
|
|
|
this.getList()
|
|
|
|
|
})
|
2021-12-16 16:04:21 +08:00
|
|
|
},
|
|
|
|
|
methods: {
|
2021-12-23 15:09:25 +08:00
|
|
|
getType() {
|
|
|
|
|
this.$http.post(`/app/appcontentmoduleinfo/listByName?names=${this.listName}`).then((res) => {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
if(res.data && res.data[0].categoryList.length) {
|
|
|
|
|
var all = [{
|
|
|
|
|
categoryName: '全部',
|
|
|
|
|
id: '',
|
|
|
|
|
showIndex: 0,
|
|
|
|
|
}]
|
|
|
|
|
this.tabs = [...all, ... res.data[0].categoryList]
|
2021-12-16 16:04:21 +08:00
|
|
|
}
|
2021-12-23 15:09:25 +08:00
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
tabClick(row) {
|
|
|
|
|
this.tabIndex = row.showIndex
|
|
|
|
|
this.categoryId = row.id
|
|
|
|
|
},
|
|
|
|
|
getList() {
|
|
|
|
|
this.$http.post('/app/appcontentinfo/list', null, {
|
|
|
|
|
params: {
|
|
|
|
|
size: 6,
|
|
|
|
|
current: this.current,
|
|
|
|
|
areaId: this.areaId,
|
|
|
|
|
title: this.keyword,
|
|
|
|
|
moduleId: this.moduleId,
|
|
|
|
|
categoryId: this.categoryId
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
.then((res) => {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
this.datas = this.current > 1 ? [...this.datas, ...res.data.records] : res.data.records
|
|
|
|
|
this.pages = res.data.pages
|
|
|
|
|
}
|
|
|
|
|
})
|
2021-12-16 16:04:21 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
areaSelect(e) {
|
2021-12-16 17:13:18 +08:00
|
|
|
this.areaId = e.id
|
2021-12-16 16:04:21 +08:00
|
|
|
this.getList()
|
|
|
|
|
},
|
|
|
|
|
|
2021-12-16 17:13:18 +08:00
|
|
|
toAdd(item, type) {
|
|
|
|
|
if (type == '1') {
|
|
|
|
|
console.log('详情')
|
2021-12-23 15:09:25 +08:00
|
|
|
uni.navigateTo({ url: `./Detail?id=${item.id}&listName=${this.listName}` })
|
2021-12-16 17:13:18 +08:00
|
|
|
}
|
|
|
|
|
if (type == '2') {
|
|
|
|
|
console.log('编辑')
|
2021-12-23 15:09:25 +08:00
|
|
|
uni.navigateTo({ url: `./Add?id=${item.id}&moduleId=${this.moduleId}&listName=${this.listName}` })
|
2021-12-16 17:13:18 +08:00
|
|
|
}
|
|
|
|
|
if (type == null) {
|
|
|
|
|
console.log('添加')
|
2021-12-23 15:09:25 +08:00
|
|
|
uni.navigateTo({ url: `./Add?moduleId=${this.moduleId}&listName=${this.listName}` })
|
2021-12-16 17:13:18 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
toDetele(item) {
|
|
|
|
|
this.deletShow = true
|
|
|
|
|
this.deletId = item.id
|
2021-12-16 16:04:21 +08:00
|
|
|
},
|
|
|
|
|
|
2021-12-16 17:13:18 +08:00
|
|
|
delet() {
|
2021-12-23 15:49:49 +08:00
|
|
|
this.$http.post(`/app/appcontentinfo/delete?ids=${this.deletId}`).then((res) => {
|
2021-12-16 17:13:18 +08:00
|
|
|
if (res.code == 0) {
|
2021-12-23 15:49:49 +08:00
|
|
|
this.current = 1
|
2021-12-16 17:13:18 +08:00
|
|
|
this.$u.toast('删除成功!')
|
|
|
|
|
this.getList()
|
|
|
|
|
}
|
|
|
|
|
})
|
2021-12-16 16:04:21 +08:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
onReachBottom() {
|
|
|
|
|
this.current = this.current + 1
|
|
|
|
|
this.getList()
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
uni-page-body {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2021-12-23 15:09:25 +08:00
|
|
|
::v-deep .content{
|
|
|
|
|
padding: 0!important;
|
|
|
|
|
}
|
|
|
|
|
.tab-select{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 96px;
|
|
|
|
|
line-height: 96px;
|
|
|
|
|
background: #3975C6;
|
|
|
|
|
display: flex;
|
|
|
|
|
.item{
|
|
|
|
|
flex: 1;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
|
|
|
color: #CDDCF0;
|
|
|
|
|
}
|
|
|
|
|
.active{
|
|
|
|
|
font-family: PingFangSC-Medium, PingFang SC;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
position: relative;
|
|
|
|
|
color: #fff;
|
|
|
|
|
span{
|
|
|
|
|
width: 48px;
|
|
|
|
|
height: 4px;
|
|
|
|
|
background: #FFF;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 14px;
|
|
|
|
|
left: 50%;
|
|
|
|
|
margin-left: -24px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.iconfont-iconMore{
|
2021-12-23 15:49:49 +08:00
|
|
|
// margin-top: 8px;
|
2021-12-23 15:09:25 +08:00
|
|
|
}
|
2021-12-16 16:04:21 +08:00
|
|
|
.AppServicePublic {
|
|
|
|
|
height: 100%;
|
2021-12-16 17:31:50 +08:00
|
|
|
|
2021-12-16 16:04:21 +08:00
|
|
|
.header-top {
|
|
|
|
|
display: flex;
|
|
|
|
|
background: #fff;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 10px 30px;
|
|
|
|
|
border-bottom: 1px solid #d8dde6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.u-search {
|
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 20px 30px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-16 17:13:18 +08:00
|
|
|
::v-deep .AiCard {
|
|
|
|
|
background: #f3f6f9;
|
|
|
|
|
.start {
|
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 32px;
|
|
|
|
|
border-radius: 16px;
|
2021-12-17 14:54:51 +08:00
|
|
|
.titles {
|
2021-12-16 17:13:18 +08:00
|
|
|
font-size: 32px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #333333;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
.flex {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
.left {
|
|
|
|
|
.garydiv {
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
color: #999999;
|
|
|
|
|
background: #eeeeee;
|
|
|
|
|
border-radius: 24px;
|
|
|
|
|
padding: 4px 16px;
|
2021-12-16 16:04:21 +08:00
|
|
|
}
|
2021-12-16 17:13:18 +08:00
|
|
|
.times {
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
color: #999999;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right {
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
color: #999;
|
|
|
|
|
.font {
|
|
|
|
|
color: #4181ff;
|
2021-12-16 16:04:21 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-16 17:13:18 +08:00
|
|
|
.mask {
|
|
|
|
|
.moreMenu {
|
|
|
|
|
.menu {
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 80px;
|
|
|
|
|
width: 192px;
|
|
|
|
|
height: 80px;
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-16 16:04:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.AiFixedBtn {
|
|
|
|
|
.movableArea {
|
|
|
|
|
.addBtn {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
width: 96px;
|
|
|
|
|
height: 96px;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
background: $uni-color-primary;
|
|
|
|
|
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
|
|
|
|
|
font-size: 48px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|