修改文件位置

This commit is contained in:
GGJ
2024-01-16 08:56:51 +08:00
parent 862fbc6658
commit 6dbe8469db
3 changed files with 16 additions and 16 deletions

View File

@@ -20,8 +20,8 @@
import TableHeader from '@/components/table/header/index.vue'
import Area from '@/components/form/area/index.vue'
import { useDictData } from '@/stores/dictData'
import Echart from '@/views/dashboard/components/echart.vue'
import Tableabove from '@/views/dashboard/components/Tableabove.vue'
import Echart from '@/views/Event-boot/Region/components/echart.vue'
import Tableabove from '@/views/Event-boot/Region/components/Tableabove.vue'
import TableStore from '@/utils/tableStore'
import { onMounted, reactive, ref, provide } from 'vue'
import { mainHeight } from '@/utils/layout'

View File

@@ -1,12 +0,0 @@
<template>
<el-button @click="click">测试1</el-button>
</template>
<script setup lang="ts">
import { ref, reactive } from 'vue'
// import { getTest } from '@/api/index'
const click = () => {
// getTest({ name: '111', paw: 'asd' })
}
</script>
<style lang="scss" scoped></style>
@/api/text

View File

@@ -14,9 +14,20 @@
</el-descriptions-item>
</el-descriptions>
<vxe-table v-bind="defaultAttribute" :data="tableData" height="auto" style="width: 100%">
<vxe-column field="enginerName" title="工程名称"></vxe-column>
<vxe-column field="engineerName" title="工程名称"></vxe-column>
<vxe-column field="deviceName" title="操作"></vxe-column>
<vxe-column title="操作">
<template v-slot:default="scoped">
<el-button
size="small"
type="danger"
icon="el-icon-Delete"
@click="deleteEngineering(scoped.row)"
>
移除
</el-button>
</template>
</vxe-column>
</vxe-table>
</div>
</div>
@@ -50,6 +61,7 @@ const selectUser = (e: any) => {
})
}
const getMarketEnginner = () => {}
const deleteEngineering = (row:any) => {}
</script>
<style lang="scss">