diff --git a/package.json b/package.json index 05e6093..ecda8c5 100644 --- a/package.json +++ b/package.json @@ -58,6 +58,7 @@ "normalize.css": "7.0.0", "nprogress": "0.2.0", "path-to-regexp": "2.4.0", + "pdfjs-dist": "^2.0.943", "print-js": "^1.6.0", "printjs": "^1.1.0", "qrcodejs2": "^0.0.2", @@ -70,6 +71,7 @@ "vue": "2.6.10", "vue-awesome-swiper": "^3.1.3", "vue-echarts": "^4.0.3", + "vue-pdf": "^4.3.0", "vue-router": "3.0.2", "vue-ydui": "^1.2.6", "vuedraggable": "^2.20.0", diff --git a/src/api/user.js b/src/api/user.js index 7dd716a..009ed9b 100644 --- a/src/api/user.js +++ b/src/api/user.js @@ -107,31 +107,61 @@ export function getIdentityInfo(params) { params, }); } - +/** + * 用户身份信息 + * @param uid + */ +export function getIdentityInfos(uid) { + return request({ + url: `/admin/user/identity/info`, + method: 'get', + params: { uid }, + }); +} /** * 获取天狼星报告 * @param pram */ export function getTlxReport(params) { return request({ - url: `/admin/user/tlxReport`, + url: `/admin/user/getTlxReport`, method: 'get', params, }); } - +/** + * 获取天狼星缓存 + * @param userId + */ +export function getTlxReportCache(userId) { + return request({ + url: `/admin/user/getTlxCache?`, + method: 'get', + params: { userId }, + }); +} /** * 获取紫微星报告 * @param pram */ export function getZwxReport(params) { return request({ - url: `/admin/user/zwxReport`, + url: `/admin/user/getZwxReport`, method: 'get', params, }); } - +/** + * 获取天狼星缓存 + * @param userId + */ +export function getZwxReportCache(userId) { + return request({ + url: `/admin/user/getZwxCache?`, + method: 'get', + params: { userId }, + }); +} /** * 会员管理 批量设置分组 * @param pram diff --git a/src/views/order/index.vue b/src/views/order/index.vue index 5a39a9a..062ced4 100644 --- a/src/views/order/index.vue +++ b/src/views/order/index.vue @@ -3,159 +3,209 @@
- + - - {{ - item.label + + {{ + item.label + }} + + + + + 全部 {{ '(' + orderChartType.all ? orderChartType.all : 0 + ')' + }} + 未支付 {{ '(' + orderChartType.unPaid ? orderChartType.unPaid : 0 + ')' + }} + 待审核 {{ '(' + orderChartType.audit ? orderChartType.audit : 0 + ')' + }} + 待签约 {{ '(' + orderChartType.awaitSign ? orderChartType.awaitSign : 0 + + ')' }} + 未发货 {{ '(' + orderChartType.notShipped ? orderChartType.notShipped : 0 + + ')' }} + + + + 使用中 {{ '(' + orderChartType.inUse ? orderChartType.inUse : 0 + ')' + }} + 待评价 {{ '(' + orderChartType.bargain ? orderChartType.bargain : 0 + ')' + }} + 交易完成 {{ '(' + orderChartType.complete ? orderChartType.complete : 0 + + ')' }} + 待核销 + {{ '(' + orderChartType.toBeWrittenOff ? orderChartType.toBeWrittenOff : 0 + ')' }} + 退款中 {{ '(' + orderChartType.refunding ? orderChartType.refunding : 0 + + ')' }} + 已退款 {{ '(' + orderChartType.refunded ? orderChartType.refunded : 0 + ')' + }} + 已驳回 {{ '(' + orderChartType.auditReject ? orderChartType.auditReject + : 0 + ')' }} + 已删除 {{ '(' + orderChartType.deleted ? orderChartType.deleted : 0 + ')' }} - - - 全部 {{ '(' + orderChartType.all ? orderChartType.all : 0 + ')' }} - 未支付 {{ '(' + orderChartType.unPaid ? orderChartType.unPaid : 0 + ')' }} - 待审核 {{ '(' + orderChartType.audit ? orderChartType.audit : 0 + ')' }} - 待签约 {{ '(' + orderChartType.awaitSign ? orderChartType.awaitSign : 0 + ')' }} - 未发货 {{ '(' + orderChartType.notShipped ? orderChartType.notShipped : 0 + ')' }} - - - - 使用中 {{ '(' + orderChartType.inUse ? orderChartType.inUse : 0 + ')' }} - 待评价 {{ '(' + orderChartType.bargain ? orderChartType.bargain : 0 + ')' }} - 交易完成 {{ '(' + orderChartType.complete ? orderChartType.complete : 0 + ')' }} - 待核销 - {{ '(' + orderChartType.toBeWrittenOff ? orderChartType.toBeWrittenOff : 0 + ')' }} - 退款中 {{ '(' + orderChartType.refunding ? orderChartType.refunding : 0 + ')' }} - 已退款 {{ '(' + orderChartType.refunded ? orderChartType.refunded : 0 + ')' }} - 已驳回 {{ '(' + orderChartType.auditReject ? orderChartType.auditReject : 0 + ')' }} - 已删除 {{ '(' + orderChartType.deleted ? orderChartType.deleted : 0 + ')' }} + + + {{ + item.text + }} + - - - {{ - item.text - }} - - - - - - + + + - 导出 + 导出
- + - + + + + + + + + + + + + + - - + + - + +}