diff --git a/pages.json b/pages.json
index a079770..1e8e22f 100644
--- a/pages.json
+++ b/pages.json
@@ -216,6 +216,14 @@
"navigationBarTitleText" : "车间叫料",
"enablePullDownRefresh" : false
}
+ },
+ {
+ "path" : "pages/materialManagement/MaterialWarehousing/MaterialWarehousing",
+ "style" :
+ {
+ "navigationBarTitleText" : "成品入库",
+ "enablePullDownRefresh" : false
+ }
}
]
diff --git a/pages/materialManagement/MaterialRequisition/MaterialRequisition.vue b/pages/materialManagement/MaterialRequisition/MaterialRequisition.vue
index 44daaf5..3b3c016 100644
--- a/pages/materialManagement/MaterialRequisition/MaterialRequisition.vue
+++ b/pages/materialManagement/MaterialRequisition/MaterialRequisition.vue
@@ -1,12 +1,14 @@
-
-
+
+
选择日期
-
+
{{ queryParams.workerorder_time | formatDate }}
@@ -25,9 +27,12 @@
{{ item.id }}
-
-
-
+
+
+
@@ -79,242 +84,296 @@
紧急终止
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 启动
+
+
+ 紧急终止
+
+
+
+
+
+ .tip-box {
+ width: 100%;
+ margin-top: 20px;
+ background-color: #fff;
+ /* 白色背景 */
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ /* 添加阴影 */
+ }
+
+ .tip-icon {
+ margin-top: 5px;
+ width: 50px;
+ height: 50px;
+ background-color: #00ff00;
+ border-radius: 50%;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ font-size: 24px;
+ color: #fff;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ /* 添加阴影 */
+ }
+
+ .tip-icon2 {
+ margin-top: 5px;
+ width: 50px;
+ height: 50px;
+ background-color: red;
+ border-radius: 50%;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ font-size: 24px;
+ color: #fff;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ /* 添加阴影 */
+ }
+
+ .tip-text {
+ margin-top: 10px;
+ font-size: 16px;
+ color: #333;
+ }
+
\ No newline at end of file
diff --git a/pages/materialManagement/materialManagement.vue b/pages/materialManagement/materialManagement.vue
index dc72d48..aa90d5d 100644
--- a/pages/materialManagement/materialManagement.vue
+++ b/pages/materialManagement/materialManagement.vue
@@ -7,15 +7,15 @@
{{item.name}}
-
+
-
+
{{item.name}}
-
+
@@ -24,20 +24,23 @@
data() {
return {
// 页面按钮参数
- gridItemList: [
- {
+ gridItemList: [{
name: '仓库配料',
icon: 'grid-fill',
url: '/pages/materialManagement/MaterialProductionInput/MaterialProductionInput',
type: 1,
- index: 1
},
{
name: '车间叫料',
icon: 'grid-fill',
url: '/pages/materialManagement/MaterialRequisition/MaterialRequisition',
type: 1,
- index: 2
+ },
+ {
+ name: '入库',
+ icon: 'grid-fill',
+ url: '/pages/materialManagement/MaterialWarehousing/MaterialWarehousing',
+ type: 2,
},
]
}