From 64c0ec97c924427fdb3718033e1f356e24910adf Mon Sep 17 00:00:00 2001
From: gyq <875626088@qq.com>
Date: Tue, 20 Feb 2024 09:56:17 +0800
Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=BC=80=E6=94=BE=E5=B9=B3?=
=?UTF-8?q?=E5=8F=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.gitignore | 1 +
index.html | 26 +-
package.json | 3 +-
src/api/home.js | 32 ++
src/api/shop.js | 23 +
src/components/chartCard.vue | 57 +-
src/router/routes.js | 491 ++++++++++--------
src/store/configure.js | 2 +-
src/views/doc/doc_detail.vue | 13 +
src/views/home.vue | 20 +-
src/views/login/login.vue | 12 +-
src/views/order/order_list.vue | 139 +++++
src/views/organization/appkey.vue | 149 ++++++
.../organization/components/UploadCard.vue | 44 +-
.../organization/components/aisleInfo.vue | 7 +-
.../components/authentication.vue | 9 +-
.../components/businessLicense.vue | 13 +-
.../organization/components/settleInfo.vue | 16 +-
.../organization/components/shopInfo.vue | 11 +-
src/views/organization/shop_detail.vue | 27 +-
20 files changed, 782 insertions(+), 313 deletions(-)
create mode 100644 src/views/doc/doc_detail.vue
create mode 100644 src/views/order/order_list.vue
create mode 100644 src/views/organization/appkey.vue
diff --git a/.gitignore b/.gitignore
index a547bf3..109423f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,6 +10,7 @@ lerna-debug.log*
node_modules
dist
dist-ssr
+dist.zip
*.local
# Editor directories and files
diff --git a/index.html b/index.html
index d15ead4..37895c6 100644
--- a/index.html
+++ b/index.html
@@ -1,16 +1,14 @@
-
+
+
+
+
+
+ vue admin
+
-
-
-
-
- vue admin
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
diff --git a/package.json b/package.json
index d82c367..61fd9c5 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "vue-admin",
"private": true,
- "version": "1.3.3",
+ "version": "1.3.5",
"type": "module",
"scripts": {
"dev": "vite",
@@ -13,6 +13,7 @@
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-vue": "^5.1.12",
"axios": "^1.3.4",
+ "clipboard": "^2.0.11",
"echarts": "^5.4.2",
"element-china-area-data": "^6.1.0",
"element-plus": "^2.3.0",
diff --git a/src/api/home.js b/src/api/home.js
index 784cc41..9f30b59 100644
--- a/src/api/home.js
+++ b/src/api/home.js
@@ -99,4 +99,36 @@ export function unread(params) {
});
}
+/**
+ * 获取总流水
+ * @returns
+ */
+export function querySumAmount() {
+ return request({
+ method: "post",
+ url: "/open/querySumAmount"
+ });
+}
+
+/**
+ * 获取七日数据
+ * @returns
+ */
+export function queryRecentlyData() {
+ return request({
+ method: "post",
+ url: "/open/queryRecentlyData"
+ });
+}
+
+/**
+ * 获取近一年流水
+ * @returns
+ */
+export function queryRecentYears() {
+ return request({
+ method: "post",
+ url: "/open/queryRecentYears"
+ });
+}
diff --git a/src/api/shop.js b/src/api/shop.js
index 39ee74a..4cdfd44 100644
--- a/src/api/shop.js
+++ b/src/api/shop.js
@@ -273,3 +273,26 @@ export function updateAuthentication(params) {
})
}
+/**
+ * 查询开发私钥
+ * @param {*} data
+ * @returns
+ */
+export function queryOrgan() {
+ return request({
+ method: 'post',
+ url: '/open/queryOrgan'
+ })
+}
+
+/**
+ * 查询订单信息
+ * @param {*} data
+ * @returns
+ */
+export function queryOrder() {
+ return request({
+ method: 'post',
+ url: '/open/queryOrder'
+ })
+}
diff --git a/src/components/chartCard.vue b/src/components/chartCard.vue
index 665eca2..2269db8 100644
--- a/src/components/chartCard.vue
+++ b/src/components/chartCard.vue
@@ -1,10 +1,10 @@