|
|
@ -40,11 +40,11 @@ |
|
|
|
<div class=""> |
|
|
|
<el-table v-loading="tableLoading" :data="dataList" border style="width: 100%" @selection-change="handleSelectionChange"> |
|
|
|
<el-table-column fixed width="60" label="序号" type="index" :index="indexMethod" align="center"/> |
|
|
|
<el-table-column fixed width="200" label="操作" align="center"> |
|
|
|
<el-table-column fixed width="220" label="操作" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button :disabled="scope.row.nodeState =='发起申请' ? false : scope.row.nodeState == '待提交' ? false : true" type="primary" size="small" @click="toEdit(scope.row)">办理 |
|
|
|
</el-button> |
|
|
|
<el-button type="primary" size="small" @click="toTermination(scope.row)">终止</el-button> |
|
|
|
<el-button type="danger" :disabled="scope.row.nodeState =='已办结' ? true : scope.row.nodeState == '已终止' ? true : false" size="small" @click="toTermination(scope.row)">终止</el-button> |
|
|
|
<el-button type="primary" size="small" @click="toInfo(scope.row)">查看</el-button> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|