diff --git a/pages.json b/pages.json index f32c716..e1d26a6 100644 --- a/pages.json +++ b/pages.json @@ -137,23 +137,23 @@ "navigationStyle": "custom", "enablePullDownRefresh": false } - }, - { - "path": "pages/account-management/index", - "style": { - "navigationBarTitleText": "账号管理", - "navigationStyle": "custom", - "enablePullDownRefresh": false - } - }, - { - "path": "pages/add-account/index", - "style": { - "navigationBarTitleText": "新增企业账号", - "navigationStyle": "custom", - "enablePullDownRefresh": false - } - } + }, + { + "path": "pages/account-management/index", + "style": { + "navigationBarTitleText": "账号管理", + "navigationStyle": "custom", + "enablePullDownRefresh": false + } + }, + { + "path": "pages/add-account/index", + "style": { + "navigationBarTitleText": "新增企业账号", + "navigationStyle": "custom", + "enablePullDownRefresh": false + } + } ], "globalStyle": { "navigationBarTextStyle": "black", @@ -175,14 +175,14 @@ }, { "pagePath": "pages/cart/index", - "iconPath": "static/imgs/tabbar/store-gray.png", - "selectedIconPath": "static/imgs/tabbar/store-blue.png", + "iconPath": "static/imgs/tabbar/cart-gray.png", + "selectedIconPath": "static/imgs/tabbar/cart-blue.png", "text": "购物车" }, { "pagePath": "pages/mine/index", - "iconPath": "static/imgs/tabbar/store-gray.png", - "selectedIconPath": "static/imgs/tabbar/store-blue.png", + "iconPath": "static/imgs/tabbar/mine-gray.png", + "selectedIconPath": "static/imgs/tabbar/mine-blue.png", "text": "个人中心" } ] diff --git a/pages/enquiry-list/index.vue b/pages/enquiry-list/index.vue index 6475ec5..57c74ef 100644 --- a/pages/enquiry-list/index.vue +++ b/pages/enquiry-list/index.vue @@ -1,56 +1,64 @@ + diff --git a/pages/for-comparison/index.vue b/pages/for-comparison/index.vue index c02a2a4..87b1c4f 100644 --- a/pages/for-comparison/index.vue +++ b/pages/for-comparison/index.vue @@ -1,148 +1,154 @@ diff --git a/pages/order-detail/index.vue b/pages/order-detail/index.vue index 9cc9267..dda61a6 100644 --- a/pages/order-detail/index.vue +++ b/pages/order-detail/index.vue @@ -223,6 +223,9 @@ export default { let outboundQuantity = 0 if (list && list.length > 0) { list.forEach((item) => { + if (item.userName && item.userName.length > 3) { + item.userName = item.userName.substr(0, 2) + '...' + } if (item.status == '30301') { step1.push({ title: '分切', @@ -231,13 +234,13 @@ export default { } else if (item.status == '30302') { step2.push({ title: '出库', - desc: item.userName + item.quantity + '\n\r' + item.createTime + desc: item.userName + ' ' + item.quantity + '\n\r' + item.createTime }) outboundQuantity += item.quantity } else if (item.status == '30303') { step3.push({ title: '完成', - desc: '已收货' + desc: '已完成' }) } }) diff --git a/pages/paper-details/index.vue b/pages/paper-details/index.vue index f8200e2..b4098b4 100644 --- a/pages/paper-details/index.vue +++ b/pages/paper-details/index.vue @@ -1,129 +1,140 @@ diff --git a/pages/store/index.vue b/pages/store/index.vue index 5e8d7e2..01c3e0b 100644 --- a/pages/store/index.vue +++ b/pages/store/index.vue @@ -1,344 +1,352 @@ diff --git a/static/imgs/tabbar/cart-blue.png b/static/imgs/tabbar/cart-blue.png new file mode 100644 index 0000000..fb55a78 Binary files /dev/null and b/static/imgs/tabbar/cart-blue.png differ diff --git a/static/imgs/tabbar/cart-gray.png b/static/imgs/tabbar/cart-gray.png new file mode 100644 index 0000000..e2a9f03 Binary files /dev/null and b/static/imgs/tabbar/cart-gray.png differ diff --git a/static/imgs/tabbar/mine-blue.png b/static/imgs/tabbar/mine-blue.png new file mode 100644 index 0000000..f893dcf Binary files /dev/null and b/static/imgs/tabbar/mine-blue.png differ diff --git a/static/imgs/tabbar/mine-gray.png b/static/imgs/tabbar/mine-gray.png new file mode 100644 index 0000000..c6c94fb Binary files /dev/null and b/static/imgs/tabbar/mine-gray.png differ diff --git a/static/imgs/tabbar/store-blue.png b/static/imgs/tabbar/store-blue.png index d75c474..edc9af2 100644 Binary files a/static/imgs/tabbar/store-blue.png and b/static/imgs/tabbar/store-blue.png differ diff --git a/static/imgs/tabbar/store-gray.png b/static/imgs/tabbar/store-gray.png index c64fad4..07fe841 100644 Binary files a/static/imgs/tabbar/store-gray.png and b/static/imgs/tabbar/store-gray.png differ