|
@@ -262,7 +262,7 @@ export default {
|
|
|
this.$nextTick(() => {
|
|
|
this.$refs['formInline'].clearValidate()
|
|
|
})
|
|
|
- this.fileList = ''
|
|
|
+ this.fileList = []
|
|
|
this.$set(this.formInline, 'creatorList', this.userNames)
|
|
|
this.$set(this.formInline, 'bizId', Number(localStorage.getItem('bizId')))
|
|
|
if (e === 1) {
|
|
@@ -356,7 +356,7 @@ export default {
|
|
|
settingGetBizList({}).then(res => {
|
|
|
this.bizIdEnumList = res.data // biz
|
|
|
})
|
|
|
- taskListCreate({}).then(res => {
|
|
|
+ taskListCreate({ bizId: Number(localStorage.getItem('bizId')) }).then(res => {
|
|
|
this.taskEnumList = res.data // 所属任务
|
|
|
})
|
|
|
bugGetEnum().then(res => {
|