|
@@ -1,8 +1,8 @@
|
|
<template>
|
|
<template>
|
|
- <div class="siteManage-main variableList">
|
|
|
|
|
|
+ <div class="siteManage-main watchDog">
|
|
<!-- 筛选start -->
|
|
<!-- 筛选start -->
|
|
<div class="filter-container mb-20">
|
|
<div class="filter-container mb-20">
|
|
- <div class="left">
|
|
|
|
|
|
+ <div class="left">
|
|
<div>
|
|
<div>
|
|
<a class="" style="margin-right: 30px">【测试站点1】站点的所有变量</a>
|
|
<a class="" style="margin-right: 30px">【测试站点1】站点的所有变量</a>
|
|
<el-button icon="el-icon-plus" type="success" @click="addItem()">
|
|
<el-button icon="el-icon-plus" type="success" @click="addItem()">
|
|
@@ -19,63 +19,91 @@
|
|
<!-- 筛选end -->
|
|
<!-- 筛选end -->
|
|
|
|
|
|
<!-- 表格start -->
|
|
<!-- 表格start -->
|
|
- <el-table
|
|
|
|
- :data="tableData"
|
|
|
|
- border
|
|
|
|
- stripe
|
|
|
|
- :header-cell-style="headClass"
|
|
|
|
- :cell-style="cellStyle"
|
|
|
|
- >
|
|
|
|
- <el-table-column
|
|
|
|
- fixed
|
|
|
|
- prop="watchStatus"
|
|
|
|
- label="状态"
|
|
|
|
- width="50"
|
|
|
|
- align="center"
|
|
|
|
- >
|
|
|
|
- <template #default>
|
|
|
|
- <el-avatar class="status"></el-avatar>
|
|
|
|
|
|
+ <el-table :data="tableData" border stripe :header-cell-style="headClass">
|
|
|
|
+ <el-table-column prop="status" align="center" label="状态" width="50">
|
|
|
|
+ <template #default="scope">
|
|
|
|
+ <el-avatar
|
|
|
|
+ class="status"
|
|
|
|
+ :style="
|
|
|
|
+ scope.row.status == 0
|
|
|
|
+ ? 'background-color:red'
|
|
|
|
+ : 'background-color:#04F21C'
|
|
|
|
+ "
|
|
|
|
+ ></el-avatar>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="watchCode" label="名称" width=""></el-table-column>
|
|
|
|
<el-table-column
|
|
<el-table-column
|
|
- prop="ratedVoltage"
|
|
|
|
|
|
+ prop="monitorDeviceName"
|
|
|
|
+ label="名称"
|
|
|
|
+ align="center"
|
|
|
|
+ width="200px"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="monitorDeviceCode"
|
|
label="编号"
|
|
label="编号"
|
|
|
|
+ align="center"
|
|
width=""
|
|
width=""
|
|
></el-table-column>
|
|
></el-table-column>
|
|
|
|
+ <!-- <el-table-column
|
|
|
|
+ prop="loopMeterAddress"
|
|
|
|
+ label="回路表计地址"
|
|
|
|
+ align="center"
|
|
|
|
+ width=""
|
|
|
|
+ ></el-table-column> -->
|
|
<el-table-column
|
|
<el-table-column
|
|
- prop="ratedCurrent"
|
|
|
|
|
|
+ prop="ratedVoltage"
|
|
label="额定电压"
|
|
label="额定电压"
|
|
|
|
+ align="center"
|
|
width=""
|
|
width=""
|
|
></el-table-column>
|
|
></el-table-column>
|
|
- <el-table-column prop="fzlMx" label="额定电流" width=""></el-table-column>
|
|
|
|
<el-table-column
|
|
<el-table-column
|
|
- prop="powerAnalysis"
|
|
|
|
- label="电流负载率门限"
|
|
|
|
|
|
+ prop="ratedCurrent"
|
|
|
|
+ label="额定电流"
|
|
|
|
+ align="center"
|
|
width=""
|
|
width=""
|
|
></el-table-column>
|
|
></el-table-column>
|
|
- <el-table-column prop="watchAddress" label="视频画面" width="">
|
|
|
|
- <template #default="scope">
|
|
|
|
- <a @click="checkVideo(scope.row)">查看</a>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column fixed="right" label="操作" width="180">
|
|
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="currentLoadRate"
|
|
|
|
+ label="电流负载率门限"
|
|
|
|
+ align="center"
|
|
|
|
+ width="150"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <!-- <el-table-column
|
|
|
|
+ prop="qualityAnalysis"
|
|
|
|
+ label="电能质量分析"
|
|
|
|
+ align="center"
|
|
|
|
+ width=""
|
|
|
|
+ ></el-table-column> -->
|
|
|
|
+ <el-table-column fixed="right" label="操作" width="140">
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
<el-button
|
|
<el-button
|
|
type="text"
|
|
type="text"
|
|
size="small"
|
|
size="small"
|
|
@click.prevent="editRow(scope.row)"
|
|
@click.prevent="editRow(scope.row)"
|
|
>
|
|
>
|
|
- 修改
|
|
|
|
- </el-button>
|
|
|
|
- <el-button
|
|
|
|
- @click="handleDelete(scope.$index, scope.row)"
|
|
|
|
- type="text"
|
|
|
|
- size="small"
|
|
|
|
- class="delete-text"
|
|
|
|
- >
|
|
|
|
- 删除
|
|
|
|
|
|
+ 编辑
|
|
</el-button>
|
|
</el-button>
|
|
|
|
+ <el-popconfirm
|
|
|
|
+ confirm-button-text="是"
|
|
|
|
+ cancel-button-text="否"
|
|
|
|
+ icon="el-icon-info"
|
|
|
|
+ icon-color="red"
|
|
|
|
+ title="确定删除?"
|
|
|
|
+ @confirm="handleDelete(scope.row)"
|
|
|
|
+ @cancel="cancelEvent"
|
|
|
|
+ >
|
|
|
|
+ <template #reference>
|
|
|
|
+ <el-button type="text" size="small" class="delete-text">
|
|
|
|
+ 删除
|
|
|
|
+ </el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </el-popconfirm>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+
|
|
|
|
+ <el-table-column fixed="right" label="视频画面" width="100">
|
|
|
|
+ <template #default="scope">
|
|
|
|
+ <a @click="checkVideo(scope.row)">查看</a>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
@@ -84,165 +112,127 @@
|
|
<!-- 分页start -->
|
|
<!-- 分页start -->
|
|
<div class="paginationBlock">
|
|
<div class="paginationBlock">
|
|
<el-pagination
|
|
<el-pagination
|
|
|
|
+ v-model:currentPage="currentPage"
|
|
|
|
+ :page-sizes="[15, 20, 25, 30]"
|
|
|
|
+ :page-size="pageSize"
|
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
+ :total="total"
|
|
@size-change="handleSizeChange"
|
|
@size-change="handleSizeChange"
|
|
@current-change="handleCurrentChange"
|
|
@current-change="handleCurrentChange"
|
|
- :current-page="currentPage4"
|
|
|
|
- :page-sizes="[100, 200, 300, 400]"
|
|
|
|
- :page-size="100"
|
|
|
|
- layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
- :total="400"
|
|
|
|
|
|
+ background
|
|
></el-pagination>
|
|
></el-pagination>
|
|
</div>
|
|
</div>
|
|
-
|
|
|
|
<!-- 分页end -->
|
|
<!-- 分页end -->
|
|
|
|
|
|
<!--弹框组件开始-----------------------start-->
|
|
<!--弹框组件开始-----------------------start-->
|
|
<dialog-component
|
|
<dialog-component
|
|
- v-if="showDialog"
|
|
|
|
- ref="dialogComponent"
|
|
|
|
- :dialog-title="dialogTitle"
|
|
|
|
- :item-info="tableItem"
|
|
|
|
|
|
+ :dialogTitle="dialogTitle"
|
|
|
|
+ :itemInfo="tableItem"
|
|
@closeDialog="closeDialog"
|
|
@closeDialog="closeDialog"
|
|
|
|
+ :flag="showDialog"
|
|
></dialog-component>
|
|
></dialog-component>
|
|
<!--弹框组件开始-----------------------end-->
|
|
<!--弹框组件开始-----------------------end-->
|
|
|
|
|
|
- <!--弹框组件开始-----------------------start-->
|
|
|
|
|
|
+ <!--视频弹框组件开始-----------------------start-->
|
|
<check-video
|
|
<check-video
|
|
- v-if="showDialog"
|
|
|
|
- ref="checkVideo"
|
|
|
|
- :dialog-title="dialogTitle"
|
|
|
|
- :item-info="tableItem"
|
|
|
|
|
|
+ :dialogTitle="dialogTitle"
|
|
|
|
+ :itemInfo="tableItem"
|
|
@closeDialog="closeDialog"
|
|
@closeDialog="closeDialog"
|
|
|
|
+ :flag="showDialog2"
|
|
></check-video>
|
|
></check-video>
|
|
- <!--视频弹框组件开始-----------------------end-->
|
|
|
|
|
|
+ <!--视频弹框组件结束-----------------------end-->
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+import { defineComponent, ref, reactive, onMounted } from 'vue'
|
|
|
|
+import * as api from '@/api/siteManage/watchDog.js'
|
|
|
|
+import { ElMessage } from 'element-plus'
|
|
|
|
+
|
|
import DialogComponent from './dialogComponent'
|
|
import DialogComponent from './dialogComponent'
|
|
import checkVideo from './checkVideo'
|
|
import checkVideo from './checkVideo'
|
|
|
|
|
|
-export default {
|
|
|
|
- name: 'Camera',
|
|
|
|
-
|
|
|
|
|
|
+export default defineComponent({
|
|
components: { DialogComponent, checkVideo },
|
|
components: { DialogComponent, checkVideo },
|
|
|
|
+ setup(props, { emit }) {
|
|
|
|
+ const total = ref(0)
|
|
|
|
+ const pageSize = ref(15)
|
|
|
|
+ const currentPage = ref(1)
|
|
|
|
+ const goSiteListParam = ref('')
|
|
|
|
+ const platformAreaName = ref('')
|
|
|
|
+ const pageShow = ref(false)
|
|
|
|
|
|
- data() {
|
|
|
|
- return {
|
|
|
|
- currentPage4: 4,
|
|
|
|
-
|
|
|
|
- showDialog: false,
|
|
|
|
- tabPosition: 'one',
|
|
|
|
-
|
|
|
|
- input: '请输入状态',
|
|
|
|
- tableData: [
|
|
|
|
- {
|
|
|
|
- ratedVoltage: '10KV',
|
|
|
|
- watchName: '测试设备1',
|
|
|
|
- watchCode: 'cssb1',
|
|
|
|
- ratedCurrent: '58A',
|
|
|
|
- fzlMx: '80%',
|
|
|
|
- powerAnalysis: '开启',
|
|
|
|
- watchAddress: '1',
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- ratedVoltage: '10KV',
|
|
|
|
- watchName: '测试设备1',
|
|
|
|
- watchCode: 'cssb1',
|
|
|
|
- ratedCurrent: '58A',
|
|
|
|
- fzlMx: '80%',
|
|
|
|
- powerAnalysis: '开启',
|
|
|
|
- watchAddress: '1',
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- ratedVoltage: '10KV',
|
|
|
|
- watchName: '测试设备1',
|
|
|
|
- watchCode: 'cssb1',
|
|
|
|
- ratedCurrent: '58A',
|
|
|
|
- fzlMx: '80%',
|
|
|
|
- powerAnalysis: '开启',
|
|
|
|
- watchAddress: '1',
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- ratedVoltage: '10KV',
|
|
|
|
- watchName: '测试设备1',
|
|
|
|
- watchCode: 'cssb1',
|
|
|
|
- ratedCurrent: '58A',
|
|
|
|
- fzlMx: '80%',
|
|
|
|
- powerAnalysis: '开启',
|
|
|
|
- watchAddress: '1',
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- ratedVoltage: '10KV',
|
|
|
|
- watchName: '测试设备1',
|
|
|
|
- watchCode: 'cssb1',
|
|
|
|
- ratedCurrent: '58A',
|
|
|
|
- fzlMx: '80%',
|
|
|
|
- powerAnalysis: '开启',
|
|
|
|
- watchAddress: '1',
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- ratedVoltage: '10KV',
|
|
|
|
- watchName: '测试设备1',
|
|
|
|
- watchCode: 'cssb1',
|
|
|
|
- ratedCurrent: '58A',
|
|
|
|
- fzlMx: '80%',
|
|
|
|
- powerAnalysis: '开启',
|
|
|
|
- watchAddress: '1',
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- ratedVoltage: '10KV',
|
|
|
|
- watchName: '测试设备1',
|
|
|
|
- watchCode: 'cssb1',
|
|
|
|
- ratedCurrent: '58A',
|
|
|
|
- fzlMx: '80%',
|
|
|
|
- powerAnalysis: '开启',
|
|
|
|
- watchAddress: '1',
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- ratedVoltage: '10KV',
|
|
|
|
- watchName: '测试设备1',
|
|
|
|
- watchCode: 'cssb1',
|
|
|
|
- ratedCurrent: '58A',
|
|
|
|
- fzlMx: '80%',
|
|
|
|
- powerAnalysis: '开启',
|
|
|
|
- watchAddress: '1',
|
|
|
|
- },
|
|
|
|
- ],
|
|
|
|
|
|
+ const showDialog = ref(false)
|
|
|
|
+ const showDialog2 = ref(false)
|
|
|
|
+ const tableData = ref([])
|
|
|
|
+
|
|
|
|
+ function goSiteList(params) {
|
|
|
|
+ goSiteListParam.value = params.id
|
|
|
|
+ pageShow.value = !pageShow.value
|
|
}
|
|
}
|
|
- },
|
|
|
|
- methods: {
|
|
|
|
- //自定义列样式
|
|
|
|
- cellStyle({ row, column, rowIndex, columnIndex }) {
|
|
|
|
- row, column, rowIndex
|
|
|
|
- if (columnIndex === 6) {
|
|
|
|
- return `color:#0284E8;`
|
|
|
|
- } else {
|
|
|
|
- return ''
|
|
|
|
|
|
+ const getMsgFormSon = () => {
|
|
|
|
+ pageShow.value = !pageShow.value
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ const tableItem = reactive([])
|
|
|
|
+ const dialogTitle = ref('')
|
|
|
|
+
|
|
|
|
+ //监控设备列表
|
|
|
|
+ function deviceNewsList() {
|
|
|
|
+ api
|
|
|
|
+ .deviceNewsList({
|
|
|
|
+ siteId: 1,
|
|
|
|
+ size: pageSize.value,
|
|
|
|
+ current: currentPage.value,
|
|
|
|
+ })
|
|
|
|
+ .then((requset) => {
|
|
|
|
+ if (requset.status === 'SUCCESS') {
|
|
|
|
+ tableData.value = requset.data.records
|
|
|
|
+ total.value = requset.data.total
|
|
|
|
+ } else {
|
|
|
|
+ ElMessage.error(requset.msg)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 添加操作
|
|
|
|
+ // const addItem = () => {
|
|
|
|
+ // tableItem.value = {
|
|
|
|
+ // platformAreaName: '',
|
|
|
|
+ // platformAreaCode: '',
|
|
|
|
+ // platformAreaAddress: '',
|
|
|
|
+ // }
|
|
|
|
+ // dialogTitle.value = '新增'
|
|
|
|
+ // showDialog.value = true
|
|
|
|
+ // }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ // 编辑操作
|
|
|
|
+ const editRow = (row) => {
|
|
|
|
+ tableItem.value = {
|
|
|
|
+ id: row.id,
|
|
|
|
+ monitorDeviceCode: row.monitorDeviceCode,
|
|
|
|
+ monitorDeviceName: row.monitorDeviceName,
|
|
|
|
+ loopMeterAddress: row.loopMeterAddress,
|
|
|
|
+ ratedVoltage: row.ratedVoltage,
|
|
|
|
+ ratedCurrent: row.ratedCurrent,
|
|
|
|
+ currentLoadRate: row.currentLoadRate,
|
|
|
|
+ siteId: row.siteId,
|
|
|
|
+ variableListId: row.variableListId,
|
|
|
|
+ qualityAnalysis: row.qualityAnalysis === '是' ? true : false,
|
|
}
|
|
}
|
|
- },
|
|
|
|
- handleSizeChange(val) {
|
|
|
|
- console.log(`每页 ${val} 条`)
|
|
|
|
- },
|
|
|
|
- handleCurrentChange(val) {
|
|
|
|
- console.log(`当前页: ${val}`)
|
|
|
|
- },
|
|
|
|
|
|
+ dialogTitle.value = '编辑'
|
|
|
|
+ showDialog.value = true
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
- // 表头样式设置
|
|
|
|
- goVariableList() {
|
|
|
|
- // 跳转至订单列表页面传参
|
|
|
|
- this.$router.push({
|
|
|
|
- path: '../siteManage/variableList/index.vue',
|
|
|
|
- })
|
|
|
|
- // this.$router.push({ name:'variableList'})
|
|
|
|
- },
|
|
|
|
- headClass() {
|
|
|
|
- return 'background:#FAFAFA;'
|
|
|
|
- },
|
|
|
|
|
|
|
|
// 查看视频
|
|
// 查看视频
|
|
- checkVideo() {
|
|
|
|
- this.tableItem = {
|
|
|
|
|
|
+ const checkVideo=()=> {
|
|
|
|
+ alert(1)
|
|
|
|
+ tableItem.value = {
|
|
id: '',
|
|
id: '',
|
|
stationName: '',
|
|
stationName: '',
|
|
watchName: '',
|
|
watchName: '',
|
|
@@ -253,57 +243,93 @@ export default {
|
|
checked: true,
|
|
checked: true,
|
|
resource: '',
|
|
resource: '',
|
|
}
|
|
}
|
|
- this.dialogTitle = '查看视频'
|
|
|
|
- this.showDialog = true
|
|
|
|
- this.$nextTick(() => {
|
|
|
|
- this.$refs['checkVideo'].showDialog = true
|
|
|
|
- })
|
|
|
|
- },
|
|
|
|
|
|
+ dialogTitle.value = '查看视频'
|
|
|
|
+ showDialog2.value = true
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
- // 添加操作
|
|
|
|
- addItem() {
|
|
|
|
- this.tableItem = {
|
|
|
|
- id: '',
|
|
|
|
- stationName: '',
|
|
|
|
- watchName: '',
|
|
|
|
- watchCode: '',
|
|
|
|
- siteList: [],
|
|
|
|
- done: '',
|
|
|
|
- guaZai: '',
|
|
|
|
- checked: true,
|
|
|
|
- }
|
|
|
|
- this.dialogTitle = '新增'
|
|
|
|
- this.showDialog = true
|
|
|
|
- this.$nextTick(() => {
|
|
|
|
- this.$refs['dialogComponent'].showDialog = true
|
|
|
|
- })
|
|
|
|
- },
|
|
|
|
- // 编辑操作
|
|
|
|
- editRow(row) {
|
|
|
|
- console.log(row)
|
|
|
|
- this.tableItem = row
|
|
|
|
- this.dialogTitle = '编辑'
|
|
|
|
- this.showDialog = true
|
|
|
|
- this.$nextTick(() => {
|
|
|
|
- this.$refs['dialogComponent'].showDialog = true
|
|
|
|
- })
|
|
|
|
- },
|
|
|
|
// 关闭操作
|
|
// 关闭操作
|
|
- closeDialog(flag) {
|
|
|
|
- if (flag) {
|
|
|
|
- // 重新刷新表格内容
|
|
|
|
- this.fetchData()
|
|
|
|
- }
|
|
|
|
- this.showDialog = false
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
- //删除操作
|
|
|
|
- handleDelete(index, row) {
|
|
|
|
- console.log(index, row)
|
|
|
|
- alert(index)
|
|
|
|
- },
|
|
|
|
|
|
+ const closeDialog = () => {
|
|
|
|
+ showDialog.value = false,
|
|
|
|
+ showDialog2.value = false
|
|
|
|
+ deviceNewsList()
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ //删除 是否删除 ---- 是
|
|
|
|
+ const handleDelete = (row) => {
|
|
|
|
+ api.deviceNewsDel({ id: row.id }).then((requset) => {
|
|
|
|
+ if (requset.status === 'SUCCESS') {
|
|
|
|
+ ElMessage.success({
|
|
|
|
+ message: '删除成功',
|
|
|
|
+ type: 'success',
|
|
|
|
+ })
|
|
|
|
+ deviceNewsList()
|
|
|
|
+ } else {
|
|
|
|
+ ElMessage.error(requset.msg)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ //是否删除 ---- 否
|
|
|
|
+ const cancelEvent = () => {
|
|
|
|
+ console.log('cancel!')
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ onMounted(() => {
|
|
|
|
+ deviceNewsList()
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ function goVariableList() {
|
|
|
|
+ emit('func')
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 表头样式设置
|
|
|
|
+ const headClass = () => {
|
|
|
|
+ return 'background:#FAFAFA;'
|
|
|
|
+ }
|
|
|
|
+ const handleSizeChange = (val) => {
|
|
|
|
+ pageSize.value = val
|
|
|
|
+ deviceNewsList()
|
|
|
|
+ }
|
|
|
|
+ const handleCurrentChange = (val) => {
|
|
|
|
+ currentPage.value = val
|
|
|
|
+ deviceNewsList()
|
|
|
|
+ }
|
|
|
|
+ return {
|
|
|
|
+ tableData,
|
|
|
|
+ showDialog,
|
|
|
|
+ showDialog2,
|
|
|
|
+
|
|
|
|
+ platformAreaName,
|
|
|
|
+ pageShow,
|
|
|
|
+ dialogTitle,
|
|
|
|
+
|
|
|
|
+ props,
|
|
|
|
+ tableItem,
|
|
|
|
+ goSiteListParam,
|
|
|
|
+
|
|
|
|
+ total,
|
|
|
|
+ pageSize,
|
|
|
|
+ currentPage,
|
|
|
|
+
|
|
|
|
+ goVariableList,
|
|
|
|
+
|
|
|
|
+ deviceNewsList,
|
|
|
|
+ goSiteList,
|
|
|
|
+ getMsgFormSon,
|
|
|
|
+ headClass,
|
|
|
|
+ // addItem,
|
|
|
|
+
|
|
|
|
+ checkVideo,
|
|
|
|
+ editRow,
|
|
|
|
+ closeDialog,
|
|
|
|
+ handleDelete,
|
|
|
|
+ cancelEvent,
|
|
|
|
+ handleSizeChange,
|
|
|
|
+ handleCurrentChange,
|
|
|
|
+ }
|
|
},
|
|
},
|
|
-}
|
|
|
|
|
|
+})
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|