liriming
2024-08-29 325d3d48a79f8ccb42acf217abd0d229f26a64b0
提交 | 用户 | 时间
325d3d 1 <template>
L 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="serverName">
12         <el-input
13           v-model="queryParams.serverName"
14           placeholder="请输入服务名"
15           clearable
16           @keyup.enter="handleQuery"
17           class="!w-240px"
18         />
19       </el-form-item>
20       <el-form-item>
21         <el-button @click="handleQuery">
22           <Icon icon="ep:search" class="mr-5px" />
23           搜索
24         </el-button>
25         <el-button @click="resetQuery">
26           <Icon icon="ep:refresh" class="mr-5px" />
27           重置
28         </el-button>
29         <el-button
30           type="primary"
31           plain
32           @click="openForm('create')"
33           v-hasPermi="['system:tenant:create']"
34         >
35           <Icon icon="ep:plus" class="mr-5px" />
36           新增
37         </el-button>
38       </el-form-item>
39     </el-form>
40   </ContentWrap>
41
42   <!-- 列表 -->
43   <ContentWrap>
44     <el-table v-loading="loading" :data="list">
45       <el-table-column label="服务名" align="center" prop="serverName" />
46       <el-table-column label="端点URL" align="center" prop="endpointUrl" />
47       <el-table-column label="安全策略" align="center" prop="securityPolicy" />
48       <el-table-column label="安全模式" align="center" prop="securityMode" />
49       <el-table-column label="连接方式" align="center" prop="connectionType" />
50       <el-table-column label="用户名" align="center" prop="userName" />
51       <el-table-column label="密码" align="center" prop="password" />
52       <el-table-column label="安全证书路径" align="center" prop="certificatePath" />
53       <el-table-column label="设备不活动超时时间" align="center" prop="connectInactivityTimeout" />
54       <el-table-column label="重连超时" align="center" prop="reconnectInterval" />
55       <el-table-column label="操作" align="center" min-width="110" fixed="right">
56         <template #default="scope">
57           <el-button
58             link
59             type="primary"
60             @click="openForm('update', scope.row.id)"
61             v-hasPermi="['system:tenant:update']"
62           >
63             编辑
64           </el-button>
65           <el-button
66             link
67             type="danger"
68             @click="handleDelete(scope.row.id)"
69             v-hasPermi="['system:tenant:delete']"
70           >
71             删除
72           </el-button>
73         </template>
74       </el-table-column>
75     </el-table>
76     <!-- 分页 -->
77     <Pagination
78       :total="total"
79       v-model:page="queryParams.pageNo"
80       v-model:limit="queryParams.pageSize"
81       @pagination="getList"
82     />
83   </ContentWrap>
84
85   <!-- 表单弹窗:添加/修改 -->
86   <OpcUaDeviceForm ref="formRef" @success="getList" />
87
88 </template>
89 <script lang="ts" setup>
90 import * as OpcUaApi from '@/api/data/channel/opcua'
91 import OpcUaDeviceForm from './OpcUaDeviceForm.vue'
92
93 defineOptions({name: 'DataOpcUa'})
94
95   const message = useMessage() // 消息弹窗
96   const {t} = useI18n() // 国际化
97
98   const loading = ref(true) // 列表的加载中
99   const total = ref(0) // 列表的总页数
100   const list = ref([]) // 列表的数据
101   const queryParams = reactive({
102     pageNo: 1,
103     pageSize: 10,
104     serverName: undefined
105   })
106   const queryFormRef = ref() // 搜索的表单
107   const exportLoading = ref(false) // 导出的加载中
108
109   /** 查询列表 */
110   const getList = async () => {
111     loading.value = true
112     try {
113       const page = await OpcUaApi.getOpcUaDevicePage(queryParams)
114       list.value = page.list
115       total.value = page.total
116     } finally {
117       loading.value = false
118     }
119   }
120
121   /** 搜索按钮操作 */
122   const handleQuery = () => {
123     queryParams.pageNo = 1
124     getList()
125   }
126
127   /** 重置按钮操作 */
128   const resetQuery = () => {
129     queryFormRef.value.resetFields()
130     handleQuery()
131   }
132
133   /** 添加/修改操作 */
134   const formRef = ref()
135   const openForm = (type: string, id?: number) => {
136     formRef.value.open(type, id)
137   }
138
139   /** 删除按钮操作 */
140   const handleDelete = async (id: number) => {
141     try {
142       // 删除的二次确认
143       await message.delConfirm()
144       // 发起删除
145       await OpcUaApi.deleteOpcUaDevice(id)
146       message.success(t('common.delSuccess'))
147       // 刷新列表
148       await getList()
149     } catch {
150     }
151   }
152
153   /** 初始化 **/
154   onMounted(async () => {
155     await getList()
156   })
157 </script>