| | |
| | | prop="receivableamount" |
| | | /> |
| | | <el-table-column label="已收金额" align="center" prop="receivedamount" /> |
| | | <el-table-column label="收款日期" width="180" align="center" prop="receivedtime" /> |
| | | <el-table-column |
| | | label="收款日期" |
| | | width="180" |
| | | align="center" |
| | | prop="receivedtime" |
| | | /> |
| | | <el-table-column label="经办人" align="center" prop="updateBy" /> |
| | | <el-table-column label="操作" width="280" align="center"> |
| | | <template slot-scope="scope"> |
| | |
| | | ><i class="el-icon-delete"></i>删除</span |
| | | ></el-button |
| | | > |
| | | <el-button |
| | | size="mini" |
| | | type="primary" |
| | | @click="download(scope.row)" |
| | | icon="el-icon-download" |
| | | circle |
| | | ></el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | |
| | | :limit.sync="queryParams.pageSize" |
| | | @pagination="getList" |
| | | /> |
| | | |
| | | |
| | | |
| | | <el-dialog |
| | | :visible.sync="showSelectionDialog" |
| | |
| | | addDonorcharge, |
| | | updateDonorcharge, |
| | | exportDonorcharge, |
| | | listDonorpayment |
| | | listDonorpayment, |
| | | dyDonorpayment |
| | | } from "@/api/project/donorcharge"; |
| | | import { listOrganization } from "@/api/project/organization"; |
| | | |
| | |
| | | }); |
| | | }, |
| | | |
| | | |
| | | // 表单重置 |
| | | reset() { |
| | | this.form = { |
| | |
| | | |
| | | this.showSelectionDialog = true; |
| | | } |
| | | |
| | | |
| | | }, |
| | | |
| | | /** 修改按钮操作 */ |
| | |
| | | path: "/cost/particulars", |
| | | query: { id: row.id, operation: "detail", data: row } |
| | | }); |
| | | }, |
| | | // 打印 |
| | | download(row) { |
| | | dyDonorpayment(row.id).then(res => {}); |
| | | }, |
| | | |
| | | /** 删除按钮操作 */ |
| | |
| | | this.exportLoading = false; |
| | | }) |
| | | .catch(() => {}); |
| | | }, |
| | | |
| | | } |
| | | } |
| | | }; |
| | | </script> |