1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
| <template>
| <div class='menu_add'>
| <section
| class="sec"
| v-if="item.child"
| >
| <p class="label">父菜单:</p>
| <article>
| <el-select
| size="small"
| v-model="sel"
| ></el-select>
| </article>
| </section>
| <section class="sec">
| <p class="label">名称:</p>
| <article>
| <el-input
| size="small"
| maxlength="20"
| v-model="name"
| ></el-input>
| </article>
| </section>
| <section class="sec">
| <p class="label">Url:</p>
| <article>
| <el-input
| size="small"
| maxlength="100"
| v-model="url"
| ></el-input>
| </article>
| </section>
| <section class="sec">
| <p class="label">排序:</p>
| <article>
| <el-input
| size="small"
| maxlength="5"
| v-model="sort"
| ></el-input>
| </article>
| </section>
| <section class="sec">
| <p class="label">状态:</p>
| <article class="up">
| <el-radio
| label="1"
| v-model="r1"
| >启用</el-radio>
| <el-radio
| label="2"
| v-model="r1"
| >禁用</el-radio>
| </article>
| </section>
| </div>
| </template>
|
| <script>
| export default {
| props: {
| item: {
| type: Object,
| default: () => {
| return {};
| },
| },
| door: {
| type: Object,
| default: () => {
| return {};
| },
| },
| },
| components: {},
| data() {
| return { r1: "1", sel: "", sort: "", url: "", name: "" };
| },
| watch: {
| item: {
| handler() {
| this.setItem();
| },
| deep: true,
| },
| door: {
| handler(n) {
| if (n.r) {
| this.sub(n.t);
| }
| },
| deep: true,
| },
| },
| methods: {
| setItem() {
| console.log(this.item);
| },
| sub(type) {
| console.log(type);
| },
| },
| mounted() {
| this.setItem();
| },
| };
| </script>
| <style lang='less' scoped>
| .menu_add {
| .up {
| padding-top: 8px;
| }
| }
| </style>
|
|