Browse Source

feat: [试验管理] 取消邀请人判断是否有表单

lkf
memorylkf 3 months ago
parent
commit
71bd098475
4 changed files with 15 additions and 3 deletions
  1. BIN
      public/favicon.ico
  2. +2
    -0
      src/views/business/comps/select/SelectDeptUserMultipleDialog.vue
  3. +12
    -2
      src/views/business/study/comp/suject.vue
  4. +1
    -1
      src/views/system/dept/index.vue

BIN
public/favicon.ico View File

Before After
Width: 35  |  Height: 35  |  Size: 6.2 KiB

+ 2
- 0
src/views/business/comps/select/SelectDeptUserMultipleDialog.vue View File

@ -144,6 +144,8 @@ export default {
})
}
this.$emit('change', backList)
},
close(){
this.open = false
},
delSelected(row){

+ 12
- 2
src/views/business/study/comp/suject.vue View File

@ -242,8 +242,18 @@ export default {
}
}
this.memberList = postList
this.signType = 'member'
this.$refs.subjectSignRef.show(this.$t('page.business.study.study.rybg'),this.$t('page.business.study.study.rybg'))
studySubjectUser_save({
studySubjectId:this.memberSubject.id,
subjectUserList:this.memberList,
sign:{}
}).then(() => {
this.$refs.selectSubjectDeptUserMultipleDialog.close()
this.signType = 'member'
this.$refs.subjectSignRef.show(this.$t('page.business.study.study.rybg'),this.$t('page.business.study.study.rybg'))
}).catch((e) => {
}).finally(() => {
})
},
doChangeMember(sign){

+ 1
- 1
src/views/system/dept/index.vue View File

@ -89,7 +89,7 @@
v-hasPermi="['system:dept:add']"
>{{$t('page.system.dept.add')}}</el-button>
<el-button
v-if="scope.row.parentId != 0"
v-if="scope.row.parentId != 0 && scope.row.deptId!=216"
type="text"
@click="handleDelete(scope.row)"

Loading…
Cancel
Save