index.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <template>
  2. <div class="device-manager-box">
  3. <NormalTable
  4. v-if="isRefresh"
  5. :columns="columns"
  6. :searchFormSchema="searchFormSchema"
  7. :list="list.bind(null, { devicekind: deviceType })"
  8. :getImportUrl="getImportUrl"
  9. :getExportUrl="getExportUrl"
  10. :formSchema="formSchema"
  11. :deleteById="deleteById"
  12. :batchDelete="batchDeleteById"
  13. :saveOrUpdate="saveOrUpdate"
  14. designScope="device-tabel"
  15. title="设备列表"
  16. :showTab="true"
  17. :deviceType="deviceType"
  18. />
  19. </div>
  20. </template>
  21. <script lang="ts" name="system-user" setup>
  22. //ts语法
  23. import { ref, onMounted } from 'vue'
  24. import { FormSchema } from '/@/components/Table';
  25. import NormalTable from '../comment/NormalTable.vue';
  26. import { searchFormSchema } from './device.data';
  27. import { list, getImportUrl, getExportUrl, deleteById, batchDeleteById, saveOrUpdate } from './device.api';
  28. import { getFormSchemaColumns, getTableHeaderColumns } from '/@/hooks/web/useWebColumns';
  29. import { list as substationList } from '../substationTabel/substation.api';
  30. import { useRouter } from 'vue-router';
  31. const { currentRoute } = useRouter()
  32. const formSchema = ref<FormSchema[]>([])
  33. const isRefresh = ref(false)
  34. const deviceType = ref('')
  35. const columns = ref<any[]>([])
  36. const arrToFormColumns = (tableHeaderColumns = []) => {
  37. const columnList: any[] = [];
  38. tableHeaderColumns.forEach((item: any) => {
  39. let columnsItem;
  40. if (item.type == 1 || item.type == 10) {
  41. columnsItem = {
  42. label: item.unit ? `${item.des}(${item.unit})` : item.des, //_dictText
  43. field: item.monitorcode,
  44. component: item.type == 1 ? 'Input' : item.type == 10 ? 'InputTextArea' : '',
  45. };
  46. } else {
  47. if (item.type == 2 && item['monitorcode'] == 'nsubstationid') {
  48. columnsItem = {
  49. label: item.unit ? `${item.des}(${item.unit})` : item.des, //_dictText
  50. field: item.monitorcode,
  51. component: 'ApiSelect',
  52. componentProps: {
  53. api: substationList,
  54. labelField: 'strname',
  55. valueField: 'id',
  56. },
  57. };
  58. }
  59. if (item.type == 3) {
  60. columnsItem = {
  61. label: item.unit ? `${item.des}(${item.unit})` : item.des, //_dictText
  62. field: item.monitorcode,
  63. component: 'RadioGroup',
  64. defaultValue: 1,
  65. componentProps: () => {
  66. return {
  67. options: [
  68. { label: '是', value: 1, key: '1' },
  69. { label: '否', value: 0, key: '2' },
  70. ],
  71. stringToNumber: true,
  72. };
  73. },
  74. };
  75. }
  76. if (item.type == 4) {
  77. columnsItem = {
  78. label: item.unit ? `${item.des}(${item.unit})` : item.des, //_dictText
  79. field: item.monitorcode,
  80. component: 'JDictSelectTag',
  81. componentProps: {
  82. dictCode: item.dict,
  83. placeholder: '请选择',
  84. },
  85. };
  86. }
  87. }
  88. columnList.push(columnsItem);
  89. });
  90. formSchema.value = columnList
  91. formSchema.value.unshift(
  92. {
  93. label: '设备id', //_dictText
  94. field: 'id',
  95. component: 'Input',
  96. componentProps: {
  97. disabled: true
  98. },
  99. },
  100. {
  101. label: '点表',
  102. field: 'strtype',
  103. component: 'JDictSelectTag',
  104. componentProps: {
  105. dictCode: `${deviceType.value}kind`,
  106. placeholder: '请选择点表',
  107. },
  108. }
  109. )
  110. formSchema.value.push(
  111. {
  112. label: '备用分站',
  113. field: 'stationids',
  114. component: 'ApiSelect',
  115. componentProps: {
  116. api: substationList,
  117. labelField: 'strname',
  118. valueField: 'id',
  119. },
  120. }
  121. )
  122. };
  123. onMounted(() => {
  124. const pageType = currentRoute.value.name
  125. if(pageType === 'nitrogen'){
  126. deviceType.value = 'pressurefan'
  127. }else {
  128. deviceType.value = pageType
  129. }
  130. searchFormSchema[0].componentProps['dictCode'] = `${deviceType.value}kind`
  131. columns.value = getTableHeaderColumns(`${deviceType.value}_list`) || []
  132. const formSchemaColumns = getFormSchemaColumns(`${deviceType.value}_edit`) || []
  133. arrToFormColumns(formSchemaColumns)
  134. isRefresh.value = true
  135. })
  136. </script>
  137. <style scoped></style>