detail.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <template>
  2. <CusDialog
  3. :show="show"
  4. :title="titleCpt"
  5. @onClose="$emit('update:show', false)"
  6. width="800px"
  7. height="auto"
  8. @onSubmit="onSubmit"
  9. :loading="state.loading"
  10. >
  11. <div class="__cus-dialog-form">
  12. <CusForm ref="ref_form" label-width="110px" :form-view="!noViewCpt">
  13. <el-col :span="11">
  14. <CusFormColumn
  15. :span="24"
  16. required
  17. label="船名号"
  18. v-model:param="state.form.name"
  19. />
  20. <CusFormColumn
  21. :span="24"
  22. required
  23. label="船舶类型"
  24. v-model:param="state.form.type"
  25. link="select"
  26. :options="DictionaryStore.shipTypeList"
  27. />
  28. <CusFormColumn
  29. :span="24"
  30. required
  31. label="持证类型"
  32. v-model:param="state.form.certType"
  33. link="select"
  34. :options="DictionaryStore.certTypeList"
  35. />
  36. <CusFormColumn
  37. :span="24"
  38. required
  39. label="最大航速"
  40. v-model:param="state.form.maxSpeed"
  41. link="number"
  42. unit="节"
  43. :decimal="2"
  44. />
  45. <CusFormColumn
  46. :span="24"
  47. required
  48. label="船长"
  49. v-model:param="state.form.length"
  50. link="number"
  51. unit="米"
  52. :decimal="2"
  53. />
  54. <CusFormColumn
  55. :span="24"
  56. required
  57. label="船宽"
  58. v-model:param="state.form.width"
  59. link="number"
  60. unit="米"
  61. :decimal="2"
  62. />
  63. </el-col>
  64. <el-col :span="12" :offset="1">
  65. <CusFormColumn
  66. :span="24"
  67. label="船舶照片"
  68. v-model:param="state.form.indexUrl"
  69. link="upload"
  70. layout="card"
  71. type="img"
  72. :limit="1"
  73. limitNoUpload
  74. :delRule="(file) => true"
  75. cardHeight="118px"
  76. />
  77. <CusFormColumn
  78. :span="24"
  79. label="重点船舶"
  80. v-model:param="state.form.important"
  81. link="radio"
  82. :options="DictionaryStore.importantList"
  83. />
  84. <CusFormColumn
  85. :span="24"
  86. label="北斗终端号"
  87. v-model:param="state.form.beidouId"
  88. />
  89. <CusFormColumn
  90. :span="24"
  91. label="MMSI"
  92. v-model:param="state.form.mmsi"
  93. />
  94. </el-col>
  95. </CusForm>
  96. </div>
  97. </CusDialog>
  98. </template>
  99. <script setup lang="ts">
  100. import {computed, getCurrentInstance, nextTick, reactive, ref, watch} from "vue";
  101. import {useDictionaryStore} from "@/stores";
  102. import {ElMessage, ElMessageBox} from "element-plus";
  103. import {shipArchiveAdd, shipArchiveDetail, shipArchiveEdit} from "@/api/modules/web/archive";
  104. const emit = defineEmits(['update:show', 'refresh'])
  105. const {proxy} = getCurrentInstance()
  106. const DictionaryStore = useDictionaryStore()
  107. const props = defineProps({
  108. show: {default: false},
  109. transfer: {}
  110. })
  111. const state: any = reactive({
  112. form: {
  113. indexUrl: []
  114. },
  115. })
  116. const ref_form = ref()
  117. const noViewCpt = computed(() => props.transfer?.mode !== 'view')
  118. const titleCpt = computed(() => {
  119. let t = '查看船舶档案'
  120. switch (props.transfer.mode) {
  121. case 'add': t = '新增船舶档案'
  122. break
  123. case 'edit': t = '编辑船舶档案'
  124. break
  125. }
  126. return t
  127. })
  128. const onSubmit = () => {
  129. ref_form.value.submit().then(() => {
  130. ElMessageBox.confirm("是否提交?", "提示", {
  131. confirmButtonText: "确定",
  132. cancelButtonText: "取消",
  133. type: "warning",
  134. } as any).then(() => {
  135. state.loading = true
  136. const params = {...state.form}
  137. if (props.transfer.mode === 'add') {
  138. shipArchiveAdd(params).then(res => {
  139. if (res.code == 0) {
  140. ElMessage.success('新增成功!')
  141. emit('update:show', false)
  142. emit('refresh')
  143. state.loading = false
  144. } else {
  145. ElMessage.error(res.msg)
  146. }
  147. }).catch(() => {
  148. state.loading = false
  149. })
  150. } else {
  151. shipArchiveEdit(params).then(res => {
  152. if (res.code == 0) {
  153. ElMessage.success('编辑成功!')
  154. emit('update:show', false)
  155. emit('refresh')
  156. state.loading = false
  157. } else {
  158. ElMessage.error(res.msg)
  159. }
  160. }).catch(() => {
  161. state.loading = false
  162. })
  163. }
  164. }).catch(() => {})
  165. }).catch((e) => {
  166. ElMessage({
  167. message: e[0].message,
  168. grouping: true,
  169. type: 'warning',
  170. })
  171. })
  172. }
  173. const initDetail = () => {
  174. state.loading = true
  175. shipArchiveDetail(proxy.$util.formatGetParam({id: props.transfer.id})).then(res => {
  176. if (res.code == 0) {
  177. state.form = Object.assign(res.data, {indexUrl: []})
  178. state.loading = false
  179. } else {
  180. ElMessage.error(res.msg)
  181. }
  182. })
  183. }
  184. watch(() => props.show, (n) => {
  185. if (n) {
  186. state.loading = false
  187. initDictionary()
  188. if (props.transfer.mode === 'add') {
  189. state.form = {
  190. indexUrl: []
  191. }
  192. } else {
  193. initDetail()
  194. }
  195. nextTick(() => {
  196. ref_form.value.reset()
  197. })
  198. }
  199. })
  200. const initDictionary = () => {
  201. // DictionaryStore.initDict('relation_chart_layout')
  202. }
  203. </script>
  204. <style lang="scss" scoped>
  205. :deep(.upload-layout-card_item) {
  206. background-color: #999999;
  207. }
  208. .__cus-dialog-form {
  209. margin: 20px;
  210. background: rgba(88, 148, 235, 0.2);
  211. border-radius: 8px;
  212. padding: 26px 54px;
  213. }
  214. </style>