index.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <template>
  2. <div class="airportInfo">
  3. <div class="wrap">
  4. <Minheader :is-auth="true" :is-statuser="true" @addForm="addForm">
  5. <template #header>
  6. <div class="status flex-wrap">
  7. <div class="manageTitle">设备维护</div>
  8. </div>
  9. </template></Minheader
  10. >
  11. <div class="app-container scroll-y">
  12. <DataTable
  13. :tableHeader="state.list"
  14. :tableData="tableData"
  15. :tableBtnGroup="tableBtnGroup"
  16. :tableProperty="{ rowKey: 'ID' }"
  17. @btnClick="btnClick"
  18. />
  19. </div>
  20. <Dialog
  21. :flag="flag"
  22. :type="type"
  23. :msgTitle="msgTitle"
  24. @resetForm="resetForm"
  25. @delRest="delRest"
  26. >
  27. <div class="diacont">
  28. <el-form :model="tableForm">
  29. <el-row :gutter="24">
  30. <el-col>
  31. <el-form-item label="设备名称">
  32. <el-input
  33. v-model="tableForm.name"
  34. placeholder="请输入设备名称"
  35. />
  36. </el-form-item>
  37. </el-col>
  38. <el-col>
  39. <el-form-item label="设备类型">
  40. <el-input
  41. v-model="tableForm.englin"
  42. placeholder="请输入设备类型"
  43. />
  44. </el-form-item>
  45. </el-col>
  46. <el-col>
  47. <el-form-item label="设备IP">
  48. <el-input
  49. type="textarea"
  50. v-model="tableForm.two"
  51. placeholder="请输入设备IP"
  52. />
  53. </el-form-item>
  54. </el-col>
  55. </el-row>
  56. </el-form>
  57. </div>
  58. </Dialog>
  59. </div>
  60. </div>
  61. </template>
  62. <script setup lang="ts">
  63. import DataTable from "@/components/tableTemp/index.vue";
  64. import Minheader from "@/components/minheader/index.vue";
  65. import Dialog from "@/components/dialog/index.vue";
  66. const flag = ref<Boolean>(false); //弹窗开关
  67. const type = ref<String>(""); //判断是否删除
  68. const msgTitle = ref<String>("新增设备维护"); //弹窗标题
  69. const tableColsCopys = reactive<Object>({}); //弹窗
  70. const tableForm = reactive({
  71. name: "",
  72. englin: "",
  73. two: "",
  74. }); //弹窗内容
  75. //列表
  76. const tableData = ref([
  77. {
  78. name: "测试",
  79. china: "测试",
  80. englin: "测试",
  81. two: "测试",
  82. three: "测试",
  83. text: "测试",
  84. },
  85. {
  86. name: "测试",
  87. china: "测试",
  88. englin: "测试",
  89. two: "测试",
  90. three: "测试",
  91. text: "测试",
  92. },
  93. {
  94. name: "测试",
  95. china: "测试",
  96. englin: "测试",
  97. two: "测试",
  98. three: "测试",
  99. text: "测试",
  100. },
  101. ]);
  102. //表头
  103. const state = reactive({
  104. list: [
  105. { label: "设备名称", key: "name" },
  106. { label: "所在位置", key: "china" },
  107. { label: "设备类型", key: "englin" },
  108. { label: "设备IP", key: "two" },
  109. { label: "在离线状态", key: "three" },
  110. { label: "忙碌空闲", key: "text" },
  111. ],
  112. listLoading: true,
  113. });
  114. const tableBtnGroup = ref([
  115. {
  116. name: "编辑",
  117. className: "editBtn",
  118. param: 2,
  119. },
  120. {
  121. name: "删除",
  122. className: "delBtn",
  123. param: 3,
  124. },
  125. ]);
  126. //新增
  127. const addForm = () => {
  128. msgTitle.value = "新增设备维护";
  129. flag.value = true;
  130. type.value = "";
  131. };
  132. //取消
  133. const resetForm = () => {
  134. flag.value = false;
  135. tableForm.name = "";
  136. tableForm.englin = "";
  137. tableForm.two = "";
  138. };
  139. //编辑
  140. const editDialog = (data) => {
  141. msgTitle.value = "编辑设备维护";
  142. flag.value = true;
  143. type.value = "";
  144. tableForm.name = data.name;
  145. tableForm.englin = data.englin;
  146. tableForm.two = data.two;
  147. };
  148. //删除
  149. const eleDialog = () => {
  150. msgTitle.value = "删除设备维护";
  151. flag.value = true;
  152. type.value = "del";
  153. };
  154. //删除
  155. const delRest = () => {
  156. flag.value = false;
  157. };
  158. //编辑-删除
  159. const btnClick = (row, index, param) => {
  160. if (param === 2) {
  161. msgTitle.value = "编辑设备维护";
  162. flag.value = true;
  163. type.value = "";
  164. tableForm.name = index.name;
  165. tableForm.englin = index.englin;
  166. tableForm.two = index.two;
  167. } else if (param === 3) {
  168. msgTitle.value = "删除设备维护";
  169. flag.value = true;
  170. type.value = "del";
  171. } else if (param === 4) {
  172. }
  173. };
  174. </script>
  175. <style lang="scss" scoped>
  176. ::v-deep .el-form-item__label {
  177. width: 80px;
  178. }
  179. </style>