pad-app/pages/shipWork/shipPlan.vue

222 lines
5.9 KiB
Vue
Raw Normal View History

2023-07-12 17:46:47 +08:00
<template>
<view class="shipPlan">
2023-08-24 17:06:35 +08:00
<head-view :title="title" url="/pages/shipWork/documentList"></head-view>
2023-11-01 18:40:05 +08:00
<view class="container contentFixed">
2023-12-22 17:48:52 +08:00
<view class="liBox">
<p class="title">基本信息</p>
<view class="ul">
<view class="li wLi">
<p>船名</p>
<text v-if="shipInfo.spmName != 'null'">{{shipInfo.spmName}}</text>
<text v-else>-</text>
</view>
<view class="liContent" v-for="(item,index) in vvyList" :key="index">
<view class="li">
<p>{{item.importExportFlagName}}航次</p>
<text v-if="item.vvyName != 'null'">{{item.vvyName}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>贸易类型</p>
<text v-if="item.tradeTypeName != 'null'">{{item.tradeTypeName}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>航线</p>
<text v-if="item.lcoName != 'null'">{{item.lcoName}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>船公司</p>
<text v-if="item.shipComName != 'null'">{{item.shipComName}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>船代</p>
<text v-if="item.shipAgentName != 'null'">{{item.shipAgentName}}</text>
<text v-else>-</text>
</view>
</view>
2023-11-01 18:40:05 +08:00
</view>
2023-07-12 17:46:47 +08:00
</view>
2023-12-22 17:48:52 +08:00
<view class="liBox">
<p class="title">船期信息</p>
<view class="ul">
<view class="li">
<p>计划到港时间</p>
<text v-if="shipInfo.planArrivePortTime != 'null'">{{shipInfo.planArrivePortTime}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>计划离港时间</p>
<text v-if="shipInfo.planDeparturePortTime != 'null'">{{shipInfo.planDeparturePortTime}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>计划靠泊时间</p>
<text v-if="shipInfo.planBerthingTime != 'null'">{{shipInfo.planBerthingTime}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>计划离泊时间</p>
<text v-if="shipInfo.planAnchoringTime != 'null'">{{shipInfo.planAnchoringTime}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>确报时间</p>
<text v-if="shipInfo.confirmTime != 'null'">{{shipInfo.confirmTime}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>船期状态</p>
<text v-if="shipInfo.shipmentStatus != 'null'">{{shipInfo.shipmentStatus}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>靠泊状态</p>
<text v-if="shipInfo.berthStatus != 'null'">{{shipInfo.berthStatus}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>计划泊位</p>
<text v-if="shipInfo.planBerthageName != 'null'">{{shipInfo.planBerthageName}}</text>
<text v-else>-</text>
</view>
</view>
2023-07-12 17:46:47 +08:00
</view>
2023-12-22 17:48:52 +08:00
<view class="liBox">
<p class="title">计划信息</p>
<view class="ul" v-for="(item,index) in vvyList" :key="index">
<view class="li">
<p>{{item.importExportFlagName}}航次</p>
<text v-if="item.vvyName != 'null'">{{item.vvyName}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>计划开工时间</p>
<text v-if="item.planStartTime != 'null'">{{item.planStartTime}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>计划完工时间</p>
<text v-if="item.planFinishTime != 'null'">{{item.planFinishTime}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>品牌</p>
<text v-if="item.vgdGoodName != 'null'">{{item.vgdGoodName}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>计划数量</p>
<text v-if="item.planAmount != 'null'">{{item.planAmount}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>工班人数</p>
<text v-if="item.planNum != 'null'">{{item.planNum}}</text>
<text v-else>-</text>
</view>
<view class="li">
<p>计划组数</p>
<text v-if="item.teamNum != 'null'">{{item.teamNum}}</text>
<text v-else>-</text>
</view>
</view>
2023-07-12 17:46:47 +08:00
</view>
</view>
</view>
</template>
<script>
2023-08-24 16:22:29 +08:00
import sqlite from "../../common/sqlite.js"
2023-07-21 17:25:04 +08:00
export default {
data() {
return {
2023-08-24 16:22:29 +08:00
title: "船名 - 船舶计划",
2023-07-21 17:25:04 +08:00
shipInfo: {},
2023-11-01 18:40:05 +08:00
vvyList: [],
vtpId: "",
2023-07-21 17:25:04 +08:00
}
},
mounted() {
2023-11-01 18:40:05 +08:00
let title = uni.getStorageSync('shipWorkTitle')
this.title = `${title} / 船舶计划 `
this.vtpId = uni.getStorageSync('vtpId')
this.executeSql1('voyageScheduleDataPadRespDTO')
this.executeSql1('voyageScheduleDataDetailRespDTOList')
2023-08-01 09:32:45 +08:00
},
methods: {
2023-08-24 16:22:29 +08:00
// 查
executeSql1(tableName) {
2023-11-01 18:40:05 +08:00
let sql = `select * from ${tableName} WHERE vtpId = '${this.vtpId}'`
2023-08-24 16:22:29 +08:00
sqlite.executeSqlCeshi(sql).then((value) => {
// 在resolve时执行的回调函数
2023-11-01 18:40:05 +08:00
if (tableName == 'voyageScheduleDataPadRespDTO') {
this.shipInfo = value[0]
} else {
this.vvyList = value
}
2023-08-24 16:22:29 +08:00
}).catch((error) => {
// 在reject时执行的回调函数
console.error(error);
});
2023-08-01 09:32:45 +08:00
},
2023-07-21 17:25:04 +08:00
}
}
2023-07-12 17:46:47 +08:00
</script>
<style lang="less" scoped>
.shipPlan {
.container {
2023-12-22 17:48:52 +08:00
padding: 16px;
2023-07-12 17:46:47 +08:00
2023-12-22 17:48:52 +08:00
.liBox {
width: 100%;
padding: 24px 16px;
background-color: #fff;
margin-bottom: 16px;
2023-07-12 17:46:47 +08:00
2023-12-22 17:48:52 +08:00
.title {
display: flex;
margin-bottom: 20px;
font-size: 18px;
font-weight: bold;
2023-07-12 17:46:47 +08:00
}
2023-12-22 17:48:52 +08:00
.ul {
display: flex;
flex-wrap: wrap;
.liContent {
width: 100%;
display: flex;
flex-wrap: wrap;
}
.li {
min-width: 32%;
margin-bottom: 12px;
display: flex;
font-size: 14px;
height: 20px;
line-height: 20px;
font-size: 16px;
p {
color: #999;
}
text {
color: #23262E;
}
}
.wLi {
width: 100%;
}
2023-07-12 17:46:47 +08:00
}
}
}
}
</style>