import Api from '~/service/Api'; import Utils from '~/utils/index'; import commonFunctions from '~/mixin/commonFunctions.js'; export default { mixins: [commonFunctions], methods: { // 获取地区机构号 async getOwnExtkeyCondition1() { const loading = this.loading(); let params = { ownExtKey: "" }; let res = await Api.post(`/${this.moduleRouter()}/bch/getBranchListByownExtKey`, params); loading.close(); if (res.respCode === SUCCESS) { console.log('this.codes', this.codes) this.$set(this.codes, 'ownExtkeyList', res.data) } }, async loadBopCtyList() { const loading = this.loading(); let res = await Api.post(`/${this.moduleRouter()}/bopcty/loadBopCtyList`); loading.close(); if (res.respCode === SUCCESS) { this.$set(this.codes, 'bopCtyList', res.data) } }, }, };