This commit is contained in:
dute7liang
2024-01-06 00:16:28 +08:00
parent c084e9f849
commit 7721f963c7
14 changed files with 402 additions and 26 deletions

View File

@@ -54,13 +54,6 @@
<el-table-column label="守护值" align="center" prop="guardValue" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template v-slot="scope">
<el-button
size="mini"
type="text"
icon="el-icon-info"
@click="handleConsumerLog(scope.row)"
>分销记录
</el-button>
</template>
</el-table-column>
</el-table>
@@ -76,7 +69,7 @@
</template>
<script>
import { listGuardTotal, getGuardTotal, delGuardTotal, addGuardTotal, updateGuardTotal } from "@/api/cai/guardTotal";
import {listGuardTotal} from "@/api/cai/guardTotal";
export default {
name: "GuardTotal",
@@ -136,8 +129,6 @@ export default {
this.single = selection.length!==1
this.multiple = !selection.length
},
handleConsumerLog(row) {
},
}
};
</script>