detail.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <template>
  2. <a-modal
  3. v-model:open="open"
  4. title="旅客信息查看"
  5. centered
  6. width="90%"
  7. >
  8. <div class="goods-detail">
  9. <div class="__cus-title_1">基本信息</div>
  10. <a-form :model="formData">
  11. <a-row :gutter="16">
  12. <a-col :span="8">
  13. <a-form-item label="姓名">
  14. <a-input v-model:value="formData.name" :disabled="true"/>
  15. </a-form-item>
  16. </a-col>
  17. <a-col :span="8">
  18. <a-form-item label="性别">
  19. <a-select v-model:value="formData.gender" :disabled="true"
  20. :options="sexOptions" show-search allow-clear optionFilterProp="label"/>
  21. </a-form-item>
  22. </a-col>
  23. <a-col :span="8">
  24. <a-form-item label="国籍">
  25. <a-select v-model:value="formData.nationality" :disabled="true"
  26. :options="cityOptions" show-search allow-clear optionFilterProp="label"/>
  27. </a-form-item>
  28. </a-col>
  29. <a-col :span="8">
  30. <a-form-item label="年龄">
  31. <a-input v-model:value="formData.age" :disabled="true"/>
  32. </a-form-item>
  33. </a-col>
  34. <a-col :span="8">
  35. <a-form-item label="身份证号">
  36. <a-input v-model:value="formData.idNo" :disabled="true"/>
  37. </a-form-item>
  38. </a-col>
  39. <a-col :span="8">
  40. <a-form-item label="入场时间">
  41. <a-input v-model:value="formData.admissionTime" :disabled="true"/>
  42. </a-form-item>
  43. </a-col>
  44. <a-col :span="8">
  45. <a-form-item label="放行时间">
  46. <a-input v-model:value="formData.passTime" :disabled="true"/>
  47. </a-form-item>
  48. </a-col>
  49. </a-row>
  50. </a-form>
  51. <div class="__cus-title_1">携带物品信息</div>
  52. <a-table
  53. style="margin-top: 10px"
  54. bordered
  55. :dataSource="formData.goods"
  56. :columns="[
  57. {title: '物品类别',dataIndex: 'goodCategory',key: 'goodCategory'},
  58. {title: '物品细类',dataIndex: 'goodSubclass',key: 'goodSubclass'},
  59. {title: '物品名称',dataIndex: 'goodName',key: 'goodName'},
  60. {title: '物品产地',dataIndex: 'goodPlace',key: 'goodPlace'},
  61. {title: '重量(千克)',dataIndex: 'weight',key: 'weight'},
  62. {title: '品牌',dataIndex: 'brand',key: 'brand'},
  63. {title: '规格型号',dataIndex: 'specModel',key: 'specModel'},
  64. {title: '单价',dataIndex: 'price',key: 'price'},
  65. {title: '币种',dataIndex: 'currency',key: 'currency'},
  66. {title: '数量',dataIndex: 'quantity',key: 'quantity'},
  67. {title: '数量单位',dataIndex: 'unit',key: 'unit'},
  68. {title: '发票/许可证',dataIndex: 'license',key: 'license'},
  69. ]"
  70. :pagination="false"
  71. >
  72. <template #bodyCell="{ column, record }">
  73. <template v-if="column.dataIndex === 'license'">
  74. <a-button type="link" primary size="small" @click="onViewImg(record.license)">查看</a-button>
  75. </template>
  76. </template>
  77. </a-table>
  78. <div class="__cus-title_1">乘坐交通工具信息</div>
  79. <a-form :model="formData">
  80. <a-row :gutter="16">
  81. <a-col :span="8">
  82. <a-form-item label="乘坐交通工具类型">
  83. <a-input v-model:value="formData.vehicleType" :disabled="true"/>
  84. </a-form-item>
  85. </a-col>
  86. <a-col :span="8">
  87. <a-form-item label="出发时间">
  88. <a-input v-model:value="formData.departTime" :disabled="true"/>
  89. </a-form-item>
  90. </a-col>
  91. <a-col :span="8">
  92. <a-form-item label="出发港口">
  93. <a-select v-model:value="formData.fromPort" :disabled="true"
  94. :options="departurePortOptions" show-search allow-clear optionFilterProp="label"/>
  95. </a-form-item>
  96. </a-col>
  97. <a-col :span="8">
  98. <a-form-item label="到达港口">
  99. <a-select v-model:value="formData.toPort" :disabled="true"
  100. :options="arrivingPortOptions" show-search allow-clear optionFilterProp="label"/>
  101. </a-form-item>
  102. </a-col>
  103. <a-col :span="8">
  104. <a-form-item label="车次/航班号">
  105. <a-input v-model:value="formData.travelNo" :disabled="true"/>
  106. </a-form-item>
  107. </a-col>
  108. <a-col :span="8">
  109. <a-form-item label="座位号">
  110. <a-input v-model:value="formData.seatNo" :disabled="true"/>
  111. </a-form-item>
  112. </a-col>
  113. </a-row>
  114. </a-form>
  115. </div>
  116. <template #footer></template>
  117. <div :style="{ display: 'none' }">
  118. <a-image-preview-group
  119. :preview="{
  120. visible: imgOptions.visible,
  121. onVisibleChange: imgOptions.setVisible,
  122. }">
  123. <template v-for="url in imgOptions.urls">
  124. <a-image :src="url" />
  125. </template>
  126. </a-image-preview-group>
  127. </div>
  128. </a-modal>
  129. </template>
  130. <script setup name="enterpriseDetail">
  131. import tool from '@/utils/tool'
  132. import {cloneDeep} from 'lodash-es'
  133. import basicApi from "@/api/gsc/basic";
  134. // 抽屉状态
  135. const open = ref(false)
  136. const emit = defineEmits({successful: null})
  137. // 表单数据
  138. const formData = ref({})
  139. const imgOptions = ref({
  140. visible: false,
  141. setVisible: (value) => {
  142. imgOptions.value.visible = value;
  143. },
  144. urls: []
  145. })
  146. // 打开抽屉
  147. const onOpen = (record, view = false) => {
  148. open.value = true
  149. if (record) {
  150. basicApi.passengerinfoDetail({id: record.id, queryType: 3}).then(res => {
  151. formData.value = Object.assign({}, res)
  152. })
  153. }
  154. }
  155. // 关闭抽屉
  156. const onClose = () => {
  157. // ref_detail.value?.resetFields()
  158. formData.value = {}
  159. open.value = false
  160. }
  161. const onViewImg = (urls) => {
  162. imgOptions.value.urls = urls.split(',')
  163. imgOptions.value.visible = true
  164. }
  165. const sexOptions = tool.dictList('lvke_sex')
  166. const cityOptions = tool.dictList('lvke_city')
  167. const departurePortOptions = tool.dictList('lvke_departurePort')
  168. const arrivingPortOptions = tool.dictList('lvke_arrivingPort')
  169. // 抛出函数
  170. defineExpose({
  171. onOpen
  172. })
  173. </script>
  174. <style lang="less" scoped>
  175. .goods-detail {
  176. max-height: 800px;
  177. overflow-y: auto;
  178. overflow-x: hidden;
  179. }
  180. </style>