提交代码

This commit is contained in:
jiang 2024-11-20 17:30:43 +08:00
parent c754a0969f
commit a69d44755a
2 changed files with 9 additions and 9 deletions

View File

@ -23,7 +23,7 @@
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['system:DataSetLabels:add']"
v-hasPermi="['dataCenter:dataSetLabels:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
@ -64,21 +64,21 @@
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['system:DataSetLabels:edit']"
v-hasPermi="['dataCenter:dataSetLabels:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-plus"
@click="handleAdd(scope.row)"
v-hasPermi="['system:DataSetLabels:add']"
v-hasPermi="['dataCenter:dataSetLabels:add']"
>新增</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['system:DataSetLabels:remove']"
v-hasPermi="['dataCenter:dataSetLabels:remove']"
>删除</el-button>
</template>
</el-table-column>

View File

@ -40,7 +40,7 @@
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['dataCenter:teamMember:add']"
v-hasPermi="['dataCenter:member:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
@ -51,7 +51,7 @@
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['dataCenter:teamMember:edit']"
v-hasPermi="['dataCenter:member:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
@ -62,7 +62,7 @@
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['dataCenter:teamMember:remove']"
v-hasPermi="['dataCenter:member:remove']"
>删除</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
@ -89,14 +89,14 @@
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['dataCenter:teamMember:edit']"
v-hasPermi="['dataCenter:member:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['dataCenter:teamMember:remove']"
v-hasPermi="['dataCenter:member:remove']"
>删除</el-button>
</template>
</el-table-column>