diff --git a/src/api/tool.ts b/src/api/tool.ts
index b707cb6..137c42c 100644
--- a/src/api/tool.ts
+++ b/src/api/tool.ts
@@ -9,6 +9,15 @@ export function commonAppversionListGet(params: any) {
});
}
+// 新增App版本
+export function commonAppversionPost(data: any) {
+ return request({
+ url: '/common/appversion',
+ method: 'post',
+ data
+ });
+}
+
// 系统机器人菜单列表
export function robotMenusGet(params: any) {
return request({
diff --git a/src/components/BdAppVersion/index.vue b/src/components/BdAppVersion/index.vue
new file mode 100644
index 0000000..8adcae2
--- /dev/null
+++ b/src/components/BdAppVersion/index.vue
@@ -0,0 +1,116 @@
+
+
+
+
+
+ Android
+ IOS
+
+
+
+
+ 强制更新
+ 非强制更新
+
+
+
+
+
+ 点击上传APK
+
+
+
+
+
+
+
+
+
+
+
+
+ 取消
+ 发送
+
+
+
+
+
+
diff --git a/src/pages/tool/appupdate.vue b/src/pages/tool/appupdate.vue
index 80c2931..553ef6a 100644
--- a/src/pages/tool/appupdate.vue
+++ b/src/pages/tool/appupdate.vue
@@ -9,7 +9,7 @@
- 新增版本
+ 新增版本
@@ -50,6 +50,8 @@
/>
+
+
@@ -123,7 +125,11 @@ const onCurrentChange = (current: number) => {
queryFrom.page_index = current;
getTableList();
};
-
+// 新增版本
+const appVersionAddValue = ref(false);
+const onAppVersionAdd = () => {
+ appVersionAddValue.value = true;
+};
// 初始化
onMounted(() => {
getTableList();
diff --git a/src/types/components.d.ts b/src/types/components.d.ts
index 17fb354..c2f3ac8 100755
--- a/src/types/components.d.ts
+++ b/src/types/components.d.ts
@@ -9,6 +9,7 @@ declare module 'vue' {
export interface GlobalComponents {
AddNode: typeof import('./../components/bdWorkflow/nodes/addNode.vue')['default']
Approver: typeof import('./../components/bdWorkflow/nodes/approver.vue')['default']
+ BdAppVersion: typeof import('./../components/BdAppVersion/index.vue')['default']
BdMsg: typeof import('./../components/BdMsg/index.vue')['default']
BdPage: typeof import('./../components/BdPage/index.vue')['default']
BdProhitWords: typeof import('./../components/BdProhitWords/index.vue')['default']