pad-app/pages/shipWork/opinion.vue

196 lines
4.1 KiB
Vue
Raw Normal View History

2023-07-12 17:46:47 +08:00
<template>
<view class="opinion">
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.importExportFlagName}}</text></p>
<p>贸易类型<text>{{shipInfo.spmTradeName}}</text></p>
<p>作业日期<text>{{item.operationDate}}</text></p>
2023-08-23 17:42:44 +08:00
</view>
</view>
</view>
</template>
<o-empty v-else height="70vh" bg="#f5f6fa" />
2023-07-20 17:16:08 +08:00
<view>
<view class="addBtn" @click="add('add')">+ </view>
</view>
2023-07-12 17:46:47 +08:00
</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-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} / 质量意见征询 `
2023-08-01 09:32:45 +08:00
this.executeSql1('shipmentQualityConsultationRespList')
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 16:32:50 +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: "opinion"
}
const dataType = encodeURIComponent(JSON.stringify(objType));
uni.navigateTo({
2023-09-23 20:16:54 +08:00
url: `/pages/shipWork/opinionSign?dataType=${dataType}`
})
},
// 点击新增
2023-07-20 17:16:08 +08:00
add(state, item, index) {
if (state != 'add') {
uni.setStorageSync('opinionRow', item);
uni.setStorageSync('opinionRowIndex', index);
}
2023-07-12 17:46:47 +08:00
const obj = {
state: state,
}
const params = encodeURIComponent(JSON.stringify(obj));
uni.navigateTo({
url: `/pages/shipWork/opinionAdd?params=${params}`
})
},
}
}
</script>
<style lang="less" scoped>
.opinion {
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
}
}
}
2023-07-12 17:46:47 +08:00
}
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>