|
@@ -14,30 +14,30 @@
|
|
|
<CusForm labelWidth="100px" @handleEnter="onSearch">
|
|
|
<CusFormColumn
|
|
|
:span="6"
|
|
|
- label="船舶名称"
|
|
|
- v-model:param="state.query.form.keyword"/>
|
|
|
+ label="船名号"
|
|
|
+ v-model:param="state.query.form.name"/>
|
|
|
<CusFormColumn
|
|
|
:span="6"
|
|
|
label="船舶类型"
|
|
|
- v-model:param="state.query.form.keyword"
|
|
|
+ v-model:param="state.query.form.type"
|
|
|
link="select"
|
|
|
- :options="[]"
|
|
|
+ :options="DictionaryStore.shipTypeList"
|
|
|
/>
|
|
|
<CusFormColumn
|
|
|
:span="6"
|
|
|
label="持证类型"
|
|
|
- v-model:param="state.query.form.keyword"
|
|
|
+ v-model:param="state.query.form.certType"
|
|
|
link="select"
|
|
|
- :options="[]"
|
|
|
+ :options="DictionaryStore.certTypeList"
|
|
|
/>
|
|
|
<CusFormColumn
|
|
|
:span="6"
|
|
|
label="北斗终端号"
|
|
|
- v-model:param="state.query.form.keyword"/>
|
|
|
+ v-model:param="state.query.form.beidouId"/>
|
|
|
<CusFormColumn
|
|
|
:span="6"
|
|
|
label="MMSI"
|
|
|
- v-model:param="state.query.form.keyword"/>
|
|
|
+ v-model:param="state.query.form.mmsi"/>
|
|
|
<CusSearchButtons
|
|
|
@handleReset="onReset"
|
|
|
@handleSearch="onSearch"
|
|
@@ -48,7 +48,7 @@
|
|
|
<CusButton type="main" title="新增" style="margin-left: auto;" @click="onAdd"/>
|
|
|
<CusButton type="del" title="批量删除"/>
|
|
|
</div>
|
|
|
- <div class="table">
|
|
|
+ <div class="table" v-loading="state.query.loading">
|
|
|
<CusTable
|
|
|
:page-num="state.query.page.pageNum"
|
|
|
:page-size="state.query.page.pageSize"
|
|
@@ -57,17 +57,14 @@
|
|
|
:table-head="state.query.tableHead"
|
|
|
@handlePage="onPage"
|
|
|
>
|
|
|
- <template #shareMethod-column-value="{scope}">
|
|
|
- {{DictionaryStore.gxMethodMap.get(scope.row.shareMethod)}}
|
|
|
+ <template #type-column-value="{scope}">
|
|
|
+ {{DictionaryStore.shipTypeMap.get(String(scope.row.type))}}
|
|
|
</template>
|
|
|
- <template #shareCycle-column-value="{scope}">
|
|
|
- {{DictionaryStore.gxCycleMap.get(scope.row.shareCycle)}}
|
|
|
+ <template #certType-column-value="{scope}">
|
|
|
+ {{DictionaryStore.certTypeMap.get(String(scope.row.certType))}}
|
|
|
</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 #important-column-value="{scope}">
|
|
|
+ {{DictionaryStore.importantMap.get(scope.row.important)}}
|
|
|
</template>
|
|
|
<template #do-column-value="{scope}">
|
|
|
<CusButton type="table-edit" @click="onEdit(scope.row)"/>
|
|
@@ -75,7 +72,7 @@
|
|
|
</template>
|
|
|
</CusTable>
|
|
|
</div>
|
|
|
- <detail v-model:show="state.detail.show" :transfer="state.detail.transfer"/>
|
|
|
+ <detail v-model:show="state.detail.show" :transfer="state.detail.transfer" @refresh="onSearch"/>
|
|
|
</div>
|
|
|
</CusDialog>
|
|
|
</template>
|
|
@@ -85,6 +82,8 @@ import {computed, getCurrentInstance, nextTick, onMounted, reactive, ref, watch}
|
|
|
import {useDictionaryStore} from "@/stores";
|
|
|
import {ElMessage, ElMessageBox} from "element-plus";
|
|
|
import detail from './detail.vue'
|
|
|
+import {shipArchiveDelete, shipArchiveList} from "@/api/modules/web/archive";
|
|
|
+import {warnAreaDelete} from "@/api/modules/web/area";
|
|
|
|
|
|
const emit = defineEmits(['update:show', 'refresh'])
|
|
|
const {proxy} = getCurrentInstance()
|
|
@@ -101,22 +100,22 @@ const state: any = reactive({
|
|
|
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: 'name', label: '船名号', width: 200},
|
|
|
+ {value: 'maxSpeed', label: '最大航速', width: 200},
|
|
|
+ {value: 'length', label: '船长', width: 200},
|
|
|
+ {value: 'width', label: '船宽', width: 200},
|
|
|
+ {value: 'beidouId', label: '北斗终端号', width: 200},
|
|
|
+ {value: 'mmsi', label: 'MMSI', width: 200},
|
|
|
+ {value: 'type', label: '船舶类型', width: 200},
|
|
|
+ {value: 'certType', label: '持证类型', width: 200},
|
|
|
+ {value: 'important', label: '是否重点船舶', width: 200},
|
|
|
{value: "do", label: "操作", width: 160, fixed: 'right'},
|
|
|
],
|
|
|
form: {},
|
|
|
formReal: {},
|
|
|
result: {
|
|
|
total: 0,
|
|
|
- data: [{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},]
|
|
|
+ data: []
|
|
|
}
|
|
|
},
|
|
|
detail: {
|
|
@@ -128,6 +127,7 @@ watch(() => props.show, (n) => {
|
|
|
if (n) {
|
|
|
state.loading = false
|
|
|
initDictionary()
|
|
|
+ onSearch()
|
|
|
}
|
|
|
})
|
|
|
const initDictionary = () => {
|
|
@@ -139,8 +139,8 @@ const onPage = (pageNum, pageSize) => {
|
|
|
pageSize: pageSize
|
|
|
}
|
|
|
const params = {
|
|
|
- page: state.query.page.pageNum,
|
|
|
- size: state.query.page.pageSize,
|
|
|
+ pageNum: state.query.page.pageNum,
|
|
|
+ pageSize: state.query.page.pageSize,
|
|
|
}
|
|
|
// 添加表单参数
|
|
|
for (const [k, v] of Object.entries(state.query.formReal)) {
|
|
@@ -149,11 +149,11 @@ const onPage = (pageNum, pageSize) => {
|
|
|
}
|
|
|
}
|
|
|
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
|
|
|
- // })
|
|
|
+ shipArchiveList(params).then(res => {
|
|
|
+ state.query.result.total = res.total
|
|
|
+ state.query.result.data = res.rows
|
|
|
+ state.query.loading = false
|
|
|
+ })
|
|
|
}
|
|
|
const onSearch = () => {
|
|
|
state.query.formReal = JSON.parse(JSON.stringify(state.query.form))
|
|
@@ -173,6 +173,27 @@ const onAdd = () => {
|
|
|
}
|
|
|
state.detail.show = true
|
|
|
}
|
|
|
+const onEdit = (row) => {
|
|
|
+ state.detail.transfer = {
|
|
|
+ mode: 'edit',
|
|
|
+ id: row.id
|
|
|
+ }
|
|
|
+ state.detail.show = true
|
|
|
+}
|
|
|
+const onDel = (row) => {
|
|
|
+ ElMessageBox.confirm(`请确认是否删除${row.name}?`, "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ } as any).then(() => {
|
|
|
+ state.loading = true
|
|
|
+ shipArchiveDelete({id: row.id}).then(res => {
|
|
|
+ ElMessage.success('删除成功!')
|
|
|
+ state.loading = false
|
|
|
+ onSearch()
|
|
|
+ })
|
|
|
+ }).catch(() => {})
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|