diff --git a/packages/3.0.0/AppQuestionBank/AppQuestionBank.vue b/packages/3.0.0/AppQuestionBank/AppQuestionBank.vue index 34d95ca1..9dd85d5a 100644 --- a/packages/3.0.0/AppQuestionBank/AppQuestionBank.vue +++ b/packages/3.0.0/AppQuestionBank/AppQuestionBank.vue @@ -2,23 +2,13 @@
+ :isEdit="isEdit">
@@ -71,11 +58,8 @@ export default { showList: true, search: {}, isEdit: false, - topOrgId: "", partyList: [], treeData: [], - organizationId: "", - organizationName: "", page: { current: 1, size: 10 @@ -173,10 +157,6 @@ export default { } }, created() { - this.topOrgId = this.user.info.organizationId; - this.searchSysAll(this.user.info.organizationId); - this.organizationId = this.user.info.organizationId; - this.organizationName = this.user.info.organizationName; this.getList(); } } diff --git a/packages/3.0.0/AppQuestionBank/components/questionBankAdd.vue b/packages/3.0.0/AppQuestionBank/components/questionBankAdd.vue index d6fc589b..7a99f364 100644 --- a/packages/3.0.0/AppQuestionBank/components/questionBankAdd.vue +++ b/packages/3.0.0/AppQuestionBank/components/questionBankAdd.vue @@ -75,9 +75,7 @@ dict: Object, permissions: Function, row: Object, - isEdit: Boolean, - organizationId: String, - organizationName: String, + isEdit: Boolean }, computed: { detailTitle() { @@ -87,8 +85,6 @@ data() { return { form: { - organizationId: '', - organizationName: '', title: '', type: '1', analysis: '', @@ -185,8 +181,6 @@ }, }, created() { - this.form.organizationId = this.organizationId; - this.form.organizationName = this.organizationName; this.dict.load('partyHistoryType0', 'partyPublicCommentStatus') this.checkDetaiList(this.row?.id); },