Elements-SY

modify

1 <template> 1 <template>
2 <div id="app"> 2 <div id="app">
3 - <router-view /> 3 + <router-view />
4 </div> 4 </div>
5 </template> 5 </template>
6 6
......
...@@ -2,14 +2,14 @@ ...@@ -2,14 +2,14 @@
2 <div ref="formHeaderRef" class="form-header container"> 2 <div ref="formHeaderRef" class="form-header container">
3 <el-row> 3 <el-row>
4 <el-col> 4 <el-col>
5 - <yl-form 5 + <yl-form
6 - ref="ruleForm" 6 + ref="ruleForm"
7 - :formConfig="formConfig" 7 + :formConfig="formConfig"
8 - :queryForm="queryForm" 8 + :queryForm="queryForm"
9 - :inline="false" 9 + :inline="false"
10 - formWidth="auto" 10 + formWidth="auto"
11 - @blur="blurEvent" 11 + @blur="blurEvent"
12 - /> 12 + />
13 </el-col> 13 </el-col>
14 </el-row> 14 </el-row>
15 <yl-table 15 <yl-table
...@@ -38,7 +38,7 @@ import { ...@@ -38,7 +38,7 @@ import {
38 deleteEtesRuleById, // 删除 38 deleteEtesRuleById, // 删除
39 } from "@/api/et86"; 39 } from "@/api/et86";
40 export default { 40 export default {
41 - name: "et86RuleConfig", 41 + name: "Et86RuleConfig",
42 components: { 42 components: {
43 YlForm, 43 YlForm,
44 YlTable, 44 YlTable,
...@@ -46,12 +46,8 @@ export default { ...@@ -46,12 +46,8 @@ export default {
46 data() { 46 data() {
47 return { 47 return {
48 formConfig: formConfig, // 表单配置项 48 formConfig: formConfig, // 表单配置项
49 - originOfFlightNo: "",
50 queryForm: { 49 queryForm: {
51 // 表单参数 50 // 表单参数
52 - originOfFlightNo: "",
53 - startTime: "",
54 - endTime: "",
55 status: "有效", 51 status: "有效",
56 }, 52 },
57 pageConfig: { 53 pageConfig: {
......