From f26f29d84e0a68831a6af14dab3eec5500496d2e Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期三, 28 五月 2025 16:48:52 +0800
Subject: [PATCH] 初始化项目

---
 pages/product/produce/operationTaskInfo.vue |   70 +++++++++++++++++++++++++++++++++++
 1 files changed, 70 insertions(+), 0 deletions(-)

diff --git a/pages/product/produce/operationTaskInfo.vue b/pages/product/produce/operationTaskInfo.vue
new file mode 100644
index 0000000..46062ab
--- /dev/null
+++ b/pages/product/produce/operationTaskInfo.vue
@@ -0,0 +1,70 @@
+<template>
+	<view class="page">
+		<view class="operation-task-info-index-bg" />
+		<u-navbar title="宸ュ崟璇︽儏" :background="background" :border-bottom="false" :title-bold="true" title-color="#000"
+			back-icon-color="#000" />
+		<view class="wrap">
+			<uni-list>
+				<uni-list-item title="閿�鍞鍗�:" :rightText="operationTaskInfo.customerOrderNo" />
+				<uni-list-item title="涓昏鍒掑彿:" :rightText="operationTaskInfo.mpsNo" />
+				<uni-list-item title="闆朵欢缂栧彿:" :rightText="operationTaskInfo.partNo" />
+				<uni-list-item title="闆朵欢鍚嶇О:" :note="operationTaskInfo.partName" />
+				<uni-list-item title="杞﹂棿璁㈠崟:" :rightText="operationTaskInfo.moNo" />
+				<uni-list-item title="宸ュ簭鍚嶇О:" :rightText="operationTaskInfo.operationName" />
+				<uni-list-item title="鎴愬搧鍚嶇О:" :note="operationTaskInfo.productName" />
+				<uni-list-item title="璁″垝鏁伴噺:" :rightText="operationTaskInfo.plannedQuantity.toString()" />
+			</uni-list>
+		</view>
+	</view>
+</template>
+<script>
+	import content_bg from '@/static/custom/product/productBg.png'
+	export default {
+		components: {},
+		data() {
+			return {
+				background: {
+					backgroundImage: `url(${content_bg})`,
+					backgroundAttachment: 'fixed',
+					backgroundSize: '100% auto',
+					backgroundRepeat: 'no-repeat',
+				},
+				operationTaskInfo: {}
+			};
+		},
+		onLoad(option) {
+			if (option.item) {
+				this.operationTaskInfo = JSON.parse(decodeURIComponent(option.item));
+			}
+		},
+		onShow() {
+
+		},
+		methods: {
+		}
+	};
+</script>
+<style lang="scss" scoped>
+	.operation-task-info-index-bg {
+		background-color: #F6F9FF;
+		background-image: url('~@/static/custom/product/productBg.png');
+		// background: linear-gradient(180deg,rgba(206,227,254,1),rgba(206,227,254,1) 20%,rgba(206,227,254,0.5) 40%,rgba(206,227,254,0.25) 60%,rgba(206,227,254,0.08) 80%,rgba(206,227,254,0));
+		padding: 0 20rpx;
+		background-attachment: fixed;
+		background-size: 100% auto;
+		background-repeat: no-repeat;
+		position: fixed;
+		top: 0;
+		bottom: 0;
+		width: 100%;
+		z-index: -1;
+	}
+
+	.wrap {
+		display: flex;
+		flex-direction: column;
+		justify-content: center;
+		padding: 20px 10px;
+	}
+
+</style>
\ No newline at end of file

--
Gitblit v1.9.3