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 @@