2021-12-16 16:04:21 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="AppServicePublic">
|
|
|
|
|
<div class="header-top">
|
|
|
|
|
<div>区域选择</div>
|
|
|
|
|
<AiAreaPicker v-model="areaId" :areaId="areaId" @select="areaSelect"></AiAreaPicker>
|
|
|
|
|
</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>
|
|
|
|
|
<div class="title">{{ item.createUserName }}</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex">
|
|
|
|
|
<span class="left">
|
|
|
|
|
<span class="garydiv">财务公开</span>
|
|
|
|
|
<span class="times">2021-12-16</span>
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<span class="right">
|
|
|
|
|
<span class="font">1111</span>
|
|
|
|
|
<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-16 16:04:21 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
...mapState(['user']),
|
|
|
|
|
|
|
|
|
|
loadmore() {
|
|
|
|
|
return this.pages <= this.current ? 'loading ' : 'nomore'
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
watch: {},
|
|
|
|
|
onLoad() {
|
|
|
|
|
this.areaId = this.user.areaId
|
|
|
|
|
this.getList()
|
|
|
|
|
},
|
|
|
|
|
mounted() {},
|
|
|
|
|
methods: {
|
|
|
|
|
getList() {
|
|
|
|
|
this.$http
|
|
|
|
|
.post('/app/appvisitvondolence/list', null, {
|
|
|
|
|
params: {
|
|
|
|
|
size: 6,
|
|
|
|
|
current: this.current,
|
|
|
|
|
areaId: this.areaId,
|
|
|
|
|
title: this.keyword,
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
.then((res) => {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
this.datas = this.current > 1 ? [...this.datas, ...res.data.records] : res.data.records
|
|
|
|
|
this.pages = res.data.pages
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
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('详情')
|
|
|
|
|
uni.navigateTo({ url: `./Detail?id=${item.id}` })
|
|
|
|
|
}
|
|
|
|
|
if (type == '2') {
|
|
|
|
|
console.log('编辑')
|
|
|
|
|
uni.navigateTo({ url: `./Add?id=${item.id}` })
|
|
|
|
|
}
|
|
|
|
|
if (type == null) {
|
|
|
|
|
console.log('添加')
|
|
|
|
|
uni.navigateTo({ url: `./Add` })
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
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() {
|
|
|
|
|
this.$http.post(`/app/appvisitvondolence/delete?ids=${this.deletId}`).then((res) => {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
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%;
|
|
|
|
|
}
|
|
|
|
|
.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;
|
|
|
|
|
.title {
|
|
|
|
|
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>
|