|
|
@@ -25,7 +25,7 @@
|
|
|
</el-form>
|
|
|
</vab-query-form-top-panel>
|
|
|
<vab-query-form-left-panel :span="12">
|
|
|
- <el-button v-permissions="['contract:manage:add']" icon="el-icon-plus" type="primary" @click="handleEdit()">
|
|
|
+ <el-button v-permissions="['consult:manage:add']" icon="el-icon-plus" type="primary" @click="handleEdit()">
|
|
|
新建
|
|
|
</el-button>
|
|
|
</vab-query-form-left-panel>
|
|
|
@@ -55,8 +55,10 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" fixed="right" label="操作" width="140px">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button type="text" @click="handleEdit(scope.row)">编辑</el-button>
|
|
|
- <el-button type="text" @click="handleFollowUp(scope.row)">跟进</el-button>
|
|
|
+ <el-button v-permissions="['consult:manage:edit']" type="text" @click="handleEdit(scope.row)">编辑</el-button>
|
|
|
+ <el-button v-permissions="['consult:manage:followup']" type="text" @click="handleFollowUp(scope.row)">
|
|
|
+ 跟进
|
|
|
+ </el-button>
|
|
|
<el-button type="text" @click="handleDelete(scope.row)">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|