From a7cec33e766b648e5cfb6af43589e82ff5fc92e2 Mon Sep 17 00:00:00 2001
From: Panzihang <819652404@qq.com>
Date: Tue, 11 Jul 2023 17:29:53 +0800
Subject: [PATCH 1/4] 7.11 pan
---
pages.json | 10 +-
pages/shipWork/mixWork.vue | 31 +-
pages/shipWork/{mixAdd.vue => peopleAdd.vue} | 82 ++++-
pages/shipWork/shiftAdd.vue | 337 ++++++++++++++++++
uni_modules/uni-steps/changelog.md | 16 +
.../components/uni-steps/uni-steps.vue | 269 ++++++++++++++
uni_modules/uni-steps/package.json | 89 +++++
uni_modules/uni-steps/readme.md | 13 +
8 files changed, 826 insertions(+), 21 deletions(-)
rename pages/shipWork/{mixAdd.vue => peopleAdd.vue} (50%)
create mode 100644 pages/shipWork/shiftAdd.vue
create mode 100644 uni_modules/uni-steps/changelog.md
create mode 100644 uni_modules/uni-steps/components/uni-steps/uni-steps.vue
create mode 100644 uni_modules/uni-steps/package.json
create mode 100644 uni_modules/uni-steps/readme.md
diff --git a/pages.json b/pages.json
index 8db8ee7..38f4816 100644
--- a/pages.json
+++ b/pages.json
@@ -37,9 +37,15 @@
}
},
{
- "path": "pages/shipWork/mixAdd",
+ "path": "pages/shipWork/peopleAdd",
"style": {
- "navigationBarTitleText": "杂项作业编辑"
+ "navigationBarTitleText": "杂项作业查看(人员信息)"
+ }
+ },
+ {
+ "path": "pages/shipWork/shiftAdd",
+ "style": {
+ "navigationBarTitleText": "杂项作业查看(工班信息)"
}
},
{
diff --git a/pages/shipWork/mixWork.vue b/pages/shipWork/mixWork.vue
index 02ee611..ad6b278 100644
--- a/pages/shipWork/mixWork.vue
+++ b/pages/shipWork/mixWork.vue
@@ -5,8 +5,9 @@
{{item}}
+
- -
+
-
航次:{{item.val1}}
贸易类型:{{item.val2}}
进出口:{{item.val3}}
@@ -15,8 +16,9 @@
状态:{{item.val6}}
+
- -
+
-
航次:{{item.val1}}
一工班
@@ -33,7 +35,7 @@
状态:{{item.val6}}
- + 新增
+ + 新增
@@ -44,8 +46,9 @@
data() {
return {
tabsList: ["人员信息", "工班信息"],
- tabsType: 1,
+ tabsType: 1, // 1是人员信息 2是工班信息
tabsIndex: 0,
+ // 人员信息列表
peopleInfo: [{
val1: "JK9795799",
val2: "内贸",
@@ -68,6 +71,7 @@
val5: "100",
val6: "未上传",
}],
+ // 工班信息列表
shiftInfo: [{
val1: "JK9795799",
val6: "未上传",
@@ -84,10 +88,21 @@
this.tabsType = 2;
}
},
- add() {
- uni.navigateTo({
- url: `/pages/shipWork/mixAdd`
- })
+ add(state) {
+ const obj = {
+ state: state,
+ }
+ const params = encodeURIComponent(JSON.stringify(obj));
+ if (this.tabsType == 1) {
+ uni.navigateTo({
+ url: `/pages/shipWork/peopleAdd?params=${params}`
+ })
+ } else {
+ uni.navigateTo({
+ url: `/pages/shipWork/shiftAdd?params=${params}`
+ })
+ }
+
},
}
}
diff --git a/pages/shipWork/mixAdd.vue b/pages/shipWork/peopleAdd.vue
similarity index 50%
rename from pages/shipWork/mixAdd.vue
rename to pages/shipWork/peopleAdd.vue
index 4a7e3e3..dc63a56 100644
--- a/pages/shipWork/mixAdd.vue
+++ b/pages/shipWork/peopleAdd.vue
@@ -1,5 +1,5 @@
-
+
+
+ 取消
+ 保存
+ 编辑
+
@@ -46,6 +60,7 @@
export default {
data() {
return {
+ obj: {},
// 航次下拉框
hcValue: "",
hcList: [{
@@ -80,6 +95,14 @@
workValue: 0,
// 单船人数
shipValue: 0,
+ // 作业时间
+ datetime: "",
+ }
+ },
+ onLoad(options) {
+ if ('params' in options) {
+ // 获取传递的对象参数,使用decodeURIComponent解码,并转为对象
+ this.obj = JSON.parse(decodeURIComponent(options.params))
}
},
methods: {
@@ -99,14 +122,40 @@
shipChange(val) {
this.shipValue = val;
},
+ // 作业时间
+ changeLog(e) {
+ this.datetime = e;
+ console.log(e)
+ },
+ // 取消
+ cancel() {
+ uni.navigateTo({
+ url: '/pages/shipWork/mixWork'
+ })
+ },
+ // 保存
+ save() {
+ uni.navigateTo({
+ url: '/pages/shipWork/mixWork'
+ })
+ },
+ // 编辑
+ toGo(state) {
+ this.obj.state = state;
+ const params = encodeURIComponent(JSON.stringify(this.obj));
+ uni.navigateTo({
+ url: `/pages/shipWork/peopleAdd?params=${params}`
+ })
+ }
}
}
\ No newline at end of file
diff --git a/pages/shipWork/shiftAdd.vue b/pages/shipWork/shiftAdd.vue
new file mode 100644
index 0000000..6c66461
--- /dev/null
+++ b/pages/shipWork/shiftAdd.vue
@@ -0,0 +1,337 @@
+
+
+
+
+
+
+
+ -
+
船名:
+ 快乐号
+
+ -
+
*航次:
+
+
+ -
+
进出口:
+ 进口
+
+ -
+
贸易类型:
+ 内贸
+
+ -
+
*装卸类型:
+
+
+
+
+ 添加
+
+ -
+
*工班:
+
+
+ -
+
*作业时间 :
+
+
+
+
+ 添加
+
+ -
+
*车型:
+
+
+ -
+
*数量:
+
+
+ -
+
*装卸方式:
+
+
+ -
+
备注:
+
+
+
+
+ 取消
+ 保存
+ 下一步
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/uni_modules/uni-steps/changelog.md b/uni_modules/uni-steps/changelog.md
new file mode 100644
index 0000000..cb9d367
--- /dev/null
+++ b/uni_modules/uni-steps/changelog.md
@@ -0,0 +1,16 @@
+## 1.1.1(2021-11-22)
+- 修复 vue3中某些scss变量无法找到的问题
+## 1.1.0(2021-11-19)
+- 优化 组件UI,并提供设计资源,详见:[https://uniapp.dcloud.io/component/uniui/resource](https://uniapp.dcloud.io/component/uniui/resource)
+- 文档迁移,详见:[https://uniapp.dcloud.io/component/uniui/uni-steps](https://uniapp.dcloud.io/component/uniui/uni-steps)
+## 1.0.8(2021-05-12)
+- 新增 项目示例地址
+## 1.0.7(2021-05-06)
+- 修复 uni-steps 横向布局时,多行文字高度不合理的 bug
+## 1.0.6(2021-04-21)
+- 优化 添加依赖 uni-icons, 导入后自动下载依赖
+## 1.0.5(2021-02-05)
+- 优化 组件引用关系,通过uni_modules引用组件
+
+## 1.0.4(2021-02-05)
+- 调整为uni_modules目录规范
diff --git a/uni_modules/uni-steps/components/uni-steps/uni-steps.vue b/uni_modules/uni-steps/components/uni-steps/uni-steps.vue
new file mode 100644
index 0000000..a6c8f28
--- /dev/null
+++ b/uni_modules/uni-steps/components/uni-steps/uni-steps.vue
@@ -0,0 +1,269 @@
+
+
+
+
+
+ {{item.title}}
+ {{item.desc}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/uni_modules/uni-steps/package.json b/uni_modules/uni-steps/package.json
new file mode 100644
index 0000000..c687b40
--- /dev/null
+++ b/uni_modules/uni-steps/package.json
@@ -0,0 +1,89 @@
+{
+ "id": "uni-steps",
+ "displayName": "uni-steps 步骤条",
+ "version": "1.1.1",
+ "description": "步骤条组件,提供横向和纵向两种布局格式。",
+ "keywords": [
+ "uni-ui",
+ "uniui",
+ "步骤条",
+ "时间轴"
+],
+ "repository": "https://github.com/dcloudio/uni-ui",
+ "engines": {
+ "HBuilderX": ""
+ },
+ "directories": {
+ "example": "../../temps/example_temps"
+ },
+ "dcloudext": {
+ "category": [
+ "前端组件",
+ "通用组件"
+ ],
+ "sale": {
+ "regular": {
+ "price": "0.00"
+ },
+ "sourcecode": {
+ "price": "0.00"
+ }
+ },
+ "contact": {
+ "qq": ""
+ },
+ "declaration": {
+ "ads": "无",
+ "data": "无",
+ "permissions": "无"
+ },
+ "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui"
+ },
+ "uni_modules": {
+ "dependencies": [
+ "uni-scss",
+ "uni-icons"
+ ],
+ "encrypt": [],
+ "platforms": {
+ "cloud": {
+ "tcb": "y",
+ "aliyun": "y"
+ },
+ "client": {
+ "App": {
+ "app-vue": "y",
+ "app-nvue": "y"
+ },
+ "H5-mobile": {
+ "Safari": "y",
+ "Android Browser": "y",
+ "微信浏览器(Android)": "y",
+ "QQ浏览器(Android)": "y"
+ },
+ "H5-pc": {
+ "Chrome": "y",
+ "IE": "y",
+ "Edge": "y",
+ "Firefox": "y",
+ "Safari": "y"
+ },
+ "小程序": {
+ "微信": "y",
+ "阿里": "y",
+ "百度": "y",
+ "字节跳动": "y",
+ "QQ": "y"
+ },
+ "快应用": {
+ "华为": "u",
+ "联盟": "u"
+ },
+ "Vue": {
+ "vue2": "y",
+ "vue3": "y"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/uni_modules/uni-steps/readme.md b/uni_modules/uni-steps/readme.md
new file mode 100644
index 0000000..da7a4bf
--- /dev/null
+++ b/uni_modules/uni-steps/readme.md
@@ -0,0 +1,13 @@
+
+
+## Steps 步骤条
+> **组件名:uni-steps**
+> 代码块: `uSteps`
+
+
+步骤条,常用于显示进度
+
+### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-steps)
+#### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839
+
+
From b77e7c07e4984e8c4f5f6a392aed9a257c332d6d Mon Sep 17 00:00:00 2001
From: Panzihang <819652404@qq.com>
Date: Tue, 11 Jul 2023 17:43:29 +0800
Subject: [PATCH 2/4] 7.11 pan
---
pages/shipWork/shiftAdd.vue | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/pages/shipWork/shiftAdd.vue b/pages/shipWork/shiftAdd.vue
index 6c66461..fafe402 100644
--- a/pages/shipWork/shiftAdd.vue
+++ b/pages/shipWork/shiftAdd.vue
@@ -40,7 +40,8 @@
- 添加
+ 添加删除
-
*车型:
@@ -48,7 +49,7 @@
-
*数量:
-
+
-
*装卸方式:
@@ -60,6 +61,7 @@
maxlength="200">
+
取消
保存
@@ -198,12 +200,16 @@
ulAdd2() {
this.ulList2.push({})
},
+ del() {
+ this.ulList2.splice(0, 1)
+ },
// 车型下拉
cxChange(e) {
this.cxValue = e;
},
// 数量
numChange(val) {
+ console.log(val)
this.numValue = val;
},
// 装卸方式下拉
@@ -257,6 +263,10 @@
color: #2979ff;
margin-right: 10px;
}
+
+ span:nth-of-type(2) {
+ color: red;
+ }
}
ul {
From 10d467a1e71d1f2f4135013902a5b1fde4e43b0e Mon Sep 17 00:00:00 2001
From: Panzihang <819652404@qq.com>
Date: Wed, 12 Jul 2023 13:48:01 +0800
Subject: [PATCH 3/4] =?UTF-8?q?7.12=20pan=20=E6=9D=82=E9=A1=B9=E4=BD=9C?=
=?UTF-8?q?=E4=B8=9A=E5=8D=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages.json | 5 +
pages/shipWork/mixWork.vue | 8 +-
pages/shipWork/shiftAdd.vue | 428 +++++++++++++-----
pages/shipWork/shiftDetails.vue | 300 ++++++++++++
uni_modules/custom-tabs/changelog.md | 22 +
.../custom-tab-pane/custom-tab-pane.vue | 72 +++
.../components/custom-tabs/custom-tabs.vue | 221 +++++++++
uni_modules/custom-tabs/package.json | 83 ++++
uni_modules/custom-tabs/readme.md | 149 ++++++
9 files changed, 1181 insertions(+), 107 deletions(-)
create mode 100644 pages/shipWork/shiftDetails.vue
create mode 100644 uni_modules/custom-tabs/changelog.md
create mode 100644 uni_modules/custom-tabs/components/custom-tab-pane/custom-tab-pane.vue
create mode 100644 uni_modules/custom-tabs/components/custom-tabs/custom-tabs.vue
create mode 100644 uni_modules/custom-tabs/package.json
create mode 100644 uni_modules/custom-tabs/readme.md
diff --git a/pages.json b/pages.json
index 38f4816..04b1cd0 100644
--- a/pages.json
+++ b/pages.json
@@ -47,6 +47,11 @@
"style": {
"navigationBarTitleText": "杂项作业查看(工班信息)"
}
+ }, {
+ "path": "pages/shipWork/shiftDetails",
+ "style": {
+ "navigationBarTitleText": "工班信息详情"
+ }
},
{
"path": "pages/monitor/index",
diff --git a/pages/shipWork/mixWork.vue b/pages/shipWork/mixWork.vue
index ad6b278..4d122c1 100644
--- a/pages/shipWork/mixWork.vue
+++ b/pages/shipWork/mixWork.vue
@@ -18,7 +18,7 @@
- -
+
-
航次:{{item.val1}}
一工班
@@ -102,8 +102,12 @@
url: `/pages/shipWork/shiftAdd?params=${params}`
})
}
-
},
+ lookShift() {
+ uni.navigateTo({
+ url: `/pages/shipWork/shiftDetails`
+ })
+ }
}
}
diff --git a/pages/shipWork/shiftAdd.vue b/pages/shipWork/shiftAdd.vue
index fafe402..b6e4f73 100644
--- a/pages/shipWork/shiftAdd.vue
+++ b/pages/shipWork/shiftAdd.vue
@@ -3,69 +3,170 @@
+
+
+
+ -
+
船名:
+ 快乐号
+
+ -
+
*航次:
+
+
+ -
+
进出口:
+ 进口
+
+ -
+
贸易类型:
+ 内贸
+
+ -
+
*装卸类型:
+
+
+
+ 添加
+
+ -
+
*工班:
+
+
+ -
+
*作业时间 :
+
+
+
+ 添加删除
+
+ -
+
*车型:
+
+
+ -
+
*数量:
+
+
+ -
+
*装卸方式:
+
+
+ -
+
备注:
+
+
+
+
-
- -
-
船名:
- 快乐号
-
- -
-
*航次:
-
-
- -
-
进出口:
- 进口
-
- -
-
贸易类型:
- 内贸
-
- -
-
*装卸类型:
-
-
-
-
- 添加
-
- -
-
*工班:
-
-
- -
-
*作业时间 :
-
-
-
-
- 添加删除
-
- -
-
*车型:
-
-
- -
-
*数量:
-
-
- -
-
*装卸方式:
-
-
- -
-
备注:
-
-
-
+
+
+
+ 添加
+
+
+ 添加删除
+
+ -
+
*翻舱起点位置:
+
+
+ -
+
*翻舱终点位置:
+
+
+ -
+
*工班:
+
+
+ -
+
*作业时间 :
+
+
+ -
+
*数量:
+
+
+ -
+
*体积:
+
+
+ -
+
*重量:
+
+
+
+
+
+
+
+
+
+ 辅助作业
+
+ -
+
*技术工人:
+
+
+ -
+
*普通工人:
+
+
+ -
+
*作业时间 :
+
+
+ -
+
*重量:
+
+
+ -
+
*体积:
+
+
+ -
+
描述:
+
+
+
+ 待工作业
+
+ 作业备注
+
+
+
取消
- 保存
- 下一步
+ 保存
+ 下一步
@@ -84,91 +185,130 @@
}, {
title: '其他信息'
}],
+
+ // 工班信息
// 航次下拉框
hcValue: "",
hcList: [{
- value: 0,
+ value: "航次0",
text: "航次0"
},
{
- value: 1,
+ value: "航次1",
text: "航次1"
},
{
- value: 2,
+ value: "航次2",
text: "航次2"
},
],
// 装卸类型下拉框
zxValue: "",
zxList: [{
- value: 0,
+ value: "装卸类型0",
text: "装卸类型0"
},
{
- value: 1,
+ value: "装卸类型1",
text: "装卸类型1"
},
{
- value: 2,
+ value: "装卸类型2",
text: "装卸类型2"
},
],
-
- ulList1: [{}],
+ ulList1: [{
+ gbValue: "",
+ dataTime: ""
+ }],
// 工班下拉框
- gbValue: "",
gbList: [{
- value: 0,
+ value: "工班0",
text: "工班0"
},
{
- value: 1,
+ value: "工班1",
text: "工班1"
},
{
- value: 2,
+ value: "工班2",
text: "工班2"
},
],
- // 作业时间
- datetime: "",
-
- ulList2: [{}],
+ ulList2: [{
+ cxValue: "",
+ numValue: 0,
+ fsValue: "",
+ notes: "",
+ }],
// 车型下拉
- cxValue: "",
cxList: [{
- value: 0,
+ value: "车型0",
text: "车型0"
},
{
- value: 1,
+ value: "车型1",
text: "车型1"
},
{
- value: 2,
+ value: "车型2",
text: "车型2"
},
],
- // 数量
- numValue: 0,
// 装卸方式下拉
- fsValue: "",
fsList: [{
- value: 0,
+ value: "装卸方式0",
text: "装卸方式0"
},
{
- value: 1,
+ value: "装卸方式1",
text: "装卸方式1"
},
{
- value: 2,
+ value: "装卸方式2",
text: "装卸方式2"
},
],
- // 备注
- notes: "",
+
+ // 翻仓信息
+ // 翻仓类型下拉
+ fcList: [{
+ value: "翻仓类型0",
+ text: "翻仓类型0"
+ },
+ {
+ value: "翻仓类型1",
+ text: "翻仓类型1"
+ },
+ {
+ value: "翻仓类型2",
+ text: "翻仓类型2"
+ },
+ ],
+ fcUlList: [{
+ fcValue: "",
+ fcUlList2: [{
+ qdValue: "",
+ zdValue: "",
+ gbValue: "",
+ dataTime: "",
+ numValue: 0,
+ tjValue: 0,
+ zlValue: 0
+ }],
+ }],
+
+ // 其他信息
+ otherObj: {
+ jsWorker: 0,
+ ptworker: 0,
+ workTime: "",
+ zlValue: 0,
+ tjValue: 0,
+ describe: "",
+ dgWork: "",
+ notes: "",
+ }
}
},
onLoad(options) {
@@ -178,6 +318,7 @@
}
},
methods: {
+ // 工班信息相关
// 航次下拉
hcChange(e) {
this.hcValue = e;
@@ -188,33 +329,66 @@
},
// 点击第一个添加
ulAdd1() {
- this.ulList1.push({})
+ this.ulList1.push({
+ gbValue: "",
+ dataTime: ""
+ })
},
// 工班下拉
- gbChange(e) {
- this.gbValue = e;
- },
+ gbChange(e) {},
// 作业时间
changeLog(e) {},
// 点击第二个添加
ulAdd2() {
- this.ulList2.push({})
+ this.ulList2.push({
+ cxValue: "",
+ numValue: 0,
+ fsValue: "",
+ notes: "",
+ })
},
del() {
this.ulList2.splice(0, 1)
},
// 车型下拉
- cxChange(e) {
- this.cxValue = e;
- },
+ cxChange(e) {},
// 数量
- numChange(val) {
- console.log(val)
- this.numValue = val;
- },
+ numChange(val) {},
// 装卸方式下拉
- fsChange(e) {
- this.fsValue = e;
+ fsChange(e) {},
+
+ // 翻仓信息
+ // 翻仓类型下拉
+ fcChange(e) {},
+ // 翻仓add
+ fcAdd() {
+ this.fcUlList.push({
+ fcValue: "",
+ fcUlList2: [{
+ qdValue: "",
+ zdValue: "",
+ gbValue: "",
+ dataTime: "",
+ numValue: 12,
+ tjValue: 12,
+ zlValue: 12
+ }]
+ })
+ },
+ fcAdd2(index) {
+ this.fcUlList[index].fcUlList2.push({
+ qdValue: "",
+ zdValue: "",
+ gbValue: "",
+ dataTime: "",
+ numValue: 0,
+ tjValue: 0,
+ zlValue: 0
+ })
+ },
+ // 翻仓删除
+ delFc(index, index2) {
+ this.fcUlList[index].fcUlList2.splice(index2, 1)
},
// 取消
@@ -223,6 +397,12 @@
url: '/pages/shipWork/mixWork'
})
},
+ // 保存
+ save() {},
+ // 下一步
+ next() {
+ this.active = this.active + 1
+ },
}
}
@@ -249,7 +429,7 @@
width: 100%;
height: 10px;
background: #f2f2f2;
- margin-top: 20px;
+ margin: 20px 0;
}
.ulTop {
@@ -269,11 +449,28 @@
}
}
+ .fcUl {
+ li {
+ border: none;
+ margin-bottom: 0;
+
+ .liTitle {
+ width: 120px;
+ }
+ }
+ }
+
+ .fcUl2 {
+ .liTitle {
+ width: 120px;
+ }
+ }
+
ul {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
- margin: 20px 0;
+ margin-bottom: 20px;
li {
width: 44%;
@@ -320,8 +517,6 @@
}
-
-
.ul2 {
padding: 0;
margin-top: 0;
@@ -332,9 +527,32 @@
}
}
+ .otherWork {
+ padding: 0 20px;
+
+ .title {
+ font-size: 16px;
+ font-weight: bold;
+ padding-left: 10px;
+ border-left: 5px solid #2979ff;
+ margin-bottom: 20px;
+ }
+
+ ul {
+ li {
+ border: none;
+ }
+
+ li:last-child {
+ width: 100%;
+ }
+ }
+ }
+
.btnList {
display: flex;
justify-content: center;
+ margin-top: 20px;
/deep/ .van-button {
margin: 30px 20px;
diff --git a/pages/shipWork/shiftDetails.vue b/pages/shipWork/shiftDetails.vue
new file mode 100644
index 0000000..1fa4f21
--- /dev/null
+++ b/pages/shipWork/shiftDetails.vue
@@ -0,0 +1,300 @@
+
+
+
+
+
+
+ -
+
船名:
+ 快乐号
+
+ -
+
航次:
+ JK97065578
+
+ -
+
进出口:
+ 进口
+
+ -
+
贸易类型:
+ 外贸
+
+ -
+
装卸类型:
+ 装货
+
+
+
+ -
+
工班:
+ 一工班
+
+ -
+
作业时间:
+ 2023/06/06 12:00 - 023/06/06 13:00
+
+ -
+
车型:
+ 轿车
+
+ -
+
数量:
+ 100
+
+ -
+
备注:
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum
+ laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo commodo. Proin
+ sodales pulvinar sic tempor. Sociis natoque penatibus et magnis dis parturient montes,
+ nascetur ridiculus mus. Nam
+
+ -
+
车型:
+ 备件
+
+ -
+
数量:
+ 100
+
+ -
+
备注:
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum
+ laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo commodo. Proin
+ sodales pulvinar sic tempor. Sociis natoque penatibus et magnis dis parturient montes,
+ nascetur ridiculus mus. Nam
+
+
+
+ -
+
工班:
+ 二工班
+
+ -
+
作业时间:
+ 2023/06/06 12:00 - 023/06/06 13:00
+
+ -
+
车型:
+ 轿车
+
+ -
+
数量:
+ 100
+
+ -
+
备注:
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum
+ laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo commodo. Proin
+ sodales pulvinar sic tempor. Sociis natoque penatibus et magnis dis parturient montes,
+ nascetur ridiculus mus. Nam
+
+
+
+
+
+
+ 翻舱类型:
+ 舱内翻
+
+
+ -
+
航次:
+ JK97065578
+
+ -
+
翻舱起点:
+ D5H4
+
+ -
+
翻舱终点:
+ 舱外
+
+ -
+
作业时间:
+ 2023/06/06 12:00 - 023/06/06 13:00
+
+ -
+
车型:
+ 轿车
+
+ -
+
数量:
+ 100
+
+ -
+
体积:
+ 30
+
+ -
+
重量:
+ 50
+
+
+
+
+
+
+
+ 辅助作业
+
+ -
+
技术工人:
+ 10
+
+ -
+
普通工人:
+ 30
+
+ -
+
作业时间:
+ 2023/06/06 12:00 - 023/06/06 13:00
+
+ -
+
重量:
+ 50
+
+ -
+
体积:
+ 30
+
+ -
+
描述:
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum
+ laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo commodo. Proin
+ sodales pulvinar sic tempor. Sociis natoque penatibus et magnis dis parturient
+ montes,nascetur ridiculus mus. Nam
+
+
+ 待工作业
+
+ -
+
描述:
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum
+ laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo commodo. Proin
+ sodales pulvinar sic tempor. Sociis natoque penatibus et magnis dis parturient
+ montes,nascetur ridiculus mus. Nam
+
+
+ 作业备注
+
+ -
+
描述:
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum
+ laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo commodo. Proin
+ sodales pulvinar sic tempor. Sociis natoque penatibus et magnis dis parturient
+ montes,nascetur ridiculus mus. Nam
+
+
+
+
+
+
+
+ 取消
+ 删除
+ 编辑
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/uni_modules/custom-tabs/changelog.md b/uni_modules/custom-tabs/changelog.md
new file mode 100644
index 0000000..4978d07
--- /dev/null
+++ b/uni_modules/custom-tabs/changelog.md
@@ -0,0 +1,22 @@
+## 1.0.8(2022-04-21)
+1. 优化插件,避免多个组件互相影响。
+## 1.0.7(2022-04-20)
+1. 优化
+## 1.0.6(2022-04-20)
+1. 修改使用多个该组件存在的BUG
+## 1.0.5(2022-03-24)
+1. 修复设置animation参数无效的BUG
+2. 修复有动画切换的显示BUG
+## 1.0.4(2022-03-08)
+1. 增加defaultTextStyle字段,方便直接配置未选中的tab样式
+2. 增加activeTextStyle字段,方便直接配置选中后tab的样式
+3. 增加activeLineStyle字段,方便直接配置选中后下划线的样式
+## 1.0.3(2022-03-07)
+1. 修改vue2模式下 tablist is not defined 报错的bug
+## 1.0.2(2022-03-02)
+1. 新增tabs切换那一栏固定功能,类似吸顶效果
+2. 新增监听label变化,label值可动态改变
+3. 新增不显示的页面进行隐藏,防止某页面内容过多撑开其他页面
+4. h5隐藏滚动条
+## 1.0.0(2021-12-13)
+1.0.0
diff --git a/uni_modules/custom-tabs/components/custom-tab-pane/custom-tab-pane.vue b/uni_modules/custom-tabs/components/custom-tab-pane/custom-tab-pane.vue
new file mode 100644
index 0000000..63bd98a
--- /dev/null
+++ b/uni_modules/custom-tabs/components/custom-tab-pane/custom-tab-pane.vue
@@ -0,0 +1,72 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/uni_modules/custom-tabs/components/custom-tabs/custom-tabs.vue b/uni_modules/custom-tabs/components/custom-tabs/custom-tabs.vue
new file mode 100644
index 0000000..3cdc3e1
--- /dev/null
+++ b/uni_modules/custom-tabs/components/custom-tabs/custom-tabs.vue
@@ -0,0 +1,221 @@
+
+
+
+
+ {{item.label}}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/uni_modules/custom-tabs/package.json b/uni_modules/custom-tabs/package.json
new file mode 100644
index 0000000..96dfcbd
--- /dev/null
+++ b/uni_modules/custom-tabs/package.json
@@ -0,0 +1,83 @@
+{
+ "id": "custom-tabs",
+ "displayName": "Tabs标签页 灵活配置 多端兼容(暂停维护谨慎使用,建议使用uv-tabs)",
+ "version": "1.0.8",
+ "description": "在做项目的过程中用到了tab切换,本想着去插件市场找一个直接现用,后面发现找到的tab切换并不是我想要的那种使用方式,于是我结合了element-ui中Tabs标签页的方式写了该组件...",
+ "keywords": [
+ "tabs",
+ "tab",
+ "tabs标签页",
+ "tab切换",
+ "标签页"
+],
+ "repository": "https://gitee.com/my_dear_li_pan/my-uni-modules.git",
+"engines": {
+ },
+ "dcloudext": {
+ "category": [
+ "前端组件",
+ "通用组件"
+ ],
+ "sale": {
+ "regular": {
+ "price": "0.00"
+ },
+ "sourcecode": {
+ "price": "0.00"
+ }
+ },
+ "contact": {
+ "qq": ""
+ },
+ "declaration": {
+ "ads": "无",
+ "data": "插件不采集任何数据",
+ "permissions": "无"
+ },
+ "npmurl": ""
+ },
+ "uni_modules": {
+ "dependencies": [],
+ "encrypt": [],
+ "platforms": {
+ "cloud": {
+ "tcb": "y",
+ "aliyun": "y"
+ },
+ "client": {
+ "Vue": {
+ "vue2": "y",
+ "vue3": "y"
+ },
+ "App": {
+ "app-vue": "y",
+ "app-nvue": "n"
+ },
+ "H5-mobile": {
+ "Safari": "u",
+ "Android Browser": "y",
+ "微信浏览器(Android)": "y",
+ "QQ浏览器(Android)": "y"
+ },
+ "H5-pc": {
+ "Chrome": "y",
+ "IE": "n",
+ "Edge": "y",
+ "Firefox": "y",
+ "Safari": "y"
+ },
+ "小程序": {
+ "微信": "y",
+ "阿里": "y",
+ "百度": "y",
+ "字节跳动": "y",
+ "QQ": "y"
+ },
+ "快应用": {
+ "华为": "u",
+ "联盟": "u"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/uni_modules/custom-tabs/readme.md b/uni_modules/custom-tabs/readme.md
new file mode 100644
index 0000000..97d3d95
--- /dev/null
+++ b/uni_modules/custom-tabs/readme.md
@@ -0,0 +1,149 @@
+- 概要
+- Tips
+- 支持的平台
+- 使用示例
+- Tabs Attributes
+- Tabs Events
+- Tab-pane Attributes
+- 关注我,不迷路
+
+
+
+#### 概要
+
+在做项目的过程中用到了tab切换,本想着去插件市场找一个直接现用,后面发现找到的tab切换并不是我想要的那种使用方式,于是我结合了element-ui中Tabs标签页的方式写了该组件。
+
+
+
+
+#### Tips
+
+1. 该插件使用的预编译,需要自行安装scss/sass插件。
+2. 该插件同时兼容了VUE2和VUE3,hbuilderX 最好是更新到较新版本。
+3. 由于组件重构升级,老用户需要更新插件的,需要注意参数,根据下面提供的参数修改即可。
+4. 遵循uni_modules规范插件。
+5. 如果发现组件有bug或者不完善可以留言交流。
+6. uniapp插件git地址:https://gitee.com/my_dear_li_pan/my-uni-modules.git
+7. 个人博客地址:https://blog.csdn.net/qq_42961150?spm=1011.2124.3001.5343
+
+
+
+#### 支持的平台
+- H5、app-vue、微信小程序、百度小程序等小程序平台。
+- 暂不支持nvue。
+- cli脚手架项目是否可用,暂未测试。
+
+
+
+#### 使用示例
+```
+
+
+
+
+ 内容0
+ 内容1
+ 内容1
+ 内容1
+ 内容1
+ 内容1
+ 内容1
+ 内容1
+ 内容1
+ 内容1
+
+ 内容2
+ 内容3
+ 内容4
+ 内容5
+ 内容6
+ 内容7
+
+
+
+
+
+```
+
+
+
+#### Tabs Attributes
+
+参数|说明|类型|是否必填|可选值|默认值
+-|-|-|-|-|-|
+type|组件的唯一标识,如果有多个该组件,则值必须不同|string|是|-|-
+value|选中选项的索引,从0开始|Number|否|-|0
+animation|切换动画|Boolean|否|true/false|true
+duration|切换动画的动画时长,单位ms|Number|否|-|200
+tabSpacing|tab选项的左右间距,单位rpx|Number|否|-|40
+tabCenter|tab选项是否居中显示|Boolean|否|true/false|false
+fixed|tab选项固定|Boolean|否|true/false|false
+defaultTextStyle|未选中tab选项的样式|Object|否|示例:```:defaultTextStyle="{color:'pink'}"```|-
+activeTextStyle|选中后tab选项的样式|Object|否|示例:```:activeTextStyle="{color:'red','font-weight':700}"```|-
+activeLineStyle|选中后tab选项下划线的样式|Object|否|示例:```:activeLineStyle="{'background-color':'red',height:'6rpx'}"```|-
+
+
+
+#### Tabs Events
+事件名称|说明|回调参数
+-|-|-|
+change|tab 被选中时触发|被选中的标签tab实例
+
+
+
+#### Tab-pane Attributes
+
+参数|说明|类型|是否必填|可选值|默认值
+-|-|-|-|-|-|
+label|选项卡标题|String|是|-|-
+name|与选项卡绑定值 value 对应的标识符,表示选项卡别名。==注意:== 该值的格式必须和组件上的type配合使用,eg:type="c1",name="c1_"+自定义值|String|是|-|该选项卡在选项卡列表中的顺序值,如第一个选项卡则为'c1_1'
+
+
+
+**----- 别忘记点赞哟,您的肯定就是对我最大的支持 END -----**
+
+#### 关注我,不迷路
+
+如果任何疑问的可以在评论区留言,还可以加QQ群交流:568984539,加群备注‘地区-名字-技术类型’。
+
+更多前端等相关知识可关注我个人博客:https://blog.csdn.net/qq_42961150?spm=1011.2124.3001.5343
+
+**个人作品展示:**
+
+uniapp+vue3.2+unicloud开发微信小程序:**皮皮虎去水印**。
+
+关注下方公众号:【**全网免费网盘资源**】、【**美团外卖饿了么天天领红包**】、【**去水印**】。
+
+![image](https://vkceyugu.cdn.bspapp.com/VKCEYUGU-bb657efd-fece-483e-a715-5daea480fde8/6e029310-aec8-46e9-9883-1c88dc1925ad.jpg)
+
+
+
+
+
+
+
+
From ac0c8330aacb80b1becebcbe2e98da57ed275f4e Mon Sep 17 00:00:00 2001
From: Panzihang <819652404@qq.com>
Date: Wed, 12 Jul 2023 17:46:47 +0800
Subject: [PATCH 4/4] 7.12 pan
---
pages.json | 96 ++++++++++++
pages/shipWork/abnormal.vue | 109 +++++++++++++
pages/shipWork/abnormalAdd.vue | 180 +++++++++++++++++++++
pages/shipWork/documentList.vue | 34 ++--
pages/shipWork/mafi.vue | 113 ++++++++++++++
pages/shipWork/mafiAdd.vue | 225 ++++++++++++++++++++++++++
pages/shipWork/notice.vue | 109 +++++++++++++
pages/shipWork/noticeAdd.vue | 162 +++++++++++++++++++
pages/shipWork/opinion.vue | 109 +++++++++++++
pages/shipWork/opinionAdd.vue | 226 +++++++++++++++++++++++++++
pages/shipWork/patrol.vue | 97 ++++++++++++
pages/shipWork/patrolAdd.vue | 212 +++++++++++++++++++++++++
pages/shipWork/peopleAdd.vue | 23 +--
pages/shipWork/shipInfo.vue | 45 ++++++
pages/shipWork/shipPlan.vue | 74 +++++++++
pages/shipWork/supply.vue | 109 +++++++++++++
pages/shipWork/supplyAdd.vue | 219 ++++++++++++++++++++++++++
pages/shipWork/untieAdd.vue | 217 ++++++++++++++++++++++++++
pages/shipWork/untieCord.vue | 113 ++++++++++++++
pages/shipWork/workAssign.vue | 109 +++++++++++++
pages/shipWork/workAssignAdd.vue | 260 +++++++++++++++++++++++++++++++
21 files changed, 2815 insertions(+), 26 deletions(-)
create mode 100644 pages/shipWork/abnormal.vue
create mode 100644 pages/shipWork/abnormalAdd.vue
create mode 100644 pages/shipWork/mafi.vue
create mode 100644 pages/shipWork/mafiAdd.vue
create mode 100644 pages/shipWork/notice.vue
create mode 100644 pages/shipWork/noticeAdd.vue
create mode 100644 pages/shipWork/opinion.vue
create mode 100644 pages/shipWork/opinionAdd.vue
create mode 100644 pages/shipWork/patrol.vue
create mode 100644 pages/shipWork/patrolAdd.vue
create mode 100644 pages/shipWork/shipInfo.vue
create mode 100644 pages/shipWork/shipPlan.vue
create mode 100644 pages/shipWork/supply.vue
create mode 100644 pages/shipWork/supplyAdd.vue
create mode 100644 pages/shipWork/untieAdd.vue
create mode 100644 pages/shipWork/untieCord.vue
create mode 100644 pages/shipWork/workAssign.vue
create mode 100644 pages/shipWork/workAssignAdd.vue
diff --git a/pages.json b/pages.json
index 04b1cd0..ccc7684 100644
--- a/pages.json
+++ b/pages.json
@@ -52,6 +52,102 @@
"style": {
"navigationBarTitleText": "工班信息详情"
}
+ }, {
+ "path": "pages/shipWork/untieCord",
+ "style": {
+ "navigationBarTitleText": "系解缆"
+ }
+ },
+ {
+ "path": "pages/shipWork/untieAdd",
+ "style": {
+ "navigationBarTitleText": "系解缆信息"
+ }
+ },
+ {
+ "path": "pages/shipWork/supply",
+ "style": {
+ "navigationBarTitleText": "供给"
+ }
+ },
+ {
+ "path": "pages/shipWork/supplyAdd",
+ "style": {
+ "navigationBarTitleText": "供给信息"
+ }
+ },
+ {
+ "path": "pages/shipWork/workAssign",
+ "style": {
+ "navigationBarTitleText": "指导员作业布置"
+ }
+ },
+ {
+ "path": "pages/shipWork/workAssignAdd",
+ "style": {
+ "navigationBarTitleText": "指导员作业布置信息"
+ }
+ }, {
+ "path": "pages/shipWork/notice",
+ "style": {
+ "navigationBarTitleText": "船舶装卸通知书"
+ }
+ },
+ {
+ "path": "pages/shipWork/noticeAdd",
+ "style": {
+ "navigationBarTitleText": "船舶装卸通知书信息"
+ }
+ }, {
+ "path": "pages/shipWork/opinion",
+ "style": {
+ "navigationBarTitleText": "质量意见征询"
+ }
+ }, {
+ "path": "pages/shipWork/opinionAdd",
+ "style": {
+ "navigationBarTitleText": "质量意见征询信息"
+ }
+ }, {
+ "path": "pages/shipWork/abnormal",
+ "style": {
+ "navigationBarTitleText": "异常情况"
+ }
+ }, {
+ "path": "pages/shipWork/abnormalAdd",
+ "style": {
+ "navigationBarTitleText": "异常情况信息"
+ }
+ }, {
+ "path": "pages/shipWork/mafi",
+ "style": {
+ "navigationBarTitleText": "MAFI清单"
+ }
+ }, {
+ "path": "pages/shipWork/mafiAdd",
+ "style": {
+ "navigationBarTitleText": "MAFI清单信息"
+ }
+ }, {
+ "path": "pages/shipWork/patrol",
+ "style": {
+ "navigationBarTitleText": "安全巡检"
+ }
+ }, {
+ "path": "pages/shipWork/patrolAdd",
+ "style": {
+ "navigationBarTitleText": "安全巡检信息"
+ }
+ }, {
+ "path": "pages/shipWork/shipInfo",
+ "style": {
+ "navigationBarTitleText": "船舶资料"
+ }
+ }, {
+ "path": "pages/shipWork/shipPlan",
+ "style": {
+ "navigationBarTitleText": "船舶计划"
+ }
},
{
"path": "pages/monitor/index",
diff --git a/pages/shipWork/abnormal.vue b/pages/shipWork/abnormal.vue
new file mode 100644
index 0000000..fdbda21
--- /dev/null
+++ b/pages/shipWork/abnormal.vue
@@ -0,0 +1,109 @@
+
+
+
+
+ -
+ 类型:{{item.val1}}
+
上传状态:{{item.val2}}
+ 航次:{{item.val3}}
+ 贸易类型:{{item.val4}}
+ 进出口:{{item.val5}}
+
+
+ + 新增
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/abnormalAdd.vue b/pages/shipWork/abnormalAdd.vue
new file mode 100644
index 0000000..f97a4da
--- /dev/null
+++ b/pages/shipWork/abnormalAdd.vue
@@ -0,0 +1,180 @@
+
+
+
+
+ -
+
船名:
+ 快乐号
+
+ -
+
*航次:
+
+ CK98796
+
+ -
+
进出口:
+ 进口
+
+ -
+
贸易类型:
+ 内贸
+
+ -
+
*作业日期:
+
+ 2020-04-21
+
+ -
+
*类型:
+
+ 类型类型
+
+ -
+
*描述:
+
+ 描述描述描述
+
+
+
+ 取消
+ 删除
+ 保存
+ 编辑
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/documentList.vue b/pages/shipWork/documentList.vue
index 8de6605..c8ed5a5 100644
--- a/pages/shipWork/documentList.vue
+++ b/pages/shipWork/documentList.vue
@@ -5,14 +5,14 @@
-
- {{item.name}}
+
{{item.name}}
其他作业
-
- {{item.name}}
+
{{item.name}}
@@ -28,41 +28,41 @@
url: "mixWork"
}, {
name: "系解缆",
- url: "mixWork"
+ url: "untieCord"
}, {
name: "供给",
- url: "mixWork"
+ url: "supply"
}, {
name: "指导员作业布置",
- url: "mixWork"
+ url: "workAssign"
}, {
name: "船舶装卸通知单",
- url: "mixWork"
+ url: "notice"
}, {
name: "质量意见征询",
- url: "mixWork"
+ url: "opinion"
}, {
name: "异常情况",
- url: "mixWork"
+ url: "abnormal"
}, {
name: "MAFI清单",
- url: "mixWork"
+ url: "mafi"
}],
otherListh: [{
name: "安全巡检",
- url: "mixWork"
- },
- {
- name: "船舶载货量",
- url: "mixWork"
+ url: "patrol"
},
+ // {
+ // name: "船舶载货量",
+ // url: "mixWork"
+ // },
{
name: "船舶资料",
- url: "mixWork"
+ url: "shipInfo"
},
{
name: "船舶计划",
- url: "mixWork"
+ url: "shipPlan"
},
{
name: "作业查询",
@@ -108,7 +108,7 @@
margin: 10px auto;
}
- span {
+ p {
text-align: center;
font-size: 16px;
margin-top: 10px;
diff --git a/pages/shipWork/mafi.vue b/pages/shipWork/mafi.vue
new file mode 100644
index 0000000..3dfb89c
--- /dev/null
+++ b/pages/shipWork/mafi.vue
@@ -0,0 +1,113 @@
+
+
+
+
+ -
+ {{item.val1}}
+
上传状态:{{item.val2}}
+ 尺码:{{item.val3}}
+ 类型:{{item.val4}}
+ 装卸方式:{{item.val5}}
+ 航次:{{item.val6}}
+
+
+ + 新增
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/mafiAdd.vue b/pages/shipWork/mafiAdd.vue
new file mode 100644
index 0000000..cf23fda
--- /dev/null
+++ b/pages/shipWork/mafiAdd.vue
@@ -0,0 +1,225 @@
+
+
+
+
+ -
+
船名:
+ 快乐号
+
+ -
+
*航次:
+
+ CK98796
+
+ -
+
进出口:
+ 进口
+
+ -
+
贸易类型:
+ 内贸
+
+ -
+
*作业日期:
+
+ 2020-04-21
+
+ -
+
*马菲板号:
+
+ 马菲板号123123
+
+ -
+
*尺码:
+
+ 10
+
+ -
+
*类型:
+
+ 类型1
+
+ -
+
*装卸类型:
+
+ 装卸类型1
+
+
+
+ 取消
+ 删除
+ 保存
+ 编辑
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/notice.vue b/pages/shipWork/notice.vue
new file mode 100644
index 0000000..048bdcd
--- /dev/null
+++ b/pages/shipWork/notice.vue
@@ -0,0 +1,109 @@
+
+
+
+
+ -
+ 航次:{{item.val1}}
+
状态:{{item.val2}}
+ 进出口:{{item.val3}}
+ 贸易类型:{{item.val4}}
+ 作业日期:{{item.val5}}
+
+
+ + 新增
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/noticeAdd.vue b/pages/shipWork/noticeAdd.vue
new file mode 100644
index 0000000..cb71c8c
--- /dev/null
+++ b/pages/shipWork/noticeAdd.vue
@@ -0,0 +1,162 @@
+
+
+
+
+ -
+
船名:
+ 快乐号
+
+ -
+
*航次:
+
+ CK98796
+
+ -
+
进出口:
+ 进口
+
+ -
+
贸易类型:
+ 内贸
+
+ -
+
*作业日期:
+
+ 2020-04-21
+
+
+
+
+ 取消
+ 删除
+ 保存
+ 编辑
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/opinion.vue b/pages/shipWork/opinion.vue
new file mode 100644
index 0000000..42bd701
--- /dev/null
+++ b/pages/shipWork/opinion.vue
@@ -0,0 +1,109 @@
+
+
+
+
+ -
+ 航次:{{item.val1}}
+
状态:{{item.val2}}
+ 进出口:{{item.val3}}
+ 贸易类型:{{item.val4}}
+ 作业日期:{{item.val5}}
+
+
+ + 新增
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/opinionAdd.vue b/pages/shipWork/opinionAdd.vue
new file mode 100644
index 0000000..e9b63d8
--- /dev/null
+++ b/pages/shipWork/opinionAdd.vue
@@ -0,0 +1,226 @@
+
+
+
+
+ -
+
船名:
+ 快乐号
+
+ -
+
*航次:
+
+ CK98796
+
+ -
+
进出口:
+ 进口
+
+ -
+
贸易类型:
+ 内贸
+
+ -
+
*泊位:
+
+ 1泊位
+
+ -
+
*装卸类型:
+
+ 装卸类型1
+
+ -
+
*车辆数量:
+
+ 100
+
+ -
+
*备件数量:
+
+ 100
+
+ -
+
*作业日期:
+
+ 2020-04-21
+
+
+
+
+ 取消
+ 删除
+ 保存
+ 编辑
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/patrol.vue b/pages/shipWork/patrol.vue
new file mode 100644
index 0000000..29c6c86
--- /dev/null
+++ b/pages/shipWork/patrol.vue
@@ -0,0 +1,97 @@
+
+
+
+
+ -
+ 类型:{{item.val1}}
+
上传状态:{{item.val2}}
+ 航次:{{item.val3}}
+ 贸易类型:{{item.val4}}
+ 进出口:{{item.val5}}
+
+
+ + 新增
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/patrolAdd.vue b/pages/shipWork/patrolAdd.vue
new file mode 100644
index 0000000..61b6d93
--- /dev/null
+++ b/pages/shipWork/patrolAdd.vue
@@ -0,0 +1,212 @@
+
+
+
+
+ -
+
船名:
+ 快乐号
+
+ -
+
*航次:
+
+ CK98796
+
+ -
+
进出口:
+ 进口
+
+ -
+
贸易类型:
+ 内贸
+
+ -
+
*类型:
+
+ 类型类型
+
+ -
+
*图片上传:
+
+
+
+
+
+
+
+
+
+ -
+
*描述:
+
+ 描述描述描述
+
+
+
+ 取消
+ 删除
+ 保存
+ 编辑
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/peopleAdd.vue b/pages/shipWork/peopleAdd.vue
index dc63a56..e4242ce 100644
--- a/pages/shipWork/peopleAdd.vue
+++ b/pages/shipWork/peopleAdd.vue
@@ -10,7 +10,7 @@
*航次:
- CK98796
+ CK98796
进出口:
@@ -28,23 +28,23 @@
*泊位:
- 1泊位
+ 1泊位
*作业组数:
-
- 5
+
+ 5
*单船人数:
-
- 12
+
+ 12
作业时间:
- 2020-04-21 00:00 - 2020-04-21 00:00
+ 2020-04-21 00:00 - 2020-04-21 00:00
@@ -91,7 +91,7 @@
text: "泊位2"
},
],
- // 作业单数
+ // 作业组数
workValue: 0,
// 单船人数
shipValue: 0,
@@ -134,7 +134,7 @@
})
},
// 保存
- save() {
+ save() {
uni.navigateTo({
url: '/pages/shipWork/mixWork'
})
@@ -171,6 +171,11 @@
line-height: 35px;
margin-bottom: 20px;
+ p {
+ min-width: 85px;
+ text-align: right;
+ }
+
.required {
color: red;
margin-right: 5px;
diff --git a/pages/shipWork/shipInfo.vue b/pages/shipWork/shipInfo.vue
new file mode 100644
index 0000000..1515067
--- /dev/null
+++ b/pages/shipWork/shipInfo.vue
@@ -0,0 +1,45 @@
+
+
+
+
+ 船名:安吉11
+ 总重:100
+ 净重:50
+ 长度:30
+ 宽度:20
+ 空载吃水:空载吃水
+ 重载吃水:重载吃水
+ 舱口高度:舱口高度
+ 最低作业潮水:最低作业潮水
+ 驾驶台位置:驾驶台位置
+ 跳板左:跳板左
+ 跳板后左:跳板后左
+ 跳板中右:跳板中右
+ 跳板前右:跳板前右
+ 跳板后右 :跳板后右
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/shipPlan.vue b/pages/shipWork/shipPlan.vue
new file mode 100644
index 0000000..2e2c6f6
--- /dev/null
+++ b/pages/shipWork/shipPlan.vue
@@ -0,0 +1,74 @@
+
+
+
+ 基本信息
+
+ 船名:安吉11
+ 进口航次:进口航次11
+ 贸易类型:贸易类型11
+ 航线:航线11
+ 船公司:船公司11
+ 船代:船代11
+ 出口航次:出口航次11
+ 贸易类型:贸易类型11
+ 航线:航线11
+ 船公司:船公司11
+ 船代:船代11
+
+ 船期信息
+
+ 计划到港时间:2023/11/11 08:00:00
+ 计划离港时间:2023/11/11 08:00:00
+ 计划靠泊时间:2023/11/11 08:00:00
+ 计划离泊时间:2023/11/11 08:00:00
+ 确报时间:2023/11/11 08:00:00
+ 船期状态:船期状态
+ 靠泊状态:靠泊状态
+ 计划泊位:计划泊位
+
+ 计划信息
+
+ 计划开工时间:2023/11/11 08:00:00
+ 计划完工时间:2023/11/11 08:00:00
+ 品牌:品牌
+ 计划数量:100
+ 工班人数:50
+ 计划组数:100
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/supply.vue b/pages/shipWork/supply.vue
new file mode 100644
index 0000000..77b7779
--- /dev/null
+++ b/pages/shipWork/supply.vue
@@ -0,0 +1,109 @@
+
+
+
+
+ -
+ 类型:{{item.val1}}
+
状态:{{item.val2}}
+ 航次:{{item.val3}}
+ 进出口:{{item.val4}}
+ 贸易类型:{{item.val5}}
+
+
+ + 新增
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/supplyAdd.vue b/pages/shipWork/supplyAdd.vue
new file mode 100644
index 0000000..3dff2c3
--- /dev/null
+++ b/pages/shipWork/supplyAdd.vue
@@ -0,0 +1,219 @@
+
+
+
+
+ -
+
船名:
+ 快乐号
+
+ -
+
*航次:
+
+ CK98796
+
+ -
+
进出口:
+ 进口
+
+ -
+
贸易类型:
+ 内贸
+
+ -
+
*泊位:
+
+ 1泊位
+
+ -
+
*供给类型:
+
+ 供给类型1
+
+ -
+
*供给量:
+
+ 10
+
+ -
+
*日期:
+
+ 2020-04-21
+
+
+
+ 取消
+ 删除
+ 保存
+ 编辑
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/untieAdd.vue b/pages/shipWork/untieAdd.vue
new file mode 100644
index 0000000..754db5b
--- /dev/null
+++ b/pages/shipWork/untieAdd.vue
@@ -0,0 +1,217 @@
+
+
+
+
+ -
+
船名:
+ 快乐号
+
+ -
+
*船舶净吨:
+
+ 100
+
+ -
+
*航次:
+
+ CK98796
+
+ -
+
进出口:
+ 进口
+
+ -
+
贸易类型:
+ 内贸
+
+ -
+
*泊位:
+
+ 1泊位
+
+ -
+
*系缆时间:
+
+ 2020-04-21 00:00 - 2020-04-21 00:00
+
+ -
+
解缆时间:
+
+ 2020-04-21 00:00 - 2020-04-21 00:00
+
+ -
+
移泊时间:
+
+ 2020-04-21 00:00 - 2020-04-21 00:00
+
+ -
+
停泊时间:
+
+ 2020-04-21 00:00 - 2020-04-21 00:00
+
+
+
+ 取消
+ 删除
+ 保存
+ 编辑
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/untieCord.vue b/pages/shipWork/untieCord.vue
new file mode 100644
index 0000000..9c19fb5
--- /dev/null
+++ b/pages/shipWork/untieCord.vue
@@ -0,0 +1,113 @@
+
+
+
+
+ -
+ 航次:{{item.val1}}
+
状态:{{item.val2}}
+ 进出口:{{item.val3}}
+ 贸易类型:{{item.val4}}
+ 泊位:{{item.val5}}
+ 系缆时间:{{item.val6}}
+
+
+ + 新增
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/workAssign.vue b/pages/shipWork/workAssign.vue
new file mode 100644
index 0000000..ffae9e1
--- /dev/null
+++ b/pages/shipWork/workAssign.vue
@@ -0,0 +1,109 @@
+
+
+
+
+ -
+ 航次:{{item.val1}}
+
状态:{{item.val2}}
+ 进出口:{{item.val3}}
+ 贸易类型:{{item.val4}}
+ 作业时间:{{item.val5}}
+
+
+ + 新增
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/shipWork/workAssignAdd.vue b/pages/shipWork/workAssignAdd.vue
new file mode 100644
index 0000000..3d941ad
--- /dev/null
+++ b/pages/shipWork/workAssignAdd.vue
@@ -0,0 +1,260 @@
+
+
+
+
+ -
+
船名:
+ 快乐号
+
+ -
+
*航次:
+
+ CK98796
+
+ -
+
进出口:
+ 进口
+
+ -
+
贸易类型:
+ 内贸
+
+ -
+
*泊位:
+
+ 1泊位
+
+ -
+
*工班:
+
+ 工班1
+
+ -
+
*人数:
+
+ 100
+
+ -
+
*装卸类型:
+
+ 装卸类型1
+
+ -
+
*车辆数量:
+
+ 100
+
+ -
+
*备件数量:
+
+ 100
+
+ -
+
*作业时间:
+
+ 2020-04-21 00:00 - 2020-04-21 00:00
+
+
+
+
+ 取消
+ 删除
+ 保存
+ 编辑
+
+
+
+
+
+
+
+
\ No newline at end of file