From 7737ded5e52c17f4b14534ebcaa1d76ac26e9fc0 Mon Sep 17 00:00:00 2001 From: caill <815519168@qq.com> Date: Tue, 4 Jun 2024 15:33:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=82=B9=E4=BD=8D=E7=AE=A1?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/style/layout.css | 11 ++++ common/style/reset.css | 3 ++ pages.json | 8 +++ pages/home/home.vue | 5 +- pages/modules/man-paichan.vue | 2 +- pages/modules/point-manage.vue | 93 +++++++++++++++++++++++++++++++++ static/image/menu/RF04.png | Bin 0 -> 2352 bytes utils/getData2.js | 18 +++++++ utils/mork2.js | 15 ++++++ 9 files changed, 152 insertions(+), 3 deletions(-) create mode 100644 pages/modules/point-manage.vue create mode 100644 static/image/menu/RF04.png diff --git a/common/style/layout.css b/common/style/layout.css index 98d9e39..272df3d 100644 --- a/common/style/layout.css +++ b/common/style/layout.css @@ -129,6 +129,17 @@ uni-button:after { text-align: center; color: #ff6a00; } +.unchecked { + width: 24px; + height: 24px; + background-color: #fff; + border: 1px solid #aaa; + border-radius: 4px; +} +.checked-filled { + background-color: #ff6a00; + border-color: #ff6a00; +} /** 内容 */ .zd_container { diff --git a/common/style/reset.css b/common/style/reset.css index 4273edf..e2ed71b 100644 --- a/common/style/reset.css +++ b/common/style/reset.css @@ -50,6 +50,9 @@ input[type="button"], input[type="submit"], input[type="search"], input[type="re .jcflexstart { justify-content: flex-start !important; } +.jccenter { + justify-content: center !important; +} .zd-row { display: flex; diff --git a/pages.json b/pages.json index 0b5ac1f..277aa7d 100644 --- a/pages.json +++ b/pages.json @@ -48,6 +48,14 @@ } } + ,{ + "path" : "pages/modules/point-manage", + "style" : + { + "navigationStyle": "custom" + } + + } ], "globalStyle": { // "pageOrientation": "landscape", diff --git a/pages/home/home.vue b/pages/home/home.vue index c8de1bf..ba2df63 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -32,9 +32,10 @@ return { userName: '', menuList: [ - {id: '1', name: '人工排产', icon: 'RF01', path: '/pages/modules/man-paichan'}, + {id: '1', name: '工单管理', icon: 'RF01', path: '/pages/modules/man-paichan'}, {id: '2', name: '涂线板', icon: 'RF02', path: '/pages/modules/wire-board'}, - {id: '3', name: '物料库存', icon: 'RF03', path: '/pages/modules/mater-inventory'} + {id: '3', name: '物料库存', icon: 'RF03', path: '/pages/modules/mater-inventory'}, + {id: '4', name: '点位管理', icon: 'RF04', path: '/pages/modules/point-manage'} ] }; }, diff --git a/pages/modules/man-paichan.vue b/pages/modules/man-paichan.vue index f9ed0c9..dd69987 100644 --- a/pages/modules/man-paichan.vue +++ b/pages/modules/man-paichan.vue @@ -1,6 +1,6 @@