|
@@ -5,14 +5,30 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
<script setup lang="ts">
|
|
|
-import { inject, onMounted, reactive, ref, Uploadfile, UploadImg, Editor, useRenderIcon, ElMessage, ElMessageBox, Upload, Close, http, getGroupUrl, RegularVerification, verification } from "@/utils/importUsed"
|
|
|
+import {
|
|
|
+ inject,
|
|
|
+ onMounted,
|
|
|
+ reactive,
|
|
|
+ ref,
|
|
|
+ Uploadfile,
|
|
|
+ UploadImg,
|
|
|
+ Editor,
|
|
|
+ useRenderIcon,
|
|
|
+ ElMessage,
|
|
|
+ ElMessageBox,
|
|
|
+ Upload,
|
|
|
+ Close,
|
|
|
+ http,
|
|
|
+ getGroupUrl,
|
|
|
+ RegularVerification,
|
|
|
+ verification
|
|
|
+} from "@/utils/importUsed";
|
|
|
// 接口列表实例
|
|
|
-let UrlList = reactive(null)
|
|
|
+let UrlList = reactive(null);
|
|
|
// 获取当前板块接口列表
|
|
|
onMounted(async () => {
|
|
|
UrlList = await getGroupUrl(["kxsConfigServer"]);
|
|
|
-
|
|
|
-})
|
|
|
+});
|
|
|
// 组件传参对象
|
|
|
const props = defineProps<{
|
|
|
submit: Function;
|
|
@@ -26,49 +42,29 @@ const props = defineProps<{
|
|
|
};
|
|
|
}>();
|
|
|
// 表单数据
|
|
|
-let UpdateForm = ref({
|
|
|
- moduleVersion: "", //模板更新版本
|
|
|
- modulePath: "", //模板路径
|
|
|
- backgroudColor: "", //背景色
|
|
|
- textColor: "", //前景色
|
|
|
- statusBarStyle: "", //苹果状态栏
|
|
|
- showTitle: "", //是否显示头部
|
|
|
- title: "", //顶部标题
|
|
|
- showScrollBar: "", //是否显示滚动条
|
|
|
- skidFlag: "", //是否侧滑返回
|
|
|
- leftBtn1: "", //左侧按钮1
|
|
|
- leftBtn2: "", //左侧按钮2
|
|
|
- rightBtn1: "", //右侧按钮1
|
|
|
- rightBtn2: "", //右侧按钮2
|
|
|
- leftAction1: "", //左侧按钮1点击事件
|
|
|
- leftAction2: "", //左侧按钮2点击事件
|
|
|
- rightAction1: "", //右侧按钮1点击事件
|
|
|
- rightAction2: "", //右侧按钮2点击事件
|
|
|
- gotoPages: "", //下级页面
|
|
|
- mustUpdate: "", //是否强制更新
|
|
|
-
|
|
|
+const UpdateForm = ref({
|
|
|
+ sourceVersion: "", //来源版本号
|
|
|
+ addVersion: "" //新增版本号
|
|
|
});
|
|
|
// 表单实例
|
|
|
-const ruleFormRef = ref()
|
|
|
-
|
|
|
-// 传参选项数据
|
|
|
+const ruleFormRef = ref();
|
|
|
+const submitStatus = ref(false);
|
|
|
|
|
|
-// 选项卡参数(默认值为列表某项的id)
|
|
|
-const activeId = ref('1')
|
|
|
// 提交函数
|
|
|
-const submit = async (formEl) => {
|
|
|
+const submit = async formEl => {
|
|
|
// 表单校验拦截
|
|
|
- if (!formEl) return
|
|
|
+ if (!formEl) return;
|
|
|
await formEl.validate(async (valid, fields) => {
|
|
|
if (valid) {
|
|
|
//表单校验成功回调
|
|
|
- console.log('submit!')
|
|
|
-
|
|
|
-
|
|
|
+ console.log("submit!");
|
|
|
+ console.log("[ UpdateForm.value ] >", UpdateForm.value);
|
|
|
+ if (submitStatus.value) return;
|
|
|
+ submitStatus.value = true;
|
|
|
// 需动态生成接口
|
|
|
const { status, msg }: any = await http.Request({
|
|
|
- method: UrlList.kxsConfigServer.pageUpdateInfoadd.method,
|
|
|
- url: UrlList.kxsConfigServer.pageUpdateInfoadd.url,
|
|
|
+ method: UrlList.kxsConfigServer.pageUpdateInfocopy.method,
|
|
|
+ url: UrlList.kxsConfigServer.pageUpdateInfocopy.url,
|
|
|
params: UpdateForm.value
|
|
|
});
|
|
|
if (status === 1) {
|
|
@@ -78,35 +74,19 @@ const submit = async (formEl) => {
|
|
|
type: "success"
|
|
|
});
|
|
|
UpdateForm.value = {
|
|
|
- moduleVersion: "", //模板更新版本
|
|
|
- modulePath: "", //模板路径
|
|
|
- backgroudColor: "", //背景色
|
|
|
- textColor: "", //前景色
|
|
|
- statusBarStyle: "", //苹果状态栏
|
|
|
- showTitle: "", //是否显示头部
|
|
|
- title: "", //顶部标题
|
|
|
- showScrollBar: "", //是否显示滚动条
|
|
|
- skidFlag: "", //是否侧滑返回
|
|
|
- leftBtn1: "", //左侧按钮1
|
|
|
- leftBtn2: "", //左侧按钮2
|
|
|
- rightBtn1: "", //右侧按钮1
|
|
|
- rightBtn2: "", //右侧按钮2
|
|
|
- leftAction1: "", //左侧按钮1点击事件
|
|
|
- leftAction2: "", //左侧按钮2点击事件
|
|
|
- rightAction1: "", //右侧按钮1点击事件
|
|
|
- rightAction2: "", //右侧按钮2点击事件
|
|
|
- gotoPages: "", //下级页面
|
|
|
- mustUpdate: "", //是否强制更新
|
|
|
-
|
|
|
+ sourceVersion: "", //来源版本号
|
|
|
+ addVersion: "" //新增版本号
|
|
|
};
|
|
|
+ submitStatus.value = false;
|
|
|
// 关闭新增弹窗;
|
|
|
- closeVisible()
|
|
|
+ closeVisible();
|
|
|
} else {
|
|
|
//业务失败回调
|
|
|
ElMessageBox.alert(msg, "提示", {
|
|
|
confirmButtonText: "关闭",
|
|
|
type: "warning"
|
|
|
});
|
|
|
+ submitStatus.value = false;
|
|
|
}
|
|
|
} else {
|
|
|
//表单校验失败回调
|
|
@@ -115,126 +95,41 @@ const submit = async (formEl) => {
|
|
|
type: "error"
|
|
|
});
|
|
|
}
|
|
|
- })
|
|
|
+ });
|
|
|
};
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
// 表单校验规则
|
|
|
const rules = reactive({
|
|
|
- moduleVersion: [
|
|
|
- { required: true, message: '请输入模板更新版本', trigger: 'blur' },
|
|
|
- { validator: (rule: any, value: any, callback: any) => { verification.verificationInteger(value, callback) }, trigger: 'blur' },
|
|
|
- ],
|
|
|
- modulePath: [
|
|
|
- { required: true, message: '请输入模板路径', trigger: 'blur' },
|
|
|
- ],
|
|
|
- rightAction2: [
|
|
|
- { required: true, message: '请输入右侧按钮2点击事件', trigger: 'blur' },
|
|
|
+ sourceVersion: [
|
|
|
+ { required: true, message: "请输入来源版本号", trigger: "blur" }
|
|
|
],
|
|
|
-
|
|
|
-})
|
|
|
+ addVersion: [{ required: true, message: "请输入新增版本号", trigger: "blur" }]
|
|
|
+});
|
|
|
// 关闭弹窗回调函数
|
|
|
const closeFn: any = inject("closeAddVisible");
|
|
|
const closeVisible = () => {
|
|
|
// 清空表单项;
|
|
|
UpdateForm.value = {
|
|
|
- moduleVersion: "", //模板更新版本
|
|
|
- modulePath: "", //模板路径
|
|
|
- backgroudColor: "", //背景色
|
|
|
- textColor: "", //前景色
|
|
|
- statusBarStyle: "", //苹果状态栏
|
|
|
- showTitle: "", //是否显示头部
|
|
|
- title: "", //顶部标题
|
|
|
- showScrollBar: "", //是否显示滚动条
|
|
|
- skidFlag: "", //是否侧滑返回
|
|
|
- leftBtn1: "", //左侧按钮1
|
|
|
- leftBtn2: "", //左侧按钮2
|
|
|
- rightBtn1: "", //右侧按钮1
|
|
|
- rightBtn2: "", //右侧按钮2
|
|
|
- leftAction1: "", //左侧按钮1点击事件
|
|
|
- leftAction2: "", //左侧按钮2点击事件
|
|
|
- rightAction1: "", //右侧按钮1点击事件
|
|
|
- rightAction2: "", //右侧按钮2点击事件
|
|
|
- gotoPages: "", //下级页面
|
|
|
- mustUpdate: "", //是否强制更新
|
|
|
-
|
|
|
+ sourceVersion: "", //来源版本号
|
|
|
+ addVersion: "" //新增版本号
|
|
|
};
|
|
|
closeFn();
|
|
|
};
|
|
|
|
|
|
// 弹窗是否全屏
|
|
|
-const isFullscreen = ref(false)
|
|
|
+const isFullscreen = ref(false);
|
|
|
</script>
|
|
|
|
|
|
<template lang="pug">
|
|
|
.main
|
|
|
- el-dialog(v-model='props.addVisible' width="50%" :fullscreen="isFullscreen" title="新增" draggable @close="closeVisible")
|
|
|
- el-tabs(v-model="activeId" class="demo-tabs" @tab-click="handleClick")
|
|
|
- el-tab-pane(label="基本信息" name="1")
|
|
|
- el-form(:model='UpdateForm' label-position="right" ref="ruleFormRef" :rules="rules" label-width="100px")
|
|
|
- el-form-item(label='模板更新版本' prop="moduleVersion")
|
|
|
- el-input-number(v-model='UpdateForm.moduleVersion' :min="1" :max="1000"
|
|
|
- placeholder="请输入模板更新版本")
|
|
|
- el-form-item(label='模板路径' prop="modulePath")
|
|
|
- el-input(v-model='UpdateForm.modulePath' autocomplete='off'
|
|
|
- placeholder="请输入模板路径")
|
|
|
- el-form-item(label='背景色' prop="backgroudColor")
|
|
|
- el-input(v-model='UpdateForm.backgroudColor' autocomplete='off'
|
|
|
- placeholder="请输入背景色")
|
|
|
- el-form-item(label='前景色' prop="textColor")
|
|
|
- el-input(v-model='UpdateForm.textColor' autocomplete='off'
|
|
|
- placeholder="请输入前景色")
|
|
|
- el-form-item(label="苹果状态栏", prop="statusBarStyle")
|
|
|
- el-select(
|
|
|
- v-model="UpdateForm.statusBarStyle",
|
|
|
- placeholder="请选择苹果状态栏",
|
|
|
- clearable,
|
|
|
- )
|
|
|
- el-option(:label="item.label", :value="item.id" v-for="(item,index) in statusBarStyleOptionList")
|
|
|
- el-form-item(label='是否显示头部' prop="showTitle")
|
|
|
- el-switch(v-model="UpdateForm.showTitle")
|
|
|
- el-form-item(label='顶部标题' prop="title")
|
|
|
- el-input(v-model='UpdateForm.title' autocomplete='off'
|
|
|
- placeholder="请输入顶部标题")
|
|
|
- el-form-item(label='是否显示滚动条' prop="showScrollBar")
|
|
|
- el-switch(v-model="UpdateForm.showScrollBar")
|
|
|
- el-form-item(label='是否侧滑返回' prop="skidFlag")
|
|
|
- el-switch(v-model="UpdateForm.skidFlag")
|
|
|
- el-form-item(label='左侧按钮1' prop="leftBtn1")
|
|
|
- el-input(v-model='UpdateForm.leftBtn1' autocomplete='off'
|
|
|
- placeholder="请输入左侧按钮1")
|
|
|
- el-form-item(label='左侧按钮2' prop="leftBtn2")
|
|
|
- el-input(v-model='UpdateForm.leftBtn2' autocomplete='off'
|
|
|
- placeholder="请输入左侧按钮2")
|
|
|
- el-form-item(label='右侧按钮1' prop="rightBtn1")
|
|
|
- el-input(v-model='UpdateForm.rightBtn1' autocomplete='off'
|
|
|
- placeholder="请输入右侧按钮1")
|
|
|
- el-form-item(label='右侧按钮2' prop="rightBtn2")
|
|
|
- el-input(v-model='UpdateForm.rightBtn2' autocomplete='off'
|
|
|
- placeholder="请输入右侧按钮2")
|
|
|
- el-form-item(label='左侧按钮1点击事件' prop="leftAction1")
|
|
|
- el-input(v-model='UpdateForm.leftAction1' autocomplete='off'
|
|
|
- placeholder="请输入左侧按钮1点击事件")
|
|
|
- el-form-item(label='左侧按钮2点击事件' prop="leftAction2")
|
|
|
- el-input(v-model='UpdateForm.leftAction2' autocomplete='off'
|
|
|
- placeholder="请输入左侧按钮2点击事件")
|
|
|
- el-form-item(label='右侧按钮1点击事件' prop="rightAction1")
|
|
|
- el-input(v-model='UpdateForm.rightAction1' autocomplete='off'
|
|
|
- placeholder="请输入右侧按钮1点击事件")
|
|
|
- el-form-item(label='右侧按钮2点击事件' prop="rightAction2")
|
|
|
- el-input(v-model='UpdateForm.rightAction2' autocomplete='off'
|
|
|
- placeholder="请输入右侧按钮2点击事件")
|
|
|
- el-tab-pane(label="下级页面" name="2")
|
|
|
- el-form(:model='UpdateForm' label-position="right" ref="ruleFormRef" :rules="rules" label-width="100px")
|
|
|
- el-form-item(label="下级页面", prop="gotoPages")
|
|
|
- el-transfer(v-model="UpdateForm.gotoPages" :data="gotoPagesOptionList")
|
|
|
- el-tab-pane(label="基本资料" name="3")
|
|
|
- el-form(:model='UpdateForm' label-position="right" ref="ruleFormRef" :rules="rules" label-width="100px")
|
|
|
- el-form-item(label='是否强制更新' prop="mustUpdate")
|
|
|
- el-switch(v-model="UpdateForm.mustUpdate")
|
|
|
- el-tabs(v-model="activeId" class="demo-tabs" @tab-click="handleClick")
|
|
|
+ el-dialog(v-model='props.addVisible' width="50%" :fullscreen="isFullscreen" title="同步页面配置" draggable @close="closeVisible")
|
|
|
+ el-form(:model='UpdateForm' label-position="right" ref="ruleFormRef" :rules="rules" label-width="100px")
|
|
|
+ el-form-item(label='来源版本号' prop="sourceVersion")
|
|
|
+ el-input(v-model='UpdateForm.sourceVersion' autocomplete='off'
|
|
|
+ placeholder="请输入来源版本号")
|
|
|
+ el-form-item(label='新增版本号' prop="addVersion")
|
|
|
+ el-input(v-model='UpdateForm.addVersion' autocomplete='off'
|
|
|
+ placeholder="请输入新增版本号")
|
|
|
|
|
|
.flex.justify-end
|
|
|
el-button(
|