pad-app/pages/shipWork/mafi.vue

269 lines
5.5 KiB
Vue
Raw Normal View History

2023-07-12 17:46:47 +08:00
<template>
<view class="mafi">
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">
<view class="signBox">
<p class="sign" @click="sign"></p>
2023-07-20 17:16:08 +08:00
</view>
<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">
2023-09-23 20:16:54 +08:00
<image src="../../static/images/shipWork/hc.png" mode="widthFix"></image>
2023-08-23 17:42:44 +08:00
<text>航次{{item.vvyName}}</text>
</view>
<view class="liInfo">
2023-12-27 17:57:26 +08:00
<p>马菲板号<text>{{item.mafiBarcode}}</text></p>
<p>尺码<text>{{item.size}}</text></p>
2024-04-02 18:05:56 +08:00
<p>类型
<text>{{item.type == 'FULL' ? '重板' : '空板'}}</text>
</p>
<p>装卸方式
<text>{{item.loadType == 'LOAD' ? '装货' : '卸货'}}</text>
</p>
2023-08-23 17:42:44 +08:00
</view>
2023-11-01 18:40:05 +08:00
<view class="status didNot" v-if="item.status == 0 || item.status == 'null'">
2024-01-26 18:02:31 +08:00
<p>待提交</p>
2023-08-23 17:42:44 +08:00
</view>
2023-11-01 18:40:05 +08:00
<view class="status didNot" v-if="item.status == 1">
<p>待审核</p>
</view>
<view class="status didNot" v-if="item.status == 2">
<p>审批中</p>
</view>
<view class="status success" v-if="item.status == 3">
<p>审核通过</p>
</view>
<view class="status fail" v-if="item.status == 4">
<p>审核驳回</p>
</view>
<view class="status success" v-if="item.status == 5">
<p>审核通过</p>
2023-08-23 17:42:44 +08:00
</view>
</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: "船名 - MAFI清单",
2023-07-20 17:16:08 +08:00
shipInfo: {},
2023-11-01 18:40:05 +08:00
infoList: [],
vtpId: "",
2023-07-12 17:46:47 +08:00
}
},
2023-07-20 17:16:08 +08:00
mounted() {
2023-11-01 18:40:05 +08:00
this.vtpId = uni.getStorageSync('vtpId')
let title = uni.getStorageSync('shipWorkTitle')
this.title = `${title} / MAFI清单 `
2023-08-01 09:32:45 +08:00
this.executeSql1('mafiListRespList')
2023-08-24 16:22:29 +08:00
this.executeSql1('shipInfoTable')
2023-07-20 17:16:08 +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) {
2023-11-01 18:40:05 +08:00
let sql = `select * from ${tableName} WHERE vtpId = '${this.vtpId}'`
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]
} else {
this.infoList = value
}
2023-08-01 09:32:45 +08:00
}).catch((error) => {
// 在reject时执行的回调函数
console.error(error);
});
},
// 点击签名
sign() {
2023-08-23 17:42:44 +08:00
const objType = {
signType: "mafi"
}
const dataType = encodeURIComponent(JSON.stringify(objType));
uni.navigateTo({
2023-09-23 20:16:54 +08:00
url: `/pages/shipWork/mafiSign?dataType=${dataType}`
})
},
// 点击新增
2023-07-20 17:16:08 +08:00
add(state, item, index) {
if (state != 'add') {
uni.setStorageSync('mafiRow', item);
uni.setStorageSync('mafiRowIndex', index);
}
2023-07-12 17:46:47 +08:00
const obj = {
state: state,
}
const params = encodeURIComponent(JSON.stringify(obj));
uni.navigateTo({
url: `/pages/shipWork/mafiAdd?params=${params}`
})
},
}
}
</script>
<style lang="less" scoped>
.mafi {
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;
.signBox {
display: flex;
justify-content: flex-end;
.sign {
2023-12-27 17:57:26 +08:00
width: 86px;
height: 36px;
line-height: 36px;
text-align: center;
color: #2979ff;
border: 1px solid #2979ff;
border-radius: 4px;
color: #2979ff;
}
}
2023-07-20 17:16:08 +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-20 17:16:08 +08:00
.li {
2023-08-23 17:42:44 +08:00
width: 33%;
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;
2023-12-27 17:57:26 +08:00
margin-top: 24px;
2023-08-23 17:42:44 +08:00
2023-07-12 17:46:47 +08:00
p {
2023-08-23 17:42:44 +08:00
width: 49%;
margin-bottom: 12px;
2023-12-27 17:57:26 +08:00
color: #999;
2023-08-23 17:42:44 +08:00
text {
font-weight: bold;
2023-12-27 17:57:26 +08:00
color: #23262e;
2023-08-23 17:42:44 +08:00
}
}
}
.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>