|
@@ -1,28 +1,38 @@
|
|
|
-import { reactive, onMounted, ref, ElMessage, ElMessageBox, http, getGroupUrl, RegularVerification, verification, PaginationProps } from "@/utils/importUsed"
|
|
|
+import {
|
|
|
+ reactive,
|
|
|
+ onMounted,
|
|
|
+ ref,
|
|
|
+ ElMessage,
|
|
|
+ ElMessageBox,
|
|
|
+ http,
|
|
|
+ getGroupUrl,
|
|
|
+ RegularVerification,
|
|
|
+ verification,
|
|
|
+ PaginationProps
|
|
|
+} from "@/utils/importUsed";
|
|
|
// 表单实例
|
|
|
-const ruleFormRef = ref()
|
|
|
+const ruleFormRef = ref();
|
|
|
export function useFileUpdateInfo() {
|
|
|
// 接口列表实例
|
|
|
- let UrlList = reactive(null)
|
|
|
+ let UrlList = reactive(null);
|
|
|
// 获取当前板块接口列表
|
|
|
onMounted(async () => {
|
|
|
UrlList = await getGroupUrl(["kxsConfigServer"]);
|
|
|
onSearch(ruleFormRef.value);
|
|
|
-
|
|
|
});
|
|
|
- let form = reactive({
|
|
|
+ const form = reactive({
|
|
|
kind: "creater", //分类
|
|
|
- appVersion: "",
|
|
|
-
|
|
|
+ appVersion: ""
|
|
|
});
|
|
|
const dataList = ref([]);
|
|
|
const loading = ref(false);
|
|
|
const dialogAddVisible = ref(false);
|
|
|
const pagination = reactive<PaginationProps>({
|
|
|
total: 0,
|
|
|
- pageSize: 10,
|
|
|
+ pageSize: 30,
|
|
|
currentPage: 1,
|
|
|
- background: true
|
|
|
+ background: true,
|
|
|
+ pageSizes: [10, 30, 50, 100]
|
|
|
});
|
|
|
const columns: TableColumnList = [
|
|
|
{
|
|
@@ -88,11 +98,11 @@ export function useFileUpdateInfo() {
|
|
|
// 搜索列表
|
|
|
async function onSearch(formEl) {
|
|
|
// 表单校验拦截
|
|
|
- if (!formEl) return
|
|
|
+ if (!formEl) return;
|
|
|
await formEl.validate(async (valid, fields) => {
|
|
|
if (valid) {
|
|
|
//表单校验成功回调
|
|
|
- console.log('submit!')
|
|
|
+ console.log("submit!");
|
|
|
// 状态调整为加载中
|
|
|
loading.value = true;
|
|
|
// 调用接口(需动态生成接口)
|
|
@@ -117,23 +127,21 @@ export function useFileUpdateInfo() {
|
|
|
type: "error"
|
|
|
});
|
|
|
}
|
|
|
- })
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
// 删除
|
|
|
function handleDelete(row) {
|
|
|
- ElMessageBox.confirm(
|
|
|
- `是否删除该资源文件更新信息? `,
|
|
|
- "提示",
|
|
|
- {
|
|
|
- confirmButtonText: "删除",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
- }
|
|
|
- ).then(async () => {
|
|
|
- const { status, msg }: any = await http.Request({ method: UrlList.kxsConfigServer.fileUpdateInfodelete.method, url: UrlList.kxsConfigServer.fileUpdateInfodelete.url, params: String(row.id) });
|
|
|
+ ElMessageBox.confirm(`是否删除该资源文件更新信息? `, "提示", {
|
|
|
+ confirmButtonText: "删除",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ }).then(async () => {
|
|
|
+ const { status, msg }: any = await http.Request({
|
|
|
+ method: UrlList.kxsConfigServer.fileUpdateInfodelete.method,
|
|
|
+ url: UrlList.kxsConfigServer.fileUpdateInfodelete.url,
|
|
|
+ params: String(row.id)
|
|
|
+ });
|
|
|
if (status === 1) {
|
|
|
ElMessage({
|
|
|
message: "删除成功",
|
|
@@ -145,8 +153,8 @@ export function useFileUpdateInfo() {
|
|
|
confirmButtonText: "关闭",
|
|
|
type: "warning"
|
|
|
});
|
|
|
- };
|
|
|
- })
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
function handleUpdateFile() {
|
|
@@ -157,16 +165,16 @@ export function useFileUpdateInfo() {
|
|
|
});
|
|
|
return;
|
|
|
}
|
|
|
- ElMessageBox.confirm(
|
|
|
- `是否同步资源文件? `,
|
|
|
- "提示",
|
|
|
- {
|
|
|
- confirmButtonText: "同步",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
- }
|
|
|
- ).then(async () => {
|
|
|
- const { status, msg }: any = await http.Request({ method: UrlList.kxsConfigServer.fileUpdateInfoupdateFile.method, url: UrlList.kxsConfigServer.fileUpdateInfoupdateFile.url, params: { kind: form.kind, appVersion: form.appVersion } });
|
|
|
+ ElMessageBox.confirm(`是否同步资源文件? `, "提示", {
|
|
|
+ confirmButtonText: "同步",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ }).then(async () => {
|
|
|
+ const { status, msg }: any = await http.Request({
|
|
|
+ method: UrlList.kxsConfigServer.fileUpdateInfoupdateFile.method,
|
|
|
+ url: UrlList.kxsConfigServer.fileUpdateInfoupdateFile.url,
|
|
|
+ params: { kind: form.kind, appVersion: form.appVersion }
|
|
|
+ });
|
|
|
if (status === 1) {
|
|
|
ElMessage({
|
|
|
message: "同步成功",
|
|
@@ -178,15 +186,15 @@ export function useFileUpdateInfo() {
|
|
|
confirmButtonText: "关闭",
|
|
|
type: "warning"
|
|
|
});
|
|
|
- };
|
|
|
- })
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
// 新增
|
|
|
const addVisible = ref(false);
|
|
|
function handleAdd() {
|
|
|
addVisible.value = true;
|
|
|
- };
|
|
|
+ }
|
|
|
|
|
|
// 修改
|
|
|
const editUpdateVisible = ref(false);
|
|
@@ -195,7 +203,7 @@ export function useFileUpdateInfo() {
|
|
|
editUpdateVisible.value = true;
|
|
|
// 表格数据赋值
|
|
|
editUpdateFormData.value = row;
|
|
|
- };
|
|
|
+ }
|
|
|
// 更新版本号
|
|
|
const editUpVersionVisible = ref(false);
|
|
|
const editUpVersionFormData = ref({});
|
|
@@ -222,12 +230,10 @@ export function useFileUpdateInfo() {
|
|
|
type: "warning"
|
|
|
});
|
|
|
}
|
|
|
- };
|
|
|
+ }
|
|
|
|
|
|
// 分类选项数据
|
|
|
- const kindOptionList = [
|
|
|
- { label: '创客版', id: 'creater' }
|
|
|
- ]
|
|
|
+ const kindOptionList = [{ label: "创客版", id: "creater" }];
|
|
|
|
|
|
return {
|
|
|
form,
|
|
@@ -251,7 +257,6 @@ export function useFileUpdateInfo() {
|
|
|
handleUpVersion,
|
|
|
handleUpdateFile,
|
|
|
editUpVersionVisible,
|
|
|
- editUpVersionFormData,
|
|
|
-
|
|
|
+ editUpVersionFormData
|
|
|
};
|
|
|
}
|