我的桌面

参考样例:https://www.17sucai.com/preview/806169/2020-05-04/%E9%80%9A%E7%94%A8%E5%90%8E%E5%8F%B0%E7%AE%A1%E7%90%86%E7%B3%BB%E7%BB%9F/index.html

界面命名规范:/src/pages/index/desktop.vue
样式文件: /src/static/system_01/style/desktop.scss


1、订单统计饼状图数据格式:

饼状图显示需要用到的字段是 title,count 

{
   "data": [{
            "state": "wsh",
            "count": 100,
            "title": "未审核"
          },
          {
              "state": "sh",
              "count": 2300,
              "title": "未申报"
           },
          {
                "state": "dy",
                "count": 5960,
                "title": "已申报"
            },
            {
                "state": "fx",
                "count": 1000,
                "title": "已放行"
            },
            {
                "state": "lz",
                "count": 300,
                "title": "流转中"
            },
            {
                "state": "qs",
                "count": 6000,
                "title": "已签收"
            },
            {
                "state": "hs",
                "count": 100,
                "title": "问题件"
            }
        ]
}

2、会员卡明细列表格式:

表头:

{
      "columns": [{
                  "field": "remark",
                  "title": "交易描述"
                 },
                {
                   "field": "amount",
                   "title": "金额"
                }, {
                    "field": "u_createtime",
                    "title": "交易时间"
              }
            ]
}

表体:

{
   "vipbill": [{
             "remark":"订单费用",
             "amount": "105.00",
             "u_createtime": "2020-08-03 11:22"
          },
         {
            "remark":"会员卡充值",
            "amount": "5000.00",
            "u_createtime": "2020-08-05 11:22"
        },
       {
           "remark":"会员卡退款",
           "amount": "100.00",
          "u_createtime": "2020-08-06 11:22"
       }
    ]
}

3、单号明细列表格式:

表头:

{
      "columns": [{
                  "field": "remark",
                  "title": "操作描述"
                 },
                {
                   "field": "amount",
                   "title": "个数"
                }, {
                    "field": "u_createtime",
                    "title": "操作时间"
              }
         ]
}  

表体:

{
   "vipbill": [{
             "remark":"购买单号",
             "amount": "500",
             "u_createtime": "2020-08-03 11:22"
          },
         {
            "remark":"订单SYS00001扣单号",
            "amount": "1",
            "u_createtime": "2020-08-05 11:22"
        }
    ]
}

4、最新消息数据格式:

{
     "news": [{
         "title": "最近一个月成交量突破100万单"
         },
       {
            "title": "海关清关税率最新调整表"
        }, {
            "title": "疫情导致海外航班不定期"
        }
    ]
}