|
@ -126,7 +126,7 @@ |
|
|
<el-table-column fixed="right" |
|
|
<el-table-column fixed="right" |
|
|
label="操作" |
|
|
label="操作" |
|
|
align="center" |
|
|
align="center" |
|
|
width="200"> |
|
|
width="220"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<el-button @click="handleDetail(scope.row)" |
|
|
<el-button @click="handleDetail(scope.row)" |
|
|
type="text" |
|
|
type="text" |
|
@ -136,6 +136,10 @@ |
|
|
type="text" |
|
|
type="text" |
|
|
size="small" |
|
|
size="small" |
|
|
class="div-table-button--edit">编辑</el-button> |
|
|
class="div-table-button--edit">编辑</el-button> |
|
|
|
|
|
<el-button @click="handleCopy(scope.row)" |
|
|
|
|
|
type="text" |
|
|
|
|
|
size="small" |
|
|
|
|
|
class="div-table-button--edit">复制</el-button> |
|
|
<el-button @click="handlePersonList(scope.row)" |
|
|
<el-button @click="handlePersonList(scope.row)" |
|
|
type="text" |
|
|
type="text" |
|
|
size="small" |
|
|
size="small" |
|
@ -304,6 +308,13 @@ export default { |
|
|
this.formType = 'edit' |
|
|
this.formType = 'edit' |
|
|
this.showAdd = true; |
|
|
this.showAdd = true; |
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
|
async handleCopy (row) { |
|
|
|
|
|
this.policyId = row.policyId |
|
|
|
|
|
this.addDiaTitle = '新增政策' |
|
|
|
|
|
this.formType = 'copy' |
|
|
|
|
|
this.showAdd = true; |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
//加载组织数据 |
|
|
//加载组织数据 |
|
|