|
@@ -55,7 +55,6 @@
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template #default="scope">
|
|
|
<el-text class="common-btn-text-primary" @click="handleView(scope.row)">查看</el-text>
|
|
|
- <el-text class="common-btn-text-primary" @click="handleEdit(scope.row)">编辑</el-text>
|
|
|
<el-text class="common-btn-text-danger" @click="handleDelete(scope.row)">删除</el-text>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -72,7 +71,7 @@
|
|
|
import UserDetails from '@/views/userManage/userDetails.vue';
|
|
|
import {addDateRange2} from '@/utils/ruoyi.js';
|
|
|
|
|
|
-const {proxy} = getCurrentInstance();
|
|
|
+const { proxy } = getCurrentInstance();
|
|
|
const queryFormRef = ref();
|
|
|
// 搜索条件
|
|
|
const queryParams = reactive({
|
|
@@ -143,9 +142,6 @@ const handleView = (row) => {
|
|
|
};
|
|
|
};
|
|
|
|
|
|
-const handleEdit = () => {
|
|
|
-};
|
|
|
-
|
|
|
// 多选框选中数据
|
|
|
const handleSelectionChange = (selection) => {
|
|
|
ids.value = selection.map((item) => item.reportId);
|