| | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | label="申请材料状态" |
| | | label="材料预审状态" |
| | | width="140" |
| | | align="center" |
| | | prop="checkstatus" |
| | |
| | | type="text" |
| | | icon="el-icon-edit" |
| | | @click="handleUpdate(scope.row)" |
| | | v-hasPermi="['project:medicalfund:edit']" |
| | | >修改</el-button |
| | | > |
| | | |
| | |
| | | size="mini" |
| | | type="text" |
| | | @click="handleDelete(scope.row)" |
| | | v-hasPermi="['project:medicalfund:delete']" |
| | | ><span class="button-delete" |
| | | ><i class="el-icon-delete"></i>删除</span |
| | | ></el-button |
| | |
| | | type="text" |
| | | icon="el-icon-download" |
| | | @click="mixExport(scope.row.id)" |
| | | v-hasPermi="['project:medicalfund:download']" |
| | | >下载</el-button |
| | | > |
| | | <el-button |
| | |
| | | // 导出遮罩层 |
| | | exportLoading: false, |
| | | total: 0, |
| | | queryParams: { |
| | | organizationname: null, |
| | | organizationtype: null, |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | name: null, |
| | | idcardno: null, |
| | | residenceprovince: null, |
| | | residencecity: null, |
| | | residencetown: null, |
| | | recordstate: null, |
| | | treatmenthospitalname: null, |
| | | donorno: null, |
| | | reportername: null, |
| | | reporttime: null |
| | | }, |
| | | |
| | | checkFlagOptions: [ |
| | | { |
| | | value: 0, |
| | |
| | | label: "全部" |
| | | } |
| | | ], |
| | | fundQueryParam: { |
| | | queryParams: { |
| | | infoid: null, |
| | | applytype: "5", |
| | | createBy: null, |
| | |
| | | /** 搜索按钮操作 */ |
| | | handleQuery() { |
| | | this.queryParams.pageNum = 1; |
| | | |
| | | this.getList(); |
| | | }, |
| | | /** 重置按钮操作 */ |
| | |
| | | |
| | | /** 查询列表 */ |
| | | getList() { |
| | | console.log(this.queryParams); |
| | | |
| | | this.loading = true; |
| | | this.queryParams.params = {}; |
| | | console.log(21); |
| | | listFund(this.fundQueryParam).then(response => { |
| | | listFund(this.queryParams).then(response => { |
| | | console.log(11); |
| | | this.loading = false; |
| | | this.donateconsolationfundList = response.rows; |