| | |
| | | </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" |
| | |
| | | @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" |
| | |
| | | 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) { |