|
|
@@ -130,7 +130,7 @@
|
|
130
|
130
|
</el-col>
|
|
131
|
131
|
</el-row>
|
|
132
|
132
|
<el-row>
|
|
133
|
|
- <el-col :span="24" v-if="form.menuType != 'F'">
|
|
|
133
|
+ <el-col :span="12" v-if="form.menuType != 'F'">
|
|
134
|
134
|
<el-form-item label="菜单图标" prop="icon">
|
|
135
|
135
|
<el-popover
|
|
136
|
136
|
placement="bottom-start"
|
|
|
@@ -151,6 +151,11 @@
|
|
151
|
151
|
</el-popover>
|
|
152
|
152
|
</el-form-item>
|
|
153
|
153
|
</el-col>
|
|
|
154
|
+ <el-col :span="12">
|
|
|
155
|
+ <el-form-item label="显示排序" prop="orderNum">
|
|
|
156
|
+ <el-input-number v-model="form.orderNum" controls-position="right" :min="0" />
|
|
|
157
|
+ </el-form-item>
|
|
|
158
|
+ </el-col>
|
|
154
|
159
|
</el-row>
|
|
155
|
160
|
<el-row>
|
|
156
|
161
|
<el-col :span="12">
|
|
|
@@ -158,9 +163,15 @@
|
|
158
|
163
|
<el-input v-model="form.menuName" placeholder="请输入菜单名称" />
|
|
159
|
164
|
</el-form-item>
|
|
160
|
165
|
</el-col>
|
|
161
|
|
- <el-col :span="12">
|
|
162
|
|
- <el-form-item label="显示排序" prop="orderNum">
|
|
163
|
|
- <el-input-number v-model="form.orderNum" controls-position="right" :min="0" />
|
|
|
166
|
+ <el-col :span="12" v-if="form.menuType == 'C'">
|
|
|
167
|
+ <el-form-item prop="routeName">
|
|
|
168
|
+ <el-input v-model="form.routeName" placeholder="请输入路由名称" />
|
|
|
169
|
+ <span slot="label">
|
|
|
170
|
+ <el-tooltip content="默认不填则和路由地址相同:如地址为:`user`,则名称为`User`(注意:为避免名字的冲突,特殊情况下请自定义,保证唯一性)" placement="top">
|
|
|
171
|
+ <i class="el-icon-question"></i>
|
|
|
172
|
+ </el-tooltip>
|
|
|
173
|
+ 路由名称
|
|
|
174
|
+ </span>
|
|
164
|
175
|
</el-form-item>
|
|
165
|
176
|
</el-col>
|
|
166
|
177
|
</el-row>
|