调整村务公开
This commit is contained in:
33
project/oms/apps/AppArticles/AppArticles.vue
Normal file
33
project/oms/apps/AppArticles/AppArticles.vue
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
<template>
|
||||||
|
<section class="AppArticles">
|
||||||
|
<component :is="currentComponent" :instance="instance" :dict="dict" :permissions="permissions"/>
|
||||||
|
</section>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Add from "./components/Add";
|
||||||
|
import Detail from "./components/Detail";
|
||||||
|
import Event from "./components/Event";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "AppArticles",
|
||||||
|
label: "村务公开(运营版)",
|
||||||
|
components: {Event, Detail, Add},
|
||||||
|
props: {
|
||||||
|
instance: Function,
|
||||||
|
dict: Object,
|
||||||
|
permissions: Function
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
currentComponent() {
|
||||||
|
return this.$route.hash == "#add" ? Add :
|
||||||
|
!!this.$route.query?.id ? Detail : Event
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.AppArticles {
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -54,7 +54,6 @@ export default {
|
|||||||
|
|
||||||
props: {
|
props: {
|
||||||
dict: Object,
|
dict: Object,
|
||||||
params: Object,
|
|
||||||
instance: Function,
|
instance: Function,
|
||||||
areaId: String
|
areaId: String
|
||||||
},
|
},
|
||||||
@@ -78,7 +77,10 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
computed: {
|
||||||
...mapState(['user'])
|
...mapState(['user']),
|
||||||
|
params() {
|
||||||
|
return this.$route.query
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
@@ -89,7 +91,7 @@ export default {
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onBack() {
|
onBack() {
|
||||||
this.cancel()
|
this.$router.push({})
|
||||||
},
|
},
|
||||||
|
|
||||||
getInfo() {
|
getInfo() {
|
||||||
@@ -124,13 +126,6 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
cancel(isRefresh) {
|
|
||||||
this.$emit('change', {
|
|
||||||
type: 'list',
|
|
||||||
isRefresh: !!isRefresh
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -22,12 +22,10 @@
|
|||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'detail',
|
name: 'detail',
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
instance: Function,
|
instance: Function,
|
||||||
dict: Object,
|
dict: Object,
|
||||||
permissions: Function,
|
permissions: Function,
|
||||||
params: Object
|
|
||||||
},
|
},
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
@@ -35,7 +33,11 @@
|
|||||||
info: {}
|
info: {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
computed: {
|
||||||
|
params() {
|
||||||
|
return this.$route.query
|
||||||
|
}
|
||||||
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getInfo()
|
this.getInfo()
|
||||||
},
|
},
|
||||||
@@ -43,7 +45,7 @@
|
|||||||
methods: {
|
methods: {
|
||||||
getInfo() {
|
getInfo() {
|
||||||
this.instance.post(`/appvillageinfo/queryDetailById?id=${this.params.id}`).then(res => {
|
this.instance.post(`/appvillageinfo/queryDetailById?id=${this.params.id}`).then(res => {
|
||||||
if (res.code === 0) {
|
if (res?.data) {
|
||||||
this.info = res.data
|
this.info = res.data
|
||||||
if (res.data.thumbUrl) {
|
if (res.data.thumbUrl) {
|
||||||
this.info.thumbUrl = JSON.parse(res.data.thumbUrl)
|
this.info.thumbUrl = JSON.parse(res.data.thumbUrl)
|
||||||
@@ -53,9 +55,7 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
onBack() {
|
onBack() {
|
||||||
this.$emit('change', {
|
this.$router.push({})
|
||||||
type: 'list'
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<template slot="content">
|
<template slot="content">
|
||||||
<ai-search-bar>
|
<ai-search-bar>
|
||||||
<template slot="left">
|
<template slot="left">
|
||||||
<el-button icon="iconfont iconAdd" type="primary" size="small" @click="add">添加</el-button>
|
<el-button icon="iconfont iconAdd" type="primary" size="small" @click="toAdd">添加</el-button>
|
||||||
</template>
|
</template>
|
||||||
<template slot="right">
|
<template slot="right">
|
||||||
<el-input
|
<el-input
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
<el-button
|
<el-button
|
||||||
type="text"
|
type="text"
|
||||||
title="编辑"
|
title="编辑"
|
||||||
@click="toAdd(row.id)">
|
@click="toEdit(row.id)">
|
||||||
编辑
|
编辑
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
@@ -83,7 +83,8 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item required label="地区" prop="areaId" :rules="[{required: true, message: '请选择发布地区'}]">
|
<el-form-item required label="地区" prop="areaId" :rules="[{required: true, message: '请选择发布地区'}]">
|
||||||
<ai-area-get :instance="instance" v-model="dialogForm.areaId" :root="rootId" :name.sync="dialogForm.areaName" />
|
<ai-area-get :instance="instance" v-model="dialogForm.areaId" :root="rootId"
|
||||||
|
:name.sync="dialogForm.areaName"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</ai-dialog>
|
</ai-dialog>
|
||||||
@@ -190,42 +191,15 @@
|
|||||||
this.dialog = true
|
this.dialog = true
|
||||||
},
|
},
|
||||||
|
|
||||||
toAdd (id) {
|
toAdd() {
|
||||||
this.$emit('change', {
|
this.$router.push({hash: "#add"})
|
||||||
type: 'add',
|
|
||||||
params: {
|
|
||||||
id
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
|
|
||||||
add () {
|
|
||||||
this.$emit('change', {
|
|
||||||
type: 'add',
|
|
||||||
params: {
|
|
||||||
id: ''
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
|
|
||||||
toEdit(id) {
|
toEdit(id) {
|
||||||
this.$emit('change', {
|
this.$router.push({hash: "#add", query: {id}})
|
||||||
type: 'add',
|
|
||||||
params: {
|
|
||||||
type: 'ReportAdd',
|
|
||||||
id
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
|
|
||||||
toDetail(id) {
|
toDetail(id) {
|
||||||
this.$emit('change', {
|
this.$router.push({query: {id}})
|
||||||
type: 'detail',
|
|
||||||
params: {
|
|
||||||
type: 'eventDetail',
|
|
||||||
id
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
|
|
||||||
remove(id) {
|
remove(id) {
|
||||||
@@ -261,15 +235,18 @@
|
|||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.event {
|
.event {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
::v-deep th {
|
::v-deep th {
|
||||||
font-weight: bold !important;
|
font-weight: bold !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
::v-deep .table-options {
|
::v-deep .table-options {
|
||||||
span {
|
span {
|
||||||
font-size: 14px !important;
|
font-size: 14px !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-btn {
|
.table-btn {
|
||||||
margin-right: 16px;
|
margin-right: 16px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|||||||
Reference in New Issue
Block a user