修改兼容性

master
suixy 2 months ago
parent b3eae613f3
commit b272406007

@ -31,7 +31,7 @@
type="primary"
plain
icon="Plus"
@click="handleAdd"
v-hasPermi="['ems/base:baseSharePrice:add']"
>新增
@ -42,7 +42,7 @@
type="success"
plain
icon="Edit"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['ems/base:baseSharePrice:edit']"
@ -54,7 +54,7 @@
type="danger"
plain
icon="Delete"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['ems/base:baseSharePrice:remove']"
@ -66,7 +66,7 @@
type="warning"
plain
icon="Download"
@click="handleExport"
v-hasPermi="['ems/base:baseSharePrice:export']"
>导出
@ -91,7 +91,7 @@
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="100">
<template #default="scope">
<el-button
type="text"
icon="Edit"
@click="handleUpdate(scope.row)"
@ -99,7 +99,7 @@
>修改
</el-button>
<el-button
type="text"
icon="Delete"
@click="handleDelete(scope.row)"
@ -184,7 +184,11 @@ import {
export default {
name: 'BaseSharePrice',
dicts: ['price_type'],
computed: {
price_type() {
return this.useDict('price_type').price_type;
}
},
data() {
return {
//

Loading…
Cancel
Save