新闻资讯类重写

This commit is contained in:
liuye
2021-12-23 15:09:25 +08:00
parent 774273d9b2
commit d32293b942
6 changed files with 220 additions and 81 deletions

View File

@@ -6,18 +6,20 @@
<u-input v-model="forms.title" placeholder="请输入标题(30字以内)" type="textarea" auto-height height="60" maxlength="30" />
</u-form-item>
<u-form-item label="公开类型" prop="status" required style="position: relative">
<u-input v-model="forms.status" disabled placeholder="请选择公开类型" @click="showStstus = true" />
<u-select v-model="showStstus" :list="$dict.getDict('realityStatus')" value-name="dictValue" label-name="dictName" @confirm="selectStatus"></u-select>
<u-icon name="arrow-right" color="#CCCCCC" style="position: absolute; top: 25px; right: 30px"></u-icon>
<u-form-item label="类别" prop="status" required>
<div class="right" @click="showStstus=true">
<span v-if="forms.showIndex === ''" class="color-999">请选择类别</span>
<span v-else>{{selectList[forms.showIndex].categoryName}}</span>
<u-icon name="arrow-right" color="#CCCCCC" class="right-icon"></u-icon>
</div>
<u-select v-model="showStstus" :list="selectList" value-name="showIndex" label-name="categoryName" @confirm="selectStatus"></u-select>
</u-form-item>
<u-form-item label="发布地区" prop="areaId" required style="position: relative">
<AiAreaPicker v-model="forms.areaId" :areaId="areaIdProps" @select="areaSelect"></AiAreaPicker>
<u-icon name="arrow-right" color="#CCCCCC" style="position: absolute; top: 25px; right: 30px"></u-icon>
<u-form-item label="发布地区" prop="areaId" required >
<div class="right">
<AiAreaPicker v-model="forms.areaId" :areaId="user.areaId" @select="areaSelect"></AiAreaPicker>
<u-icon name="arrow-right" color="#CCCCCC" class="right-icon area-right-icon"></u-icon>
</div>
</u-form-item>
<u-form-item label="正文" prop="content" required label-position="top">
@@ -48,16 +50,17 @@ export default {
id: '',
forms: {
title: '',
status: '',
statusValue: '',
content: '',
fileIds: [],
areaId: '',
showIndex: '',
},
showStstus: false,
flag: false,
areaIdProps: '',
moduleId: ''
moduleId: '',
listName: '',
selectList: []
}
},
computed: { ...mapState(['user']) },
@@ -65,27 +68,42 @@ export default {
console.log(o)
this.id = o.id
this.moduleId = o.moduleId
this.areaIdProps = this.user.areaId
this.$dict.load('realityStatus').then(() => {
this.getDetail()
})
this.forms.areaId = this.user.areaId
this.listName = o.listName
this.getType()
},
mounted() {},
methods: {
// getDetail() {
// this.$http.post(`/app/appvisitvondolence/queryDetailById?id=${this.id}`).then((res) => {
// if (res?.data) {
// this.forms = res.data
// this.forms.statusValue = res.data.status
// this.forms.status = this.$dict.getLabel('realityStatus', res.data.status)
// if (res.data.images) {
// this.forms.images = JSON.parse(res.data.images || '[]')
// }
// }
// })
// },
getDetail() {
this.$http.post(`/app/appcontentinfo/queryDetailById?id=${this.id}`).then((res) => {
if (res?.data) {
this.forms = {...res.data}
if(this.selectList.length) {
this.selectList.map((item, index) => {
if(item.id == res.data.categoryId) {
this.forms.showIndex = index
}
})
}
if (res.data.images) {
this.forms.images = JSON.parse(res.data.images || '[]')
}
}
})
},
getType() {
this.$http.post(`/app/appcontentmoduleinfo/listByName?names=${this.listName}`).then((res) => {
if (res.code == 0) {
if(res.data && res.data[0].categoryList.length) {
this.selectList = res.data[0].categoryList
if(this.id) {
this.getDetail()
}
}
}
})
},
submit() {
if (this.flag) return
@@ -98,6 +116,10 @@ export default {
return this.$u.toast('请输入正文')
}
if(this.selectList.length && this.forms.showIndex === '') {
return this.$u.toast('请选择类别')
}
const imgs = []
if (this.forms.fileIds) {
this.forms.fileIds.map((e) => {
@@ -106,22 +128,21 @@ export default {
}
this.flag = true
this.$http
.post(`/app/appvisitvondolence/addOrUpdate`, {
this.$http.post(`/app/appcontentinfo/addOrUpdate`, {
title: this.forms.title,
status: this.forms.statusValue ? this.forms.statusValue : this.forms.status,
areaId: this.forms.areaId,
content: this.forms.content,
// images: JSON.stringify(imgs) || [],
images: imgs || [],
files: imgs || [],
id: this.id,
moduleId: this.moduleId
moduleId: this.moduleId,
categoryId: this.selectList[this.forms.showIndex].id,
categoryName: this.selectList[this.forms.showIndex].categoryName,
})
.then((res) => {
if (res.code == 0) {
this.$u.toast('发布成功')
this.flag = false
uni.navigateTo({ url: `./AppServicePublic` })
uni.navigateBack()
}
})
} else {
@@ -135,8 +156,7 @@ export default {
},
selectStatus(e) {
this.forms.status = e[0].label
this.forms.statusValue = e[0].value
this.forms.showIndex = e[0].value
},
},
}
@@ -185,5 +205,35 @@ export default {
font-weight: 500;
color: #ffffff;
}
.right{
width: 100%;
text-align: right;
.right-icon{
vertical-align: middle;
margin-left: 8px;
}
.area-right-icon{
margin: -40px 0 0 8px;
}
::v-deep .AiAreaPicker{
display: inline-block;
width: calc(100% - 50px);
.areaSelector{
div{
width: 100%;
padding-top: 30px;
box-sizing: border-box;
text-align: right;
}
.fixedTop{
text-align: left;
}
}
}
}
.color-999{
color: #999;
}
}
</style>