dengzedong
2024-10-10 b45bad33154fb97b76e6c54a86609d446f02ad21
提交 | 用户 | 时间
2f0aa4 1 <template>
2   <!-- 搜索 -->
3   <ContentWrap>
4     <el-form
5       class="-mb-15px"
6       :model="queryParams"
7       ref="queryFormRef"
8       :inline="true"
9       label-width="68px"
10     >
11       <el-form-item label="模型编号" prop="modelCode">
12         <el-input
13           v-model="queryParams.modelCode"
14           placeholder="请输入模型编号"
15           clearable
16           @keyup.enter="handleQuery"
17           class="!w-240px"
18         />
19       </el-form-item>
20       <el-form-item label="模型名称" prop="modelName">
21         <el-input
22           v-model="queryParams.modelName"
23           placeholder="请输入模型名称"
24           clearable
25           @keyup.enter="handleQuery"
26           class="!w-240px"
27         />
28       </el-form-item>
29       <el-form-item>
30         <el-button @click="handleQuery">
31           <Icon icon="ep:search" class="mr-5px" />
32           搜索
33         </el-button>
34         <el-button @click="resetQuery">
35           <Icon icon="ep:refresh" class="mr-5px" />
36           重置
37         </el-button>
38         <el-button
39           type="primary"
40           plain
41           @click="openForm('create')"
42           v-hasPermi="['sche:model:create']"
43         >
44           <Icon icon="ep:plus" class="mr-5px" />
45           新增
46         </el-button>
47       </el-form-item>
48     </el-form>
49   </ContentWrap>
50
51   <!-- 列表 -->
52   <ContentWrap>
53     <el-table v-loading="loading" :data="list">
6badb7 54       <el-table-column label="模型编号" align="center" prop="modelCode" min-width="100"/>
55       <el-table-column label="模型名称" align="center" prop="modelName" min-width="100"/>
56       <el-table-column label="模型类型" align="center" prop="modelType" min-width="100"/>
d3ee81 57       <el-table-column label="类名" header-align="center" align="left" prop="className" min-width="200"/>
6badb7 58       <el-table-column label="方法名" align="center" prop="methodName" min-width="100"/>
59       <el-table-column label="参数数量" align="center" prop="portLength" min-width="100"/>
d3ee81 60       <el-table-column label="参数构造" header-align="center" align="left" prop="paramStructure" min-width="200" />
6badb7 61       <el-table-column label="调用方式" align="center" prop="invocation" min-width="100">
62         <template #default="scope">
63           <dict-tag :type="DICT_TYPE.SCHE_MODEL_INVOCATION" :value="scope.row.invocation" />
64         </template>
65       </el-table-column>
66       <el-table-column label="操作" align="center" min-width="100" fixed="right">
2f0aa4 67         <template #default="scope">
68           <el-button
69             link
70             type="primary"
71             @click="openForm('update', scope.row.id)"
72             v-hasPermi="['sche:model:update']"
73           >
74             编辑
75           </el-button>
76           <el-button
77             link
78             type="danger"
79             @click="handleDelete(scope.row.id)"
80             v-hasPermi="['sche:model:delete']"
81           >
82             删除
83           </el-button>
84         </template>
85       </el-table-column>
86     </el-table>
87     <!-- 分页 -->
88     <Pagination
89       :total="total"
90       v-model:page="queryParams.pageNo"
91       v-model:limit="queryParams.pageSize"
92       @pagination="getList"
93     />
94   </ContentWrap>
95
96   <!-- 表单弹窗:添加/修改 -->
97   <ScheduleModelForm ref="formRef" @success="getList" />
98
99 </template>
100 <script lang="ts" setup>
101   import {DICT_TYPE, getIntDictOptions} from '@/utils/dict'
102   import {dateFormatter} from '@/utils/formatTime'
103   import download from '@/utils/download'
104   import * as ScheduleModelApi from '@/api/model/sche/model'
105   import ScheduleModelForm from './ScheduleModelForm.vue'
106
107   defineOptions({name: 'ScheduleModel'})
108
109   const message = useMessage() // 消息弹窗
110   const {t} = useI18n() // 国际化
111
112   const loading = ref(true) // 列表的加载中
113   const total = ref(0) // 列表的总页数
114   const list = ref([]) // 列表的数据
115   const queryParams = reactive({
116     pageNo: 1,
117     pageSize: 10,
118     modelCode: undefined,
119     modelName: undefined
120   })
121   const queryFormRef = ref() // 搜索的表单
122   const exportLoading = ref(false) // 导出的加载中
123
124   /** 查询列表 */
125   const getList = async () => {
126     loading.value = true
127     try {
128       const page = await ScheduleModelApi.getScheduleModelPage(queryParams)
129       list.value = page.list
130       total.value = page.total
131     } finally {
132       loading.value = false
133     }
134   }
135
136   /** 搜索按钮操作 */
137   const handleQuery = () => {
138     queryParams.pageNo = 1
139     getList()
140   }
141
142   /** 重置按钮操作 */
143   const resetQuery = () => {
144     queryFormRef.value.resetFields()
145     handleQuery()
146   }
147
148   /** 添加/修改操作 */
149   const formRef = ref()
150   const openForm = (type: string, id?: number) => {
151     formRef.value.open(type, id)
152   }
153
154   /** 删除按钮操作 */
155   const handleDelete = async (id: number) => {
156     try {
157       // 删除的二次确认
158       await message.delConfirm()
159       // 发起删除
160       await ScheduleModelApi.deleteScheduleModel(id)
161       message.success(t('common.delSuccess'))
162       // 刷新列表
163       await getList()
164     } catch {
165     }
166   }
167
168   /** 初始化 **/
169   onMounted(async () => {
170     await getList()
171   })
172 </script>