|
@@ -14,6 +14,7 @@
|
|
<org-select
|
|
<org-select
|
|
v-model="filter.orgId"
|
|
v-model="filter.orgId"
|
|
placeholder="所属学院"
|
|
placeholder="所属学院"
|
|
|
|
+ :filter-param="{ orgId: userOrgId, withoutPrintingRoom: true }"
|
|
></org-select>
|
|
></org-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</template>
|
|
</template>
|
|
@@ -123,6 +124,7 @@ export default {
|
|
total: 0,
|
|
total: 0,
|
|
dataList: [],
|
|
dataList: [],
|
|
curRow: {},
|
|
curRow: {},
|
|
|
|
+ userOrgId: this.$ls.get("orgId", ""),
|
|
};
|
|
};
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
@@ -150,7 +152,7 @@ export default {
|
|
},
|
|
},
|
|
toAdd() {
|
|
toAdd() {
|
|
this.curRow = {
|
|
this.curRow = {
|
|
- orgId: this.$ls.get("orgId", ""),
|
|
|
|
|
|
+ orgId: this.userOrgId,
|
|
};
|
|
};
|
|
this.$refs.ModifyProfessional.open();
|
|
this.$refs.ModifyProfessional.open();
|
|
},
|
|
},
|