diff --git a/src/components/popupMange/index.vue b/src/components/popupMange/index.vue
index e56e7df..eb4644e 100644
--- a/src/components/popupMange/index.vue
+++ b/src/components/popupMange/index.vue
@@ -25,7 +25,7 @@
>删除
-
@@ -114,17 +115,19 @@ export default {
},
methods: {
- hundlePopupHide () { },
+ hundlePopupHide () {
+ this.showChooseList = false
+ this.$emit('update:showChooseList', false)
+ },
handleSubmitPopup () {
-
+ this.$emit('cb', {})
},
handleAdd () { },
handleDelete () {
-
- },
- handlePermissionsRadio () {
- this.permissionsPrompt = this.permissionsRadio === '0' ? '被考核人的目标完成确认后,管理员和部门主管都可以调整目标' : '被考核人的目标完成确认后,只有管理员可以调整目标'
}
+ // handlePermissionsRadio () {
+ // this.permissionsPrompt = this.permissionsRadio === '0' ? '被考核人的目标完成确认后,管理员和部门主管都可以调整目标' : '被考核人的目标完成确认后,只有管理员可以调整目标'
+ // }
}
}