|
|
@@ -298,7 +298,7 @@
|
|
|
@keyup.enter.native="handleClick({ name: 'bid' })" />
|
|
|
</vab-query-form-left-panel>
|
|
|
<vab-query-form-right-panel :span="12">
|
|
|
- <el-button icon="el-icon-plus" @click="addBid">新建招标记录</el-button>
|
|
|
+ <el-button v-permissions="['base:bid:add']" icon="el-icon-plus" @click="addBid">新建招标记录</el-button>
|
|
|
</vab-query-form-right-panel>
|
|
|
</vab-query-form>
|
|
|
<el-table border :data="bidlist" height="calc(100% - 42px)">
|
|
|
@@ -330,12 +330,14 @@
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
v-if="scope.row.status == '10' || scope.row.status == '40'"
|
|
|
+ v-permissions="['base:bid:add']"
|
|
|
type="text"
|
|
|
@click="bidEdit(scope.row)">
|
|
|
编辑
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
v-if="scope.row.status == '10' || scope.row.status == '40'"
|
|
|
+ v-permissions="['base:bid:delete']"
|
|
|
type="text"
|
|
|
@click="bidDel(scope.row)">
|
|
|
删除
|