fix: 列表模块全局组件修复内容

dev-deviceSetting
donghao 1 year ago
parent 9d65dc862d
commit d8541cbe9b

@ -2,7 +2,7 @@
* @Author: donghao donghao@supervision.ltd
* @Date: 2024-01-18 14:27:25
* @LastEditors: donghao donghao@supervision.ltd
* @LastEditTime: 2024-01-18 15:29:02
* @LastEditTime: 2024-02-21 15:08:35
* @FilePath: \General-AI-Platform-Web-Client\src\components\CustomTable\src\column.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
@ -31,6 +31,8 @@
</template>
<script lang="ts" setup>
import { computed, ref, watch } from "vue";
interface ModalProps {
visible: boolean;
columns: XTableColumn[];

@ -308,13 +308,13 @@ export default defineComponent({
/**操作按钮事件 */
function handleDel(row) {
console.log(row, "handleDel");
emit("actions", {
type: "delete",
data: { ...row }
});
}
// function handleDel(row) {
// console.log(row, "handleDel");
// emit("actions", {
// type: "delete",
// data: { ...row }
// });
// }
/**
*

Loading…
Cancel
Save