订单修改

This commit is contained in:
Sliverber 2024-01-31 17:41:26 +08:00
parent ab709263df
commit 72a6d95331
3 changed files with 1308 additions and 325 deletions

View File

@ -58,6 +58,7 @@
"normalize.css": "7.0.0", "normalize.css": "7.0.0",
"nprogress": "0.2.0", "nprogress": "0.2.0",
"path-to-regexp": "2.4.0", "path-to-regexp": "2.4.0",
"pdfjs-dist": "^2.0.943",
"print-js": "^1.6.0", "print-js": "^1.6.0",
"printjs": "^1.1.0", "printjs": "^1.1.0",
"qrcodejs2": "^0.0.2", "qrcodejs2": "^0.0.2",
@ -70,6 +71,7 @@
"vue": "2.6.10", "vue": "2.6.10",
"vue-awesome-swiper": "^3.1.3", "vue-awesome-swiper": "^3.1.3",
"vue-echarts": "^4.0.3", "vue-echarts": "^4.0.3",
"vue-pdf": "^4.3.0",
"vue-router": "3.0.2", "vue-router": "3.0.2",
"vue-ydui": "^1.2.6", "vue-ydui": "^1.2.6",
"vuedraggable": "^2.20.0", "vuedraggable": "^2.20.0",

View File

@ -107,31 +107,61 @@ export function getIdentityInfo(params) {
params, params,
}); });
} }
/**
* 用户身份信息
* @param uid
*/
export function getIdentityInfos(uid) {
return request({
url: `/admin/user/identity/info`,
method: 'get',
params: { uid },
});
}
/** /**
* 获取天狼星报告 * 获取天狼星报告
* @param pram * @param pram
*/ */
export function getTlxReport(params) { export function getTlxReport(params) {
return request({ return request({
url: `/admin/user/tlxReport`, url: `/admin/user/getTlxReport`,
method: 'get', method: 'get',
params, params,
}); });
} }
/**
* 获取天狼星缓存
* @param userId
*/
export function getTlxReportCache(userId) {
return request({
url: `/admin/user/getTlxCache?`,
method: 'get',
params: { userId },
});
}
/** /**
* 获取紫微星报告 * 获取紫微星报告
* @param pram * @param pram
*/ */
export function getZwxReport(params) { export function getZwxReport(params) {
return request({ return request({
url: `/admin/user/zwxReport`, url: `/admin/user/getZwxReport`,
method: 'get', method: 'get',
params, params,
}); });
} }
/**
* 获取天狼星缓存
* @param userId
*/
export function getZwxReportCache(userId) {
return request({
url: `/admin/user/getZwxCache?`,
method: 'get',
params: { userId },
});
}
/** /**
* 会员管理 批量设置分组 * 会员管理 批量设置分组
* @param pram * @param pram

File diff suppressed because it is too large Load Diff