2023-07-12 17:46:47 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="untieCord">
|
2023-08-23 17:42:44 +08:00
|
|
|
|
<head-view :title="title"></head-view>
|
2023-07-12 17:46:47 +08:00
|
|
|
|
<view class="container">
|
2023-07-24 16:56:46 +08:00
|
|
|
|
<view class="signBox">
|
|
|
|
|
<p class="sign" @click="sign">点击签名</p>
|
2023-07-19 18:12:19 +08:00
|
|
|
|
</view>
|
2023-07-24 16:56:46 +08:00
|
|
|
|
<template v-if="infoList.length > 0">
|
|
|
|
|
<view class="ul">
|
|
|
|
|
<view class="li" v-for="(item,index) in infoList" :key="index" @click="add('look',item,index)">
|
2023-08-23 17:42:44 +08:00
|
|
|
|
<view class="title">
|
|
|
|
|
<image src="../../static/images/shipWork/hc.png" mode=""></image>
|
|
|
|
|
<text>航次:{{item.vvyName}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="liInfo">
|
|
|
|
|
<p>进出口:{{item.importExportFlagName}}</p>
|
|
|
|
|
<p>贸易类型:{{item.tradeTypeName}}</p>
|
|
|
|
|
<p>泊位:{{item.bthIdName}}</p>
|
|
|
|
|
<p>系缆时间:{{item.attachTime}}</p>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="status didNot">
|
|
|
|
|
<p>未上传</p>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- <view class="status success">
|
|
|
|
|
<p>已上传</p>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="status fail">
|
|
|
|
|
<p>上传失败</p>
|
|
|
|
|
</view> -->
|
|
|
|
|
|
2023-07-24 16:56:46 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
<o-empty v-else height="70vh" bg="#f5f6fa" />
|
2023-07-12 17:46:47 +08:00
|
|
|
|
<view class="addBtn" @click="add('add')">+ 新增</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2023-08-01 09:32:45 +08:00
|
|
|
|
import sqlite from "../../common/sqlite.js"
|
2023-07-12 17:46:47 +08:00
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2023-08-24 16:22:29 +08:00
|
|
|
|
title: "船只 - 系解缆",
|
2023-07-19 18:12:19 +08:00
|
|
|
|
shipInfo: {},
|
|
|
|
|
infoList: []
|
2023-07-12 17:46:47 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2023-07-19 18:12:19 +08:00
|
|
|
|
mounted() {
|
2023-08-01 09:32:45 +08:00
|
|
|
|
// this.shipInfo = uni.getStorageSync('shipInfo')
|
|
|
|
|
// this.infoList = uni.getStorageSync('addUntieArr')
|
|
|
|
|
this.executeSql1('attachUnmoorRespList')
|
2023-08-24 16:22:29 +08:00
|
|
|
|
this.executeSql1('shipInfoTable')
|
2023-07-19 18:12:19 +08:00
|
|
|
|
},
|
2023-07-12 17:46:47 +08:00
|
|
|
|
methods: {
|
2023-08-01 09:32:45 +08:00
|
|
|
|
// 查
|
2023-08-01 14:35:05 +08:00
|
|
|
|
executeSql1(tableName) {
|
|
|
|
|
let sql = `select * from ${tableName}`
|
2023-08-01 09:32:45 +08:00
|
|
|
|
sqlite.executeSqlCeshi(sql).then((value) => {
|
|
|
|
|
// 在resolve时执行的回调函数
|
2023-08-24 16:22:29 +08:00
|
|
|
|
if (tableName == 'shipInfoTable') {
|
|
|
|
|
this.shipInfo = value[0]
|
|
|
|
|
this.title = `${this.shipInfo.vslCnname} - 系解缆`
|
|
|
|
|
} else {
|
|
|
|
|
this.infoList = value
|
|
|
|
|
}
|
2023-08-01 09:32:45 +08:00
|
|
|
|
}).catch((error) => {
|
|
|
|
|
// 在reject时执行的回调函数
|
|
|
|
|
console.error(error);
|
|
|
|
|
});
|
|
|
|
|
},
|
2023-07-24 16:56:46 +08:00
|
|
|
|
// 点击签名
|
|
|
|
|
sign() {
|
2023-08-23 17:42:44 +08:00
|
|
|
|
const objType = {
|
|
|
|
|
signType: "untieCord"
|
|
|
|
|
}
|
|
|
|
|
const dataType = encodeURIComponent(JSON.stringify(objType));
|
2023-07-24 16:56:46 +08:00
|
|
|
|
uni.navigateTo({
|
2023-08-23 17:42:44 +08:00
|
|
|
|
url: `/pages/shipWork/sign?dataType=${dataType}`
|
2023-07-24 16:56:46 +08:00
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 点击新增
|
2023-07-19 18:12:19 +08:00
|
|
|
|
add(state, item, index) {
|
2023-07-20 17:16:08 +08:00
|
|
|
|
if (state != 'add') {
|
|
|
|
|
uni.setStorageSync('untieRow', item);
|
|
|
|
|
uni.setStorageSync('untieRowIndex', index);
|
|
|
|
|
}
|
2023-07-12 17:46:47 +08:00
|
|
|
|
const obj = {
|
|
|
|
|
state: state,
|
|
|
|
|
}
|
|
|
|
|
const params = encodeURIComponent(JSON.stringify(obj));
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: `/pages/shipWork/untieAdd?params=${params}`
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.untieCord {
|
2023-08-23 17:42:44 +08:00
|
|
|
|
.headInfo {
|
|
|
|
|
/deep/.uniui-bottom {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-12 17:46:47 +08:00
|
|
|
|
.container {
|
|
|
|
|
padding: 30px 20px;
|
|
|
|
|
|
2023-07-24 16:56:46 +08:00
|
|
|
|
.signBox {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
|
|
.sign {
|
|
|
|
|
text-align: right;
|
|
|
|
|
color: #2979ff;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-07-19 18:12:19 +08:00
|
|
|
|
.ul {
|
2023-07-12 17:46:47 +08:00
|
|
|
|
padding: 20px 0;
|
2023-08-23 17:42:44 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2023-07-12 17:46:47 +08:00
|
|
|
|
|
2023-07-19 18:12:19 +08:00
|
|
|
|
.li {
|
2023-08-23 17:42:44 +08:00
|
|
|
|
width: 49%;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-bottom: 10px;
|
2023-07-12 17:46:47 +08:00
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
display: flex;
|
2023-08-23 17:42:44 +08:00
|
|
|
|
|
|
|
|
|
text {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
image {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
}
|
2023-07-12 17:46:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-08-23 17:42:44 +08:00
|
|
|
|
.liInfo {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
|
2023-07-12 17:46:47 +08:00
|
|
|
|
p {
|
2023-08-23 17:42:44 +08:00
|
|
|
|
width: 49%;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
|
|
|
|
|
text {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status {
|
|
|
|
|
padding: 5px;
|
|
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 16px;
|
|
|
|
|
right: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.didNot {
|
|
|
|
|
background-color: #FFF7EE;
|
|
|
|
|
color: #FC8300;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.success {
|
|
|
|
|
background: #F1F8FF;
|
|
|
|
|
color: #0067CF;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fail {
|
|
|
|
|
background: #FFF0F0;
|
|
|
|
|
color: #E50101;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.shift {
|
|
|
|
|
display: flex;
|
|
|
|
|
padding: 16px 4px;
|
|
|
|
|
background-color: #f7f7f7;
|
|
|
|
|
margin: 5px 0;
|
|
|
|
|
|
|
|
|
|
text:first-child {
|
|
|
|
|
color: #0067CF;
|
|
|
|
|
margin: 0 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.time {
|
|
|
|
|
color: #23262E;
|
|
|
|
|
margin-top: 3px;
|
|
|
|
|
margin-right: 15px;
|
2023-07-12 17:46:47 +08:00
|
|
|
|
}
|
2023-08-23 17:42:44 +08:00
|
|
|
|
|
2023-07-12 17:46:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.state {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-08-23 17:42:44 +08:00
|
|
|
|
|
|
|
|
|
.li:nth-of-type(3n - 1) {
|
|
|
|
|
margin: 0 0.5% 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/deep/.o-empty {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2023-07-12 17:46:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.addBtn {
|
|
|
|
|
position: fixed;
|
|
|
|
|
right: 50px;
|
|
|
|
|
bottom: 50px;
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 100px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background-color: #2979ff;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 100px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|