index.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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="货代名称" size="default">
  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="货代编码" size="default">
  40. <el-input
  41. v-model="tableForm.china"
  42. placeholder="请输入货代编码"
  43. />
  44. </el-form-item>
  45. </el-col>
  46. <el-col>
  47. <el-form-item label="货代描述" size="default">
  48. <el-input
  49. type="textarea"
  50. v-model="tableForm.two"
  51. placeholder="请输入货代描述"
  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. china: "",
  73. two: "",
  74. }); //弹窗内容
  75. //列表
  76. const tableData = ref([
  77. {
  78. name: "测试",
  79. china: "测试",
  80. englin: "测试",
  81. two: "测试",
  82. },
  83. {
  84. name: "测试",
  85. china: "测试",
  86. englin: "测试",
  87. two: "测试",
  88. },
  89. {
  90. name: "测试",
  91. china: "测试",
  92. englin: "测试",
  93. two: "测试",
  94. },
  95. ]);
  96. //表头
  97. const state = reactive({
  98. list: [
  99. { label: "货代名称", key: "name" },
  100. { label: "货代编码", key: "china" },
  101. { label: "货代等级", key: "englin" },
  102. { label: "货代描述", key: "two" },
  103. ],
  104. listLoading: true,
  105. });
  106. const tableBtnGroup = ref([
  107. {
  108. name: "编辑",
  109. className: "editBtn",
  110. param: 2,
  111. },
  112. {
  113. name: "删除",
  114. className: "delBtn",
  115. param: 3,
  116. },
  117. ]);
  118. //新增
  119. const addForm = () => {
  120. msgTitle.value = "新增货代管理";
  121. flag.value = true;
  122. type.value = "";
  123. };
  124. //取消
  125. const resetForm = () => {
  126. flag.value = false;
  127. tableForm.name = "";
  128. tableForm.china = "";
  129. tableForm.two = "";
  130. };
  131. //编辑
  132. const editDialog = (data) => {
  133. msgTitle.value = "编辑货代管理";
  134. flag.value = true;
  135. type.value = "";
  136. tableForm.name = data.name;
  137. tableForm.china = data.china;
  138. tableForm.two = data.two;
  139. };
  140. //删除
  141. const eleDialog = () => {
  142. msgTitle.value = "删除货代管理";
  143. flag.value = true;
  144. type.value = "del";
  145. };
  146. //删除
  147. const delRest = () => {
  148. flag.value = false;
  149. };
  150. //编辑-删除
  151. const btnClick = (row, index, param) => {
  152. if (param === 2) {
  153. msgTitle.value = "编辑货代管理";
  154. flag.value = true;
  155. type.value = "";
  156. tableForm.name = index.name;
  157. tableForm.china = index.china;
  158. tableForm.two = index.two;
  159. } else if (param === 3) {
  160. msgTitle.value = "删除货代管理";
  161. flag.value = true;
  162. type.value = "del";
  163. } else if (param === 4) {
  164. }
  165. };
  166. </script>
  167. <style lang="scss" scoped>
  168. ::v-deep .el-form-item__label {
  169. width: 80px;
  170. }
  171. </style>