2023-07-12 17:46:47 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="shipInfo">
|
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-07-12 17:46:47 +08:00
|
|
|
|
<view class="ul">
|
2023-08-03 15:36:23 +08:00
|
|
|
|
<view class="li">船名:{{shipInfo.vslCnname}}</view>
|
|
|
|
|
<view class="li">总重:{{shipInfo.vslGton}}</view>
|
|
|
|
|
<view class="li">净重:{{shipInfo.vslNetton}}</view>
|
|
|
|
|
<view class="li">长度:{{shipInfo.vslLoa}}</view>
|
|
|
|
|
<view class="li">宽度:{{shipInfo.vslBreadth}}</view>
|
|
|
|
|
<view class="li">空载吃水:{{shipInfo.vslDraftunload}}</view>
|
|
|
|
|
<view class="li">重载吃水:{{shipInfo.vslDraftload}}</view>
|
|
|
|
|
<view class="li">舱口高度:{{shipInfo.spmCabinht}}</view>
|
|
|
|
|
<view class="li">最低作业潮水:{{shipInfo.spmMintide}}</view>
|
|
|
|
|
<view class="li">驾驶台位置:{{shipInfo.spmCab}}</view>
|
|
|
|
|
<view class="li">跳板中左:{{shipInfo.spmBoardCentrele}}</view>
|
|
|
|
|
<view class="li">跳板前左:{{shipInfo.spmBoardFrontle}}</view>
|
|
|
|
|
<view class="li">跳板后左:{{shipInfo.spmBoardLaterle}}</view>
|
|
|
|
|
<view class="li">跳板中右:{{shipInfo.spmBoardCentrerg}}</view>
|
|
|
|
|
<view class="li">跳板后右 :{{shipInfo.spmBoardLaterrg}}</view>
|
2023-11-01 18:40:05 +08:00
|
|
|
|
<view class="li">跳板前右:{{shipInfo.spmBoardFrontrg}}</view>
|
2023-07-12 17:46:47 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2023-08-03 15:36:23 +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-08-03 15:36:23 +08:00
|
|
|
|
shipInfo: {},
|
2023-11-01 18:40:05 +08:00
|
|
|
|
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('shipInfoTable')
|
2023-08-01 09:32:45 +08:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
2023-08-03 15:36:23 +08:00
|
|
|
|
// 查
|
|
|
|
|
executeSql1(tableName) {
|
2023-11-01 18:40:05 +08:00
|
|
|
|
let sql = `select * from ${tableName} WHERE vtpId = '${this.vtpId}'`
|
2023-08-03 15:36:23 +08:00
|
|
|
|
sqlite.executeSqlCeshi(sql).then((value) => {
|
|
|
|
|
// 在resolve时执行的回调函数
|
|
|
|
|
this.shipInfo = value[0]
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
// 在reject时执行的回调函数
|
|
|
|
|
console.error(error);
|
|
|
|
|
});
|
|
|
|
|
},
|
2023-07-21 17:25:04 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-07-12 17:46:47 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.shipInfo {
|
|
|
|
|
.container {
|
|
|
|
|
padding: 30px 20px;
|
|
|
|
|
|
|
|
|
|
.ul {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
|
|
|
|
|
.li {
|
|
|
|
|
min-width: 45%;
|
|
|
|
|
margin: 10px 20px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|