2024-08-26 20:05:04 +08:00
|
|
|
|
<template>
|
2024-10-23 20:53:58 +08:00
|
|
|
|
<div class='table-box'>
|
|
|
|
|
|
<ProTable
|
|
|
|
|
|
ref='proTable'
|
|
|
|
|
|
:columns='columns'
|
2024-10-31 08:51:30 +08:00
|
|
|
|
:request-api="getTableList"
|
|
|
|
|
|
:init-param="initParam"
|
|
|
|
|
|
:data-callback="dataCallback"
|
2024-10-23 20:53:58 +08:00
|
|
|
|
>
|
2024-10-31 08:51:30 +08:00
|
|
|
|
<!-- :data='testScriptData' 如果要显示静态数据,就切换该配置 -->
|
2024-10-23 20:53:58 +08:00
|
|
|
|
<!-- 表格 header 按钮 -->
|
|
|
|
|
|
<template #tableHeader='scope'>
|
2024-10-24 13:24:54 +08:00
|
|
|
|
<el-button type='primary' :icon='CirclePlus' >新增</el-button>
|
|
|
|
|
|
<el-button type='primary' :icon='Download' plain >导出数据</el-button>
|
2024-10-23 20:53:58 +08:00
|
|
|
|
<el-button type='danger' :icon='Delete' plain :disabled='!scope.isSelected'>
|
2024-10-24 13:24:54 +08:00
|
|
|
|
批量删除
|
2024-10-23 20:53:58 +08:00
|
|
|
|
</el-button>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<!-- 表格操作 -->
|
|
|
|
|
|
<template #operation='scope'>
|
|
|
|
|
|
<el-button type='primary' link :icon='EditPen' >编辑</el-button>
|
|
|
|
|
|
<el-button type='primary' link :icon='Delete' >删除</el-button>
|
2024-11-01 13:49:32 +08:00
|
|
|
|
<el-button type='primary' :model-value="false" link :icon='Upload' >升级为模板</el-button>
|
2024-10-23 20:53:58 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
</ProTable>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2024-08-26 20:05:04 +08:00
|
|
|
|
</template>
|
2024-10-23 20:53:58 +08:00
|
|
|
|
|
|
|
|
|
|
<script setup lang='tsx' name='useRole'>
|
2024-11-18 09:02:57 +08:00
|
|
|
|
import { TestScript } from '@/api/device/interface/testScript'
|
2024-10-23 20:53:58 +08:00
|
|
|
|
import { useHandleData } from '@/hooks/useHandleData'
|
|
|
|
|
|
import { useDownload } from '@/hooks/useDownload'
|
|
|
|
|
|
import { useAuthButtons } from '@/hooks/useAuthButtons'
|
|
|
|
|
|
import ProTable from '@/components/ProTable/index.vue'
|
|
|
|
|
|
import ImportExcel from '@/components/ImportExcel/index.vue'
|
|
|
|
|
|
import { ProTableInstance, ColumnProps } from '@/components/ProTable/interface'
|
|
|
|
|
|
|
|
|
|
|
|
import { CirclePlus, Delete, EditPen, Share, Download, Upload, View, Refresh } from '@element-plus/icons-vue'
|
2024-11-18 09:02:57 +08:00
|
|
|
|
import testScriptDataList from '@/api/device/testScript/testScriptData'
|
2024-10-23 20:53:58 +08:00
|
|
|
|
import { useDictStore } from '@/stores/modules/dict'
|
|
|
|
|
|
import {
|
|
|
|
|
|
getTestScriptList,
|
2024-11-18 09:02:57 +08:00
|
|
|
|
} from '@/api/device/testScript/testScript'
|
2024-10-23 20:53:58 +08:00
|
|
|
|
|
|
|
|
|
|
const dictStore = useDictStore()
|
|
|
|
|
|
|
2024-10-31 08:51:30 +08:00
|
|
|
|
// const testScriptData = testScriptDataList
|
2024-10-23 20:53:58 +08:00
|
|
|
|
// ProTable 实例
|
|
|
|
|
|
const proTable = ref<ProTableInstance>()
|
|
|
|
|
|
|
|
|
|
|
|
// 如果表格需要初始化请求参数,直接定义传给 ProTable (之后每次请求都会自动带上该参数,此参数更改之后也会一直带上,改变此参数会自动刷新表格数据)
|
2024-10-31 08:51:30 +08:00
|
|
|
|
const initParam = reactive({ pattern: 1 })//表示当前用户选择的是模拟式测试,后期要读取pinia中的数据 TODO...
|
2024-10-23 20:53:58 +08:00
|
|
|
|
|
|
|
|
|
|
// dataCallback 是对于返回的表格数据做处理,如果你后台返回的数据不是 list && total 这些字段,可以在这里进行处理成这些字段
|
|
|
|
|
|
// 或者直接去 hooks/useTable.ts 文件中把字段改为你后端对应的就行
|
|
|
|
|
|
const dataCallback = (data: any) => {
|
|
|
|
|
|
return {
|
|
|
|
|
|
list: data.list,
|
|
|
|
|
|
total: data.total,
|
2024-10-31 08:51:30 +08:00
|
|
|
|
pageNum: data.pageNum,
|
|
|
|
|
|
pageSize: data.pageSize,
|
2024-10-23 20:53:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 如果你想在请求之前对当前请求参数做一些操作,可以自定义如下函数:params 为当前所有的请求参数(包括分页),最后返回请求列表接口
|
|
|
|
|
|
// 默认不做操作就直接在 ProTable 组件上绑定 :requestApi="getUserList"
|
|
|
|
|
|
const getTableList = (params: any) => {
|
|
|
|
|
|
let newParams = JSON.parse(JSON.stringify(params))
|
|
|
|
|
|
newParams.createTime && (newParams.startTime = newParams.createTime[0])
|
|
|
|
|
|
newParams.createTime && (newParams.endTime = newParams.createTime[1])
|
|
|
|
|
|
delete newParams.createTime
|
|
|
|
|
|
return getTestScriptList(newParams)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 页面按钮权限(按钮权限既可以使用 hooks,也可以直接使用 v-auth 指令,指令适合直接绑定在按钮上,hooks 适合根据按钮权限显示不同的内容)
|
|
|
|
|
|
const { BUTTONS } = useAuthButtons()
|
|
|
|
|
|
|
|
|
|
|
|
// 表格配置项
|
2024-10-31 08:51:30 +08:00
|
|
|
|
const columns = reactive<ColumnProps<TestScript.TestScriptBO>[]>([
|
2024-10-23 20:53:58 +08:00
|
|
|
|
{ type: 'selection', fixed: 'left', width: 70 },
|
|
|
|
|
|
{ type: 'index', fixed: 'left', width: 70, label: '序号' },
|
|
|
|
|
|
{
|
2024-10-31 08:51:30 +08:00
|
|
|
|
prop: 'name',
|
2024-10-23 20:53:58 +08:00
|
|
|
|
label: '名称',
|
|
|
|
|
|
search: { el: 'input' },
|
|
|
|
|
|
minWidth: 350,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
2024-10-31 08:51:30 +08:00
|
|
|
|
prop: 'standardName',
|
|
|
|
|
|
label: '参照标准名称',
|
|
|
|
|
|
minWidth: 150,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
prop: 'standardTime',
|
|
|
|
|
|
label: '标准推行时间',
|
|
|
|
|
|
minWidth: 150,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
prop: 'valueType',
|
2024-10-23 20:53:58 +08:00
|
|
|
|
label: '值类型',
|
2024-10-31 08:51:30 +08:00
|
|
|
|
enum: dictStore.getDictData('testScriptValueType'),
|
|
|
|
|
|
fieldNames: { label: 'label', value: 'id' },
|
2024-10-24 09:59:31 +08:00
|
|
|
|
search: { el: 'select' },
|
2024-10-23 20:53:58 +08:00
|
|
|
|
minWidth: 150,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
2024-10-31 08:51:30 +08:00
|
|
|
|
prop: 'type',
|
2024-10-23 20:53:58 +08:00
|
|
|
|
label: '模板类型',
|
2024-10-31 08:51:30 +08:00
|
|
|
|
enum: dictStore.getDictData('testScriptType'),
|
|
|
|
|
|
fieldNames: { label: 'label', value: 'id' },
|
2024-10-24 09:59:31 +08:00
|
|
|
|
search: { el: 'select' },
|
2024-10-23 20:53:58 +08:00
|
|
|
|
minWidth: 150,
|
|
|
|
|
|
},
|
2024-11-14 18:26:34 +08:00
|
|
|
|
{ prop: 'operation', label: '操作', fixed: 'right', width: 250 },
|
2024-10-23 20:53:58 +08:00
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-08-26 20:05:04 +08:00
|
|
|
|
</script>
|