dengzedong
2024-10-10 b45bad33154fb97b76e6c54a86609d446f02ad21
提交 | 用户 | 时间
1c14d6 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="pointNo">
12         <el-input
13           v-model="queryParams.pointNo"
14           placeholder="请输入测点编码"
15           clearable
16           @keyup.enter="handleQuery"
17           class="!w-240px"
18         />
19       </el-form-item>
20       <el-form-item label="测点名称" prop="pointName">
21         <el-input
22           v-model="queryParams.pointName"
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')"
85c27f 42           v-hasPermi="['data:point:create']"
1c14d6 43         >
L 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>
660c92 53     <el-table border stripe v-loading="loading" :data="list">
L 54       <el-table-column fixed label="测点编码" header-align="center" align="left" min-width="100" prop="pointNo" />
85c27f 55       <el-table-column label="测点名称" header-align="center" align="left" min-width="100" prop="pointName" />
1c14d6 56       <el-table-column label="测点类型" align="center" prop="pointType" />
L 57       <el-table-column label="数据类型" align="center" prop="dataType" />
58       <el-table-column label="测量单位" align="center" prop="unit" />
59       <el-table-column label="单位转换" align="center" prop="unittransfactor" />
60       <el-table-column label="默认值" align="center" prop="defaultValue" />
61       <el-table-column label="采集频率" align="center" prop="minfreqid" />
85c27f 62       <el-table-column label="是否启用" align="center" prop="isEnable">
63         <template #default="scope">
64           <el-tag v-if="scope.row.isEnable === 1" size="small">是</el-tag>
65           <el-tag v-else size="small" type="danger">否</el-tag>
66         </template>
67       </el-table-column>
1c14d6 68
L 69       <el-table-column label="操作" align="center" min-width="110" fixed="right">
70         <template #default="scope">
71           <el-button
72             link
73             type="primary"
74             @click="openForm('update', scope.row.id)"
85c27f 75             v-hasPermi="['data:point:update']"
1c14d6 76           >
L 77             编辑
78           </el-button>
79           <el-button
80             link
81             type="danger"
82             @click="handleDelete(scope.row.id)"
85c27f 83             v-hasPermi="['data:point:delete']"
1c14d6 84           >
L 85             删除
86           </el-button>
87         </template>
88       </el-table-column>
89     </el-table>
90     <!-- 分页 -->
91     <Pagination
92       :total="total"
93       v-model:page="queryParams.pageNo"
94       v-model:limit="queryParams.pageSize"
95       @pagination="getList"
96     />
97   </ContentWrap>
98
99   <!-- 表单弹窗:添加/修改 -->
100   <DaPointForm ref="formRef" @success="getList" />
101
102 </template>
103 <script lang="ts" setup>
104 import DaPointForm from './DaPointForm.vue'
105 import * as DaPoint from '@/api/data/da/point'
106
85c27f 107 defineOptions({name: 'DataPoint'})
1c14d6 108
L 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     pointNo: undefined,
119     pointName: 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 DaPoint.getDaPointPage(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 DaPoint.deleteDaPoint(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>