diff --git a/pages.json b/pages.json index 9f67f9f..9cdd56e 100644 --- a/pages.json +++ b/pages.json @@ -113,31 +113,40 @@ } }, { - "path" : "pages/inspectionEntry/index", - "style" : - { - "navigationStyle": "custom" - } + "path": "pages/inspectionEntry/index", + "style": { + "navigationStyle": "custom" + } }, { - "path" : "pages/inspectionEntry/inspectionRecord", - "style" : - { - "navigationBarTitleText": "检验记录" - } + "path": "pages/inspectionEntry/inspectionRecord", + "style": { + "navigationBarTitleText": "检验记录" + } }, { - "path" : "pages/stockTaking/index", - "style" : - { - "navigationStyle": "custom" - } + "path": "pages/stockTaking/index", + "style": { + "navigationStyle": "custom" + } }, { - "path" : "pages/stockTaking/takingRecord", + "path": "pages/stockTaking/takingRecord", + "style": { + "navigationStyle": "custom" + } + }, + { + "path": "pages/arrivalConfirmation/index", + "style": { + "navigationBarTitleText": "到货确认单上传" + } + }, + { + "path" : "pages/sendACarSystem/index", "style" : { - "navigationStyle": "custom" + "navigationBarTitleText" : "派车管理" } } ], diff --git a/pages/arrivalConfirmation/index.vue b/pages/arrivalConfirmation/index.vue new file mode 100644 index 0000000..98e220f --- /dev/null +++ b/pages/arrivalConfirmation/index.vue @@ -0,0 +1,226 @@ + + + + + + + + + + + {{ item.name }} + + + + + + + + + + + 工程名称: + {{ item.proName }} + + + + 派车数量: + {{ item.pcNum }} + + + + 查看到货确认单 + + 上传到货确认单 + + + + 派车时间: + {{ item.time }} + + + + + + + + + + + + + + + + + + + + diff --git a/pages/index.vue b/pages/index.vue index 437344c..ad19dfa 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -33,11 +33,11 @@ export default { }, { name: 'home', - title: '首页' + title: '到货确认单' }, { name: 'star', - title: '音量' + title: '派车管理' } ] } @@ -54,6 +54,10 @@ export default { url = '/pages/inspectionEntry/index' } else if (index === 3) { url = '/pages/stockTaking/index' + } else if (index === 4) { + url = '/pages/arrivalConfirmation/index' + } else if (index === 5) { + url = '/pages/sendACarSystem/index' } uni.navigateTo({ url }) } diff --git a/pages/sendACarSystem/index.vue b/pages/sendACarSystem/index.vue new file mode 100644 index 0000000..3c245e7 --- /dev/null +++ b/pages/sendACarSystem/index.vue @@ -0,0 +1,379 @@ + + + + 派车分配 + 派车审核 + + + + + + + + + + + + + + + {{ item.code }} + + + + + + + + + + + 工程名称: + {{ item.proName }} + + + + 计划类型: + {{ item.plan }} + + + + 派车分配 + + + 审核 + + + + + + 供 应 商: + {{ item.sub }} + + + + + + + + + + + + + + 通过 + 不通过 + + + + + + + + + + + + + + + + + + + diff --git a/static/images/car.png b/static/images/car.png new file mode 100644 index 0000000..0f3cb0e Binary files /dev/null and b/static/images/car.png differ diff --git a/static/images/car2.png b/static/images/car2.png new file mode 100644 index 0000000..434d6b5 Binary files /dev/null and b/static/images/car2.png differ