diff --git a/src/pages/main/index.vue b/src/pages/main/index.vue index 90ba2a3..9e6ffa7 100644 --- a/src/pages/main/index.vue +++ b/src/pages/main/index.vue @@ -1,647 +1,47 @@ - diff --git a/src/pages/order/detail.vue b/src/pages/order/detail.vue index 602c876..8f855c1 100644 --- a/src/pages/order/detail.vue +++ b/src/pages/order/detail.vue @@ -243,7 +243,7 @@
  • 下单时间:

    {{formatDateTime(orderDetail.createTime)}}

  • 状态:

    {{getSelTxt('orderStatus',orderDetail.status)}}

  • 审单人员:

    {{orderDetail.checkAccountName}}

  • -
  • 业务/跟单员:

    /{{orderDetail.followAccount}}

  • +
  • 业务/跟单员:

    /{{orderDetail.followAccount}}

  • 付款情况:

    {{orderDetail.isPay?'已支付':'未支付'}}

  • 参数信息
    @@ -983,12 +983,7 @@ export default { opVal = res[i]; // console.log(resOP[v].name,res[i]) } - this.resOrdDetail.push({ - key:i, - name:resOP[v].name, - value:opVal, - isShow:isShow, - }) + this.resOrdDetail.push({key:i,name:resOP[v].name,value:opVal,isShow:isShow,}) } } } diff --git a/src/pages/order/orderMoney.vue b/src/pages/order/orderMoney.vue index bdc52c8..9534263 100644 --- a/src/pages/order/orderMoney.vue +++ b/src/pages/order/orderMoney.vue @@ -3,7 +3,7 @@ diff --git a/src/router/config.js b/src/router/config.js index 524416f..670c0ce 100644 --- a/src/router/config.js +++ b/src/router/config.js @@ -51,6 +51,7 @@ const options = { { path: 'main', name: '主页', + component: () => import('@/pages/main/index'), meta: { notBreadcrumb: true, //不显示在面包屑中 icon: 'icon-shouye', diff --git a/src/services/Main/index.js b/src/services/Main/index.js new file mode 100644 index 0000000..a1a9920 --- /dev/null +++ b/src/services/Main/index.js @@ -0,0 +1,6 @@ +import {requestApi, METHOD} from '@/utils/request'; + +//首页信息 +export function indexMonitor(params) { + return requestApi('/api/app/monitor/orders-count', METHOD.GET, params) +} \ No newline at end of file