index.js 1.08 KB
import Api from '~/service/Api';
import commonFunctions from '~/mixin/commonFunctions.js';
import CommonEvent from "../../../common/event/CommonEvent"
import DbwpEvent from "../../../common/event/DbwpEvent"

export default {
	mixins: [commonFunctions,CommonEvent,DbwpEvent],
	methods: {
	// 获取地区机构号
	async getOwnExtkeyCondition() {
		const loading = this.loading();
		let body = { ownExtKey: "" };
		// if (this.model.trnInfo && this.model.trnInfo.sdhflg == "X" && this.model.cfagit.ownextkey) {
		// 	body.ownExtKey = this.model.cfagit.ownextkey;
		// }
		let res = await Api.post('/business/bch/getBranchListByownExtKey', body);
		loading.close();
		if (res.respCode === SUCCESS) {
			this.ownExtkeyList = res.data;
		}
	},
		//获取交易编码列列表
		async getBopcodItems(){
			console.log("进入getBopcodList");
			const loading = this.loading();
			let iotyp="O";
			let res = await Api.post(`/report/bopnew/public/getBopcodList`, iotyp);
			loading.close();
			if (res.respCode === SUCCESS) {
				this.bopcodList = res.data;
				this.options1 = this.bopcodList;
    			
			}

		}
	}
}