| | |
| | | exportDonorcharge, |
| | | listDonorpayment |
| | | } from "@/api/project/donorcharge"; |
| | | import { listOrganization, } from "@/api/project/organization"; |
| | | |
| | | import OrgSelecter from "@/views/project/components/orgselect"; |
| | | |
| | | export default { |
| | |
| | | //专家/医疗机构/费用报销机构选择 |
| | | confirmSelection() { |
| | | var curdonorinfo = null; |
| | | console.log(this.selectionForm.donorid,'donorid'); |
| | | //从案例列表获取信息 |
| | | this.donorinfolist.map(item => { |
| | | if (this.selectionForm.donorid == item.id) { |
| | |
| | | this.total = response.total; |
| | | this.loading = false; |
| | | }); |
| | | let searchData = { |
| | | organizationtype: '3', //传入的类型 |
| | | pageNum: 1, |
| | | pageSize: 100000 |
| | | }; //搜索条件 |
| | | listOrganization(searchData).then(res => { |
| | | console.log(res); |
| | | }); |
| | | }, |
| | | |
| | | // 取消按钮 |