parent
df2b8d0943
commit
b8e9e746f6
@ -0,0 +1,3 @@
|
|||||||
|
const formData = [];
|
||||||
|
const formRules = {};
|
||||||
|
export { formData, formRules };
|
@ -0,0 +1,44 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog
|
||||||
|
:title="title"
|
||||||
|
:visible.sync="open"
|
||||||
|
append-to-body
|
||||||
|
fullscreen
|
||||||
|
center
|
||||||
|
>
|
||||||
|
<el-form
|
||||||
|
:model="ruleForm"
|
||||||
|
:rules="rules"
|
||||||
|
ref="ruleForm"
|
||||||
|
label-width="170px"
|
||||||
|
label-position="right"
|
||||||
|
:disabled="disabled"
|
||||||
|
>
|
||||||
|
</el-form>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import formTitle from "../formTitle.vue";
|
||||||
|
import { checkRole } from "@/utils/permission"; // 权限判断函数
|
||||||
|
import { formData, formRules } from "./emailDialog.js";
|
||||||
|
export default {
|
||||||
|
components: { formTitle },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
loading: false,
|
||||||
|
options: [],
|
||||||
|
list: formData,
|
||||||
|
title: "",
|
||||||
|
open: false,
|
||||||
|
ruleForm: {},
|
||||||
|
rules: formRules,
|
||||||
|
disabled: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {},
|
||||||
|
methods: {},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
@ -0,0 +1,3 @@
|
|||||||
|
const formData = [];
|
||||||
|
const formRules = {};
|
||||||
|
export { formData, formRules };
|
@ -0,0 +1,45 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog
|
||||||
|
:title="title"
|
||||||
|
:visible.sync="open"
|
||||||
|
append-to-body
|
||||||
|
fullscreen
|
||||||
|
center
|
||||||
|
>
|
||||||
|
<el-form
|
||||||
|
:model="ruleForm"
|
||||||
|
:rules="rules"
|
||||||
|
ref="ruleForm"
|
||||||
|
label-width="170px"
|
||||||
|
label-position="right"
|
||||||
|
:disabled="disabled"
|
||||||
|
>
|
||||||
|
</el-form>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import formTitle from "../formTitle.vue";
|
||||||
|
import { checkRole } from "@/utils/permission"; // 权限判断函数
|
||||||
|
import { formData, formRules } from "./mobileApp.js";
|
||||||
|
export default {
|
||||||
|
components: { formTitle },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
loading: false,
|
||||||
|
options: [],
|
||||||
|
list: formData,
|
||||||
|
title: "",
|
||||||
|
open: false,
|
||||||
|
ruleForm: {
|
||||||
|
rules: formRules,
|
||||||
|
disabled: false,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {},
|
||||||
|
methods: {},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
Loading…
Reference in new issue