Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -103,10 +103,10 @@
|
|||||||
|
|
||||||
<!-- 会议编辑抽屉 -->
|
<!-- 会议编辑抽屉 -->
|
||||||
<el-drawer
|
<el-drawer
|
||||||
title="编辑人员信息"
|
title="编辑会议信息"
|
||||||
:visible.sync="meetFlag"
|
:visible.sync="meetFlag"
|
||||||
:before-close="falseDrawer"
|
:before-close="falseDrawer"
|
||||||
size="600px"
|
size="800px"
|
||||||
>
|
>
|
||||||
<div class="content_form" style="height: calc(100% - 20px);overflow-y: auto">
|
<div class="content_form" style="height: calc(100% - 20px);overflow-y: auto">
|
||||||
<el-form class="label-input-form" ref="editMeetForm" :model="editMeetForm" label-width="80px">
|
<el-form class="label-input-form" ref="editMeetForm" :model="editMeetForm" label-width="80px">
|
||||||
@@ -241,9 +241,9 @@
|
|||||||
|
|
||||||
<!-- 编辑框内的人员的table上的编辑 -->
|
<!-- 编辑框内的人员的table上的编辑 -->
|
||||||
<el-drawer
|
<el-drawer
|
||||||
title="编辑人员信息"
|
:title="dialogTitle"
|
||||||
:visible.sync="editFlag"
|
:visible.sync="editFlag"
|
||||||
size="500px"
|
size="600px"
|
||||||
:before-close="falseDrawerTab"
|
:before-close="falseDrawerTab"
|
||||||
custom-class="demo-drawer"
|
custom-class="demo-drawer"
|
||||||
>
|
>
|
||||||
@@ -339,6 +339,7 @@ export default {
|
|||||||
// 议题选中时储存数组
|
// 议题选中时储存数组
|
||||||
deleteTable: [],
|
deleteTable: [],
|
||||||
loading: false,
|
loading: false,
|
||||||
|
dialogTitle: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@@ -619,10 +620,19 @@ export default {
|
|||||||
fillFile: this.fillFile = []
|
fillFile: this.fillFile = []
|
||||||
}
|
}
|
||||||
this.editMeetForm.attend.push(list)
|
this.editMeetForm.attend.push(list)
|
||||||
|
this.dialogTitle = '新增人员信息'
|
||||||
|
this.add_partDialog(list)
|
||||||
},
|
},
|
||||||
|
|
||||||
|
add_partDialog(row) {
|
||||||
|
// 用来储存取消时原来的数据,防止取消时修改
|
||||||
|
localStorage.setItem('obj', JSON.stringify(row))
|
||||||
|
this.editForm = row
|
||||||
|
this.editFlag = true
|
||||||
|
},
|
||||||
// 编辑按钮
|
// 编辑按钮
|
||||||
edit_partForm(row) {
|
edit_partForm(row) {
|
||||||
|
this.dialogTitle = '编辑人员信息'
|
||||||
// 用来储存取消时原来的数据,防止取消时修改
|
// 用来储存取消时原来的数据,防止取消时修改
|
||||||
localStorage.setItem('obj', JSON.stringify(row))
|
localStorage.setItem('obj', JSON.stringify(row))
|
||||||
this.editForm = row
|
this.editForm = row
|
||||||
@@ -679,6 +689,18 @@ export default {
|
|||||||
this.editFlag = false
|
this.editFlag = false
|
||||||
},
|
},
|
||||||
falseDrawerTab() {
|
falseDrawerTab() {
|
||||||
|
if (this.dialogTitle = '新增人员信息') {
|
||||||
|
let Items = JSON.parse(localStorage.getItem('objs'))
|
||||||
|
this.editMeetForm.attend = Items.attend
|
||||||
|
this.editMeetForm.content = Items.content
|
||||||
|
this.editMeetForm.date = Items.date
|
||||||
|
this.editMeetForm.files = Items.files
|
||||||
|
this.editMeetForm.id = Items.id
|
||||||
|
this.editMeetForm.partPeople = Items.partPeople
|
||||||
|
this.editMeetForm.place = Items.place
|
||||||
|
this.editMeetForm.title = Items.title
|
||||||
|
this.editMeetForm.type = Items.type
|
||||||
|
} else {
|
||||||
let Item = JSON.parse(localStorage.getItem('obj'))
|
let Item = JSON.parse(localStorage.getItem('obj'))
|
||||||
this.editForm.fillPeopleId = Item.fillPeopleId
|
this.editForm.fillPeopleId = Item.fillPeopleId
|
||||||
this.editForm.fillPeople = Item.fillPeople
|
this.editForm.fillPeople = Item.fillPeople
|
||||||
@@ -686,6 +708,7 @@ export default {
|
|||||||
this.editForm.fillDept = Item.fillDept
|
this.editForm.fillDept = Item.fillDept
|
||||||
this.editForm.fillTel = Item.fillTel
|
this.editForm.fillTel = Item.fillTel
|
||||||
this.editForm.fillMail = Item.fillMail
|
this.editForm.fillMail = Item.fillMail
|
||||||
|
}
|
||||||
this.editFlag = false
|
this.editFlag = false
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -295,7 +295,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<el-drawer
|
<el-drawer
|
||||||
title="编辑人员信息"
|
:title="isTitle"
|
||||||
:visible.sync="editFlag"
|
:visible.sync="editFlag"
|
||||||
size="500px"
|
size="500px"
|
||||||
>
|
>
|
||||||
@@ -478,6 +478,7 @@ export default {
|
|||||||
acceptShow: false,
|
acceptShow: false,
|
||||||
roleShowflag: false,
|
roleShowflag: false,
|
||||||
nodeList: [],
|
nodeList: [],
|
||||||
|
isTitle: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@@ -539,6 +540,8 @@ export default {
|
|||||||
fillFile: this.fillFile = []
|
fillFile: this.fillFile = []
|
||||||
}
|
}
|
||||||
this.rh_pageData.myPartRole.push(list)
|
this.rh_pageData.myPartRole.push(list)
|
||||||
|
this.isTitle = '新增人员信息'
|
||||||
|
this.add_partDialog(list)
|
||||||
},
|
},
|
||||||
|
|
||||||
fillFile_up(row) {
|
fillFile_up(row) {
|
||||||
@@ -625,8 +628,17 @@ export default {
|
|||||||
handleClose() {
|
handleClose() {
|
||||||
this.upDialog = false
|
this.upDialog = false
|
||||||
},
|
},
|
||||||
|
add_partDialog(row) {
|
||||||
|
// 用来储存取消时原来的数据,防止取消时修改
|
||||||
|
localStorage.setItem('obj', JSON.stringify(row))
|
||||||
|
this.fileListData = row
|
||||||
|
this.reData = this.fileListData.fillFile
|
||||||
|
this.editForm = row
|
||||||
|
this.editFlag = true
|
||||||
|
},
|
||||||
// 编辑按钮
|
// 编辑按钮
|
||||||
edit_partForm(row) {
|
edit_partForm(row) {
|
||||||
|
this.isTitle = '编辑人员信息'
|
||||||
// 用来储存取消时原来的数据,防止取消时修改
|
// 用来储存取消时原来的数据,防止取消时修改
|
||||||
localStorage.setItem('obj', JSON.stringify(row))
|
localStorage.setItem('obj', JSON.stringify(row))
|
||||||
this.fileListData = row
|
this.fileListData = row
|
||||||
@@ -639,6 +651,9 @@ export default {
|
|||||||
this.editFlag = false
|
this.editFlag = false
|
||||||
},
|
},
|
||||||
falseDrawer() {
|
falseDrawer() {
|
||||||
|
if (this.isTitle === '新增人员信息') {
|
||||||
|
this.getData()
|
||||||
|
} else {
|
||||||
let Item = JSON.parse(localStorage.getItem('obj'))
|
let Item = JSON.parse(localStorage.getItem('obj'))
|
||||||
this.editForm.fillPeopleId = Item.fillPeopleId
|
this.editForm.fillPeopleId = Item.fillPeopleId
|
||||||
this.editForm.fillPeople = Item.fillPeople
|
this.editForm.fillPeople = Item.fillPeople
|
||||||
@@ -648,6 +663,7 @@ export default {
|
|||||||
this.editForm.fillTel = Item.fillTel
|
this.editForm.fillTel = Item.fillTel
|
||||||
this.editForm.fillMail = Item.fillMail
|
this.editForm.fillMail = Item.fillMail
|
||||||
this.editForm.fillFile = Item.fillFile
|
this.editForm.fillFile = Item.fillFile
|
||||||
|
}
|
||||||
this.editFlag = false
|
this.editFlag = false
|
||||||
},
|
},
|
||||||
// 编辑框选人
|
// 编辑框选人
|
||||||
|
|||||||
@@ -257,7 +257,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<el-drawer
|
<el-drawer
|
||||||
title="编辑人员信息"
|
:title="isTitle"
|
||||||
:visible.sync="editFlag"
|
:visible.sync="editFlag"
|
||||||
size="500px"
|
size="500px"
|
||||||
custom-class="demo-drawer"
|
custom-class="demo-drawer"
|
||||||
@@ -356,7 +356,8 @@ export default {
|
|||||||
fillDept: '',
|
fillDept: '',
|
||||||
fillTel: '',
|
fillTel: '',
|
||||||
fillMail: '',
|
fillMail: '',
|
||||||
}
|
},
|
||||||
|
isTitle: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@@ -416,12 +417,17 @@ export default {
|
|||||||
fillMail: this.fillMail,
|
fillMail: this.fillMail,
|
||||||
}
|
}
|
||||||
this.ch_pageData.myPartRole.push(list)
|
this.ch_pageData.myPartRole.push(list)
|
||||||
|
this.isTitle = '新增人员信息'
|
||||||
|
this.add_partDialog(list)
|
||||||
},
|
},
|
||||||
// 编辑框确认按钮
|
// 编辑框确认按钮
|
||||||
OkDrawer() {
|
OkDrawer() {
|
||||||
this.editFlag = false
|
this.editFlag = false
|
||||||
},
|
},
|
||||||
falseDrawer() {
|
falseDrawer() {
|
||||||
|
if (this.isTitle = '新增人员信息') {
|
||||||
|
this.getData()
|
||||||
|
} else {
|
||||||
let Item = JSON.parse(localStorage.getItem('obj'))
|
let Item = JSON.parse(localStorage.getItem('obj'))
|
||||||
this.editForm.fillPeopleId = Item.fillPeopleId
|
this.editForm.fillPeopleId = Item.fillPeopleId
|
||||||
this.editForm.fillPeople = Item.fillPeople
|
this.editForm.fillPeople = Item.fillPeople
|
||||||
@@ -429,8 +435,17 @@ export default {
|
|||||||
this.editForm.fillDept = Item.fillDept
|
this.editForm.fillDept = Item.fillDept
|
||||||
this.editForm.fillTel = Item.fillTel
|
this.editForm.fillTel = Item.fillTel
|
||||||
this.editForm.fillMail = Item.fillMail
|
this.editForm.fillMail = Item.fillMail
|
||||||
|
}
|
||||||
this.editFlag = false
|
this.editFlag = false
|
||||||
},
|
},
|
||||||
|
|
||||||
|
add_partDialog(row) {
|
||||||
|
// 用来储存取消时原来的数据,防止取消时修改
|
||||||
|
localStorage.setItem('obj', JSON.stringify(row))
|
||||||
|
this.fileListData = row
|
||||||
|
this.editForm = row
|
||||||
|
this.editFlag = true
|
||||||
|
},
|
||||||
/** 入会人员编辑 */
|
/** 入会人员编辑 */
|
||||||
edit_partForm(row) {
|
edit_partForm(row) {
|
||||||
// 用来储存取消时原来的数据,防止取消时修改
|
// 用来储存取消时原来的数据,防止取消时修改
|
||||||
|
|||||||
@@ -252,8 +252,6 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
|
||||||
<el-row :gutter="24">
|
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="汇总评审意见文件" prop="GLWJBUSSName" class="add-form-item form-item-disabled">
|
<el-form-item label="汇总评审意见文件" prop="GLWJBUSSName" class="add-form-item form-item-disabled">
|
||||||
<div v-if="summaryFileList.length>0" v-for="(value,index) in this.summaryFileList" :key="index" style="cursor: pointer;color: #00b7ee" @click="downloadFile(value)">
|
<div v-if="summaryFileList.length>0" v-for="(value,index) in this.summaryFileList" :key="index" style="cursor: pointer;color: #00b7ee" @click="downloadFile(value)">
|
||||||
|
|||||||
Reference in New Issue
Block a user