This commit is contained in:
花有清香月有阴
2022-01-07 16:25:43 +08:00
parent 07da160ab8
commit d43e31cee5

View File

@@ -3,7 +3,7 @@
<div class="header-description"> <div class="header-description">
<u-form :model="form" ref="uForm" label-width="auto"> <u-form :model="form" ref="uForm" label-width="auto">
<u-form-item label="主题" prop="content" required label-position="top" class="contents"> <u-form-item label="主题" prop="content" required label-position="top" class="contents">
<u-input v-model="form.content" placeholder="请输入题(1000字以内)" type="textarea" auto-height height="280" maxlength="1000" /> <u-input v-model="form.content" placeholder="请输入题(500字以内)" type="textarea" auto-height height="280" maxlength="500" />
</u-form-item> </u-form-item>
<u-form-item label="图片(最多9张)" prop="images" class="avatars" label-position="top"> <u-form-item label="图片(最多9张)" prop="images" class="avatars" label-position="top">
@@ -39,7 +39,7 @@
<img src="./img/22.png" alt="" /> <img src="./img/22.png" alt="" />
<div class="rightopts"> <div class="rightopts">
<u-input v-model="content" placeholder="选项" maxlength="200" :clearable="false" /> <u-input v-model="contents" placeholder="选项" maxlength="200" :clearable="false" />
</div> </div>
</div> </div>
</div> </div>
@@ -53,7 +53,7 @@
<img src="./img/22.png" alt="" /> <img src="./img/22.png" alt="" />
<div class="rightopts"> <div class="rightopts">
<u-input v-model="content" placeholder="选项" :clearable="false" maxlength="200" /> <u-input v-model="contents" placeholder="选项" :clearable="false" maxlength="200" />
</div> </div>
</div> </div>
@@ -112,9 +112,9 @@ export default {
timestamp: true, timestamp: true,
}, },
opts: 0, opts: 0,
checked: true, checked: false,
list: [], list: [],
content: '', contents: '',
keys: ['A', 'B', 'C', 'D', 'E', 'F', 'G'], keys: ['A', 'B', 'C', 'D', 'E', 'F', 'G'],
} }
}, },
@@ -124,7 +124,7 @@ export default {
this.id = o.id this.id = o.id
this.getDetail() this.getDetail()
} }
this.form.areaId = this.user.areaId
this.$dict.load('discussType').then(() => { this.$dict.load('discussType').then(() => {
// this.areaId = this.user.areaId // this.areaId = this.user.areaId
}) })
@@ -147,16 +147,34 @@ export default {
submit() { submit() {
if (this.flag) return if (this.flag) return
if (!this.form.content) { if (!this.form.content) {
return this.$u.toast('请输入 主题') return this.$u.toast('请输入主题')
} }
if (!this.form.discussDeadline) { if (!this.form.areaId) {
return this.$u.toast('请选择 议事截止时间') return this.$u.toast('请输入发布地区')
}
// if (!this.form.discussDeadline) {
// return this.$u.toast('请选择议事截止时间')
// }
// if (!this.form.publicityDeadline) {
// return this.$u.toast('请选择公示截止时间')
// }
if (this.form.type == 1) {
if (this.opts == 0) {
if (!this.form.contents) {
return this.$u.toast('请输入单选选项')
}
}
if (this.opts == 1) {
if (!this.list.length > 0) {
return this.$u.toast('请输入多选选项')
}
}
} }
if (this.opts == 1) { if (this.opts == 1) {
var lists = [] var lists = []
this.list.map((item, index) => { this.list.map((item, index) => {
item.content == item, item.item == this.keys[index] item.contents == item, item.item == this.keys[index]
lists.push({ lists.push({
content: item, content: item,
item: this.keys[index], item: this.keys[index],
@@ -168,6 +186,8 @@ export default {
var params = { var params = {
...this.form, ...this.form,
// voteItems: this.list, // voteItems: this.list,
areaId: this.form.areaId,
areaName: this.form.areaName,
voteItems: lists, voteItems: lists,
anonymous: this.checked == true ? 1 : 0, anonymous: this.checked == true ? 1 : 0,
createUserId: this.user.id, createUserId: this.user.id,