From e7dce36f4b45d4986b8b09781e3c822c00d3f4e1 Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Wed, 21 Feb 2024 17:08:08 +0800
Subject: [PATCH] 维修基金申请优化
---
src/views/article/components/deitDiscussion.vue | 44 ++++++++++++++++++++++++++++++++------------
1 files changed, 32 insertions(+), 12 deletions(-)
diff --git a/src/views/article/components/deitDiscussion.vue b/src/views/article/components/deitDiscussion.vue
index 9c45f1e..8e43bb7 100644
--- a/src/views/article/components/deitDiscussion.vue
+++ b/src/views/article/components/deitDiscussion.vue
@@ -41,7 +41,8 @@
</el-dialog>
<el-dialog title="" append-to-body :visible.sync="popupTableUserShow" width="80%" :before-close="userHandleClose">
- <avue-crud :data="userData" :page="userPage" :option="userOption"></avue-crud>
+ <avue-crud :data="userData" :page="userPage" :option="userOption" @search-change="searchChange"
+ @search-reset="searchReset"></avue-crud>
</el-dialog>
</div>
</template>
@@ -114,11 +115,17 @@
prop: 'discussContent',
type: 'input',
row: true,
+ rules: [{
+ required: true,
+ message: '请输入议题',
+ trigger: 'blur'
+ }],
},
{
label: '选项范围',
prop: 'optionRange',
type: 'radio',
+ value: 0,
button: true,
row: true,
dicData: [{
@@ -127,14 +134,19 @@
}, {
label: '单选',
value: 0
- }]
+ }],
+ rules: [{
+ required: true,
+ message: '请选项范围',
+ trigger: 'blur'
+ }],
},
- {
- label: '排序',
- prop: 'sort',
- controlsPosition: '',
- type: 'number'
- },
+ // {
+ // label: '排序',
+ // prop: 'sort',
+ // controlsPosition: '',
+ // type: 'number'
+ // },
{
label: '选项内容',
prop: 'children',
@@ -193,18 +205,20 @@
searchShow: true,
searchMenuSpan: 3,
// menuWidth: 500,
+ menu: false,
height: "auto",
calcHeight: 54,
dialogWidth: 950,
tip: false,
- border: false,
+ border: true,
//stripe:true,
index: true,
editBtn: false,
addBtn: false,
viewBtn: false,
selection: true,
+ delBtn: false,
excelBtn: true,
dialogClickModal: false,
column: [{
@@ -214,6 +228,8 @@
search: true,
}, {
label: '头像',
+ type: 'upload',
+ listType: "picture-img",
prop: 'avatar'
}, {
label: '手机',
@@ -244,6 +260,7 @@
total: 0
},
query: {},
+ newData: {},
}
},
@@ -257,14 +274,16 @@
},
searchReset() {
- this.query = {}
- this.getUserPage(this.userPage)
+ this.query.articleId = this.articleId
+ this.userPage.currentPage = 1
+ this.getUserPage(this.userPage, this.query)
},
searchChange(params, done) {
this.query = params
+ this.query.articleId = this.articleId
this.userPage.currentPage = 1
- this.getUserPage(this.userPage, params)
+ this.getUserPage(this.userPage, this.query)
done()
},
initData(newData) {
@@ -395,6 +414,7 @@
openUser(row, type = 0) {
this.popupTableUserShow = true
this.query = {}
+ this.articleId = row.id
if (type == 0) {
this.userParams = {
articleId: row.id
--
Gitblit v1.9.3