diff --git a/src/components/ChooseInitiate/index.vue b/src/components/ChooseInitiate/index.vue index 0ebacd9..e484f46 100644 --- a/src/components/ChooseInitiate/index.vue +++ b/src/components/ChooseInitiate/index.vue @@ -136,7 +136,11 @@ export default { }, methods: { checkSelectable (row, index) { - return this.nOSec && row.score === 0 + if (!this.nOSec) { + return true + } else { + return row.score === 0 + } }, handlePopupCreat () { this.$emit('update:showChooseList', false) diff --git a/src/components/PopupRight/index.vue b/src/components/PopupRight/index.vue index 0259ea3..6454661 100644 --- a/src/components/PopupRight/index.vue +++ b/src/components/PopupRight/index.vue @@ -8,7 +8,10 @@ class="taskDetailRight-contant" @click.stop="aa" > -