|
@@ -0,0 +1,194 @@
|
|
|
+<template>
|
|
|
+ <CusDialog
|
|
|
+ :show="show"
|
|
|
+ title="船舶档案"
|
|
|
+ @onClose="$emit('update:show', false)"
|
|
|
+ width="90%"
|
|
|
+ height="90%"
|
|
|
+ :loading="state.loading"
|
|
|
+ :show-close="false"
|
|
|
+ :show-submit="false"
|
|
|
+ >
|
|
|
+ <div class="__cus-dialog-form">
|
|
|
+ <div class="filter">
|
|
|
+ <CusForm labelWidth="100px" @handleEnter="onSearch">
|
|
|
+ <CusFormColumn
|
|
|
+ :span="6"
|
|
|
+ label="船舶名称"
|
|
|
+ v-model:param="state.query.form.keyword"/>
|
|
|
+ <CusFormColumn
|
|
|
+ :span="6"
|
|
|
+ label="船舶类型"
|
|
|
+ v-model:param="state.query.form.keyword"
|
|
|
+ link="select"
|
|
|
+ :options="[]"
|
|
|
+ />
|
|
|
+ <CusFormColumn
|
|
|
+ :span="6"
|
|
|
+ label="持证类型"
|
|
|
+ v-model:param="state.query.form.keyword"
|
|
|
+ link="select"
|
|
|
+ :options="[]"
|
|
|
+ />
|
|
|
+ <CusFormColumn
|
|
|
+ :span="6"
|
|
|
+ label="北斗终端号"
|
|
|
+ v-model:param="state.query.form.keyword"/>
|
|
|
+ <CusFormColumn
|
|
|
+ :span="6"
|
|
|
+ label="MMSI"
|
|
|
+ v-model:param="state.query.form.keyword"/>
|
|
|
+ <CusSearchButtons
|
|
|
+ @handleReset="onReset"
|
|
|
+ @handleSearch="onSearch"
|
|
|
+ />
|
|
|
+ </CusForm>
|
|
|
+ </div>
|
|
|
+ <div class="buttons">
|
|
|
+ <CusButton type="main" title="新增" style="margin-left: auto;" @click="onAdd"/>
|
|
|
+ <CusButton type="del" title="批量删除"/>
|
|
|
+ </div>
|
|
|
+ <div class="table">
|
|
|
+ <CusTable
|
|
|
+ :page-num="state.query.page.pageNum"
|
|
|
+ :page-size="state.query.page.pageSize"
|
|
|
+ :total="state.query.result.total"
|
|
|
+ :data="state.query.result.data"
|
|
|
+ :table-head="state.query.tableHead"
|
|
|
+ @handlePage="onPage"
|
|
|
+ >
|
|
|
+ <template #shareMethod-column-value="{scope}">
|
|
|
+ {{DictionaryStore.gxMethodMap.get(scope.row.shareMethod)}}
|
|
|
+ </template>
|
|
|
+ <template #shareCycle-column-value="{scope}">
|
|
|
+ {{DictionaryStore.gxCycleMap.get(scope.row.shareCycle)}}
|
|
|
+ </template>
|
|
|
+ <template #themeMode-column-value="{scope}">
|
|
|
+ {{DictionaryStore.themeModeMap.get(scope.row.themeMode)}}
|
|
|
+ </template>
|
|
|
+ <template #isCreateEsIndex-column-value="{scope}">
|
|
|
+ {{DictionaryStore.trueFalseMap.get(scope.row.isCreateEsIndex)}}
|
|
|
+ </template>
|
|
|
+ <template #do-column-value="{scope}">
|
|
|
+ <CusButton type="table-edit" @click="onEdit(scope.row)"/>
|
|
|
+ <CusButton type="table-del" @click="onDel(scope.row)"/>
|
|
|
+ </template>
|
|
|
+ </CusTable>
|
|
|
+ </div>
|
|
|
+ <detail v-model:show="state.detail.show" :transfer="state.detail.transfer"/>
|
|
|
+ </div>
|
|
|
+ </CusDialog>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup lang="ts">
|
|
|
+import {computed, getCurrentInstance, nextTick, onMounted, reactive, ref, watch} from "vue";
|
|
|
+import {useDictionaryStore} from "@/stores";
|
|
|
+import {ElMessage, ElMessageBox} from "element-plus";
|
|
|
+import detail from './detail.vue'
|
|
|
+
|
|
|
+const emit = defineEmits(['update:show', 'refresh'])
|
|
|
+const {proxy} = getCurrentInstance()
|
|
|
+const DictionaryStore = useDictionaryStore()
|
|
|
+const props = defineProps({
|
|
|
+ show: {default: false},
|
|
|
+ transfer: {}
|
|
|
+})
|
|
|
+const state: any = reactive({
|
|
|
+ query: {
|
|
|
+ loading: false,
|
|
|
+ page: {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10
|
|
|
+ },
|
|
|
+ tableHead: [
|
|
|
+ {value: 'userName', label: '船名号', width: 200},
|
|
|
+ {value: 'nickName', label: '最大航速', width: 200},
|
|
|
+ {value: 'nickName', label: '船长', width: 200},
|
|
|
+ {value: 'nickName', label: '船宽', width: 200},
|
|
|
+ {value: 'nickName', label: '北斗终端号', width: 200},
|
|
|
+ {value: 'nickName', label: 'MMSI', width: 200},
|
|
|
+ {value: 'nickName', label: '船舶类型', width: 200},
|
|
|
+ {value: 'nickName', label: '持证类型', width: 200},
|
|
|
+ {value: 'nickName', label: '是否重点船舶', width: 200},
|
|
|
+ {value: "do", label: "操作", width: 160, fixed: 'right'},
|
|
|
+ ],
|
|
|
+ form: {},
|
|
|
+ formReal: {},
|
|
|
+ result: {
|
|
|
+ total: 0,
|
|
|
+ data: [{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ detail: {
|
|
|
+ show: false,
|
|
|
+ transfer: {}
|
|
|
+ }
|
|
|
+})
|
|
|
+watch(() => props.show, (n) => {
|
|
|
+ if (n) {
|
|
|
+ state.loading = false
|
|
|
+ initDictionary()
|
|
|
+ }
|
|
|
+})
|
|
|
+const initDictionary = () => {
|
|
|
+ // DictionaryStore.initDict('format_type')
|
|
|
+}
|
|
|
+const onPage = (pageNum, pageSize) => {
|
|
|
+ state.query.page = {
|
|
|
+ pageNum: pageNum,
|
|
|
+ pageSize: pageSize
|
|
|
+ }
|
|
|
+ const params = {
|
|
|
+ page: state.query.page.pageNum,
|
|
|
+ size: state.query.page.pageSize,
|
|
|
+ }
|
|
|
+ // 添加表单参数
|
|
|
+ for (const [k, v] of Object.entries(state.query.formReal)) {
|
|
|
+ if (proxy.$util.isValue(v)) {
|
|
|
+ params[k] = v
|
|
|
+ }
|
|
|
+ }
|
|
|
+ state.query.loading = true
|
|
|
+ // sysIndexFindIndexByPage(proxy.$util.formatGetParam(params)).then(res => {
|
|
|
+ // state.query.result.total = res.data.totalElements
|
|
|
+ // state.query.result.data = res.data.content
|
|
|
+ // state.query.loading = false
|
|
|
+ // })
|
|
|
+}
|
|
|
+const onSearch = () => {
|
|
|
+ state.query.formReal = JSON.parse(JSON.stringify(state.query.form))
|
|
|
+ onPage(1, state.query.page.pageSize)
|
|
|
+}
|
|
|
+const onReset = () => {
|
|
|
+ state.query.page = {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10
|
|
|
+ }
|
|
|
+ state.query.form = {}
|
|
|
+ onSearch()
|
|
|
+}
|
|
|
+const onAdd = () => {
|
|
|
+ state.detail.transfer = {
|
|
|
+ mode: 'add'
|
|
|
+ }
|
|
|
+ state.detail.show = true
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.__cus-dialog-form {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ .buttons {
|
|
|
+ display: flex;
|
|
|
+ }
|
|
|
+ .table {
|
|
|
+ margin-top: 10px;
|
|
|
+ flex: 1;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|