From bbb6e9f384fb53bd61f92bc31ff1448e9ad1de70 Mon Sep 17 00:00:00 2001 From: weipengfei <2187978347@qq.com> Date: Tue, 19 Mar 2024 14:27:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/app.js | 33 ++- src/router/modules/app.js | 8 + src/views/system/appvison/index.vue | 416 ++++++++++++++++++++++++++++ 3 files changed, 456 insertions(+), 1 deletion(-) create mode 100644 src/views/system/appvison/index.vue diff --git a/src/api/app.js b/src/api/app.js index 7b89fe9..5feab8d 100644 --- a/src/api/app.js +++ b/src/api/app.js @@ -230,4 +230,35 @@ export function routineStatusApi(id, data) { */ export function routineInfo() { return request.get(`config/setting/routine/config`) -} \ No newline at end of file +} + +/** + * @description 查看app版本详情 + */ +export function appDetail(id) { + return request.get(`app/version/detail/${id}`) +} +/** + * @description 创建app版本 + */ +export function appCreate(data) { + return request.post(`app/version/create`, data) +} +/** + * @description 获取app版本列表 + */ +export function appLst(data) { + return request.get(`app/version/lst`, data) +} +/** + * @description 编辑app版本详情 + */ +export function appEdit(id,data) { + return request.post(`app/version/edit/${id}`,data) +} +/** + * @description 删除app版本 + */ +export function appDelete(id) { + return request.post(`app/version/delete/${id}`) +} diff --git a/src/router/modules/app.js b/src/router/modules/app.js index 70e0cbf..4b51fd1 100644 --- a/src/router/modules/app.js +++ b/src/router/modules/app.js @@ -28,6 +28,14 @@ const appRouter = }, component: () => import('@/views/app/wechat/menus/index') }, + { + path: 'version', + name: `appversion`, + meta: { + title: 'app版本管理' + }, + component: () => import('@/views/system/appvison') + }, { path: 'wechat/reply', name: 'wechatReply', diff --git a/src/views/system/appvison/index.vue b/src/views/system/appvison/index.vue new file mode 100644 index 0000000..6a0254f --- /dev/null +++ b/src/views/system/appvison/index.vue @@ -0,0 +1,416 @@ + + + + +