|
@@ -4,10 +4,15 @@
|
|
<span class="title-dialog">疏浚船舶</span>
|
|
<span class="title-dialog">疏浚船舶</span>
|
|
<template v-if="list.length>0">
|
|
<template v-if="list.length>0">
|
|
<el-table :data="list" class="table-default dw-table" stripe>
|
|
<el-table :data="list" class="table-default dw-table" stripe>
|
|
- <el-table-column label="序号" type="index" :dataformatas="indexCreate" />
|
|
|
|
- <el-table-column label="船舶名称" prop="SHIPNAME" min-width="100" show-overflow-tooltip />
|
|
|
|
- <el-table-column label="船舶类型" prop="SHIPTYPE" min-width="100" show-overflow-tooltip />
|
|
|
|
- <el-table-column label="吞吐量(方)" prop="TONNAGE" min-width="100" show-overflow-tooltip />
|
|
|
|
|
|
+ <el-table-column label="序号" type="index" min-width="40" :dataformatas="indexCreate" />
|
|
|
|
+ <el-table-column label="船舶名称" prop="SHIPNAME" min-width="100" show-overflow-tooltip />
|
|
|
|
+ <el-table-column label="船舶类型" prop="SHIPTYPE" min-width="65" show-overflow-tooltip />
|
|
|
|
+ <el-table-column label="吞吐量(方)" prop="TONNAGE" min-width="75" show-overflow-tooltip />
|
|
|
|
+ <el-table-column label="视频监控" min-width="65">
|
|
|
|
+ <template #default="scope">
|
|
|
|
+ <el-button type="primary" :disabled="scope.row.SHIPTYPE==='运泥船'" class="btn-check" @click="checkVideo(scope.row)">查看</el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
<el-pagination
|
|
<el-pagination
|
|
class="pagi-default"
|
|
class="pagi-default"
|
|
@@ -27,6 +32,9 @@
|
|
<!-- <transition name="loading">
|
|
<!-- <transition name="loading">
|
|
<div class="loading" v-if="showLoading">加载中...</div>
|
|
<div class="loading" v-if="showLoading">加载中...</div>
|
|
</transition> -->
|
|
</transition> -->
|
|
|
|
+ <Teleport to="#common">
|
|
|
|
+ <VideoForBoat v-show="Boolean(currentVideoId)" :video-id="currentVideoId" @close="handleCloseVideo" />
|
|
|
|
+ </Teleport>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -37,13 +45,15 @@ export default {
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
- import { onMounted,onBeforeMount, reactive, ref } from 'vue'
|
|
|
|
|
|
+ import { onMounted,onBeforeMount, reactive, ref, computed, watch } from 'vue'
|
|
import { getDredgingShip } from '@/apis/hdsj'
|
|
import { getDredgingShip } from '@/apis/hdsj'
|
|
|
|
+ import VideoForBoat from './VideoForBoat.vue';
|
|
import {clearMap} from "@/utils/map/ArcgisUtil";
|
|
import {clearMap} from "@/utils/map/ArcgisUtil";
|
|
- import { ElTable, ElTableColumn, ElPagination } from 'element-plus'
|
|
|
|
|
|
+ import { ElTable, ElTableColumn, ElPagination, ElButton } from 'element-plus'
|
|
import 'element-plus/es/components/table/style/css'
|
|
import 'element-plus/es/components/table/style/css'
|
|
import 'element-plus/es/components/table-column/style/css'
|
|
import 'element-plus/es/components/table-column/style/css'
|
|
import 'element-plus/es/components/pagination/style/css'
|
|
import 'element-plus/es/components/pagination/style/css'
|
|
|
|
+ import 'element-plus/es/components/button/style/css'
|
|
const props = defineProps(['objId'])
|
|
const props = defineProps(['objId'])
|
|
// const showLoading = ref(false)
|
|
// const showLoading = ref(false)
|
|
|
|
|
|
@@ -52,12 +62,20 @@ export default {
|
|
const pageSize = ref(10)
|
|
const pageSize = ref(10)
|
|
const total = ref(0)
|
|
const total = ref(0)
|
|
|
|
|
|
- const reqs=ref({projectId:props.objId,index:currentPage.value,size:pageSize.value})
|
|
|
|
|
|
+ const reqs = computed(() => {
|
|
|
|
+ return {
|
|
|
|
+ projectId: props.objId,
|
|
|
|
+ index: currentPage.value,
|
|
|
|
+ size: pageSize.value
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
|
|
- onMounted(()=>{
|
|
|
|
|
|
+ watch(() => props.objId, () => {
|
|
console.log("入参数据:",reqs.value)
|
|
console.log("入参数据:",reqs.value)
|
|
|
|
+ currentPage.value = 1
|
|
getBoats(reqs.value)
|
|
getBoats(reqs.value)
|
|
- })
|
|
|
|
|
|
+ },{ immediate: true })
|
|
|
|
+
|
|
const emit = defineEmits(['closeBoatList'])
|
|
const emit = defineEmits(['closeBoatList'])
|
|
|
|
|
|
function handleClose() {
|
|
function handleClose() {
|
|
@@ -77,18 +95,29 @@ export default {
|
|
pageSize.value = val
|
|
pageSize.value = val
|
|
currentPage.value = 1
|
|
currentPage.value = 1
|
|
getBoats(reqs.value)
|
|
getBoats(reqs.value)
|
|
-
|
|
|
|
}
|
|
}
|
|
|
|
+
|
|
function getBoats(prop) {
|
|
function getBoats(prop) {
|
|
getDredgingShip(prop).then(req=>{
|
|
getDredgingShip(prop).then(req=>{
|
|
console.log("出参数据:",req)
|
|
console.log("出参数据:",req)
|
|
- if (req.code=='200'){
|
|
|
|
- console.log("出参数据:",req.data.Rows)
|
|
|
|
- list.value=req.data.Rows
|
|
|
|
- }
|
|
|
|
|
|
+ if (req.code=='200'){
|
|
|
|
+ console.log("出参数据:",req.data.Rows)
|
|
|
|
+ list.value=req.data.Rows.sort((a,b)=> a['SHIPTYPE'].localeCompare(b['SHIPTYPE']))
|
|
|
|
+ total.value = req.data.TotalRowCount
|
|
|
|
+ }
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ const currentVideoId = ref('')
|
|
|
|
+
|
|
|
|
+ function checkVideo(row) {
|
|
|
|
+ currentVideoId.value = row['videoId']
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ function handleCloseVideo() {
|
|
|
|
+ currentVideoId.value = ''
|
|
|
|
+ }
|
|
|
|
+
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
@@ -143,5 +172,26 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ .btn-check {
|
|
|
|
+ // background: rgba(52, 143, 208,0.65);
|
|
|
|
+ // border: 1px solid rgb(84, 157, 208);
|
|
|
|
+ // padding: 4px 8px;
|
|
|
|
+ // border-radius: 3px;
|
|
|
|
+ // cursor: pointer;
|
|
|
|
+ // &:hover {
|
|
|
|
+
|
|
|
|
+ // }
|
|
|
|
+ height: 26px;
|
|
|
|
+ padding: 0 10px;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ color: #ddd;
|
|
|
|
+
|
|
|
|
+ &.is-disabled {
|
|
|
|
+ background-color: #409eff;
|
|
|
|
+ filter: opacity(0.7) brightness(0.7);
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|