| | |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-col> |
| | | |
| | | |
| | | |
| | | </el-row> |
| | | <el-row> |
| | | <el-col :span="6"> |
| | | <el-form-item label="捐献者" prop="name"> |
| | | <el-input |
| | | v-model="queryParams.donorname" |
| | | placeholder="请输入捐献者姓名" |
| | | clearable |
| | | size="small" |
| | | @keyup.enter.native="handleQuery" |
| | | /> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="4"> |
| | | <el-button |
| | | type="primary" |
| | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | label="预审状态" |
| | | width="140" |
| | | align="center" |
| | | prop="checkstatus" |
| | | > |
| | | <template slot-scope="scope"> |
| | | <dict-tag |
| | | :options="dict.type.sys_stage_type" |
| | | :value="scope.row.checkstatus" |
| | | /> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | label="绩效类型" |
| | | width="150" |
| | | align="center" |
| | |
| | | @click="handleUpdate(scope.row)" |
| | | v-hasPermi="['project:medicalfund:edit']" |
| | | >修改</el-button |
| | | > |
| | | <el-button |
| | | |
| | | size="mini" |
| | | type="text" |
| | | icon="el-icon-edit" |
| | | @click="duplicationfn(scope.row)" |
| | | >复制</el-button |
| | | > |
| | | <el-button |
| | | size="mini" |
| | |
| | | "sys_finsubject", |
| | | "sys_financeitemtype", |
| | | "sys_expensetype", |
| | | "sys_performance_type" |
| | | "sys_performance_type", |
| | | "sys_stage_type" |
| | | |
| | | ], |
| | | data() { |
| | | //这里存放数据 |
| | |
| | | query: { id: row.id, businessType: "5", operationType: "update" } |
| | | }); |
| | | }, |
| | | /** 复制按钮操作 */ |
| | | duplicationfn(row) { |
| | | this.$router.push({ |
| | | path: "/finance/performancedetails/", |
| | | query: { id: row.id, businessType: "5", Copy: "1", operationType: "update" } |
| | | }); |
| | | }, |
| | | |
| | | /** 查看按钮操作 */ |
| | | handleDetail(row) { |