|
@@ -166,9 +166,93 @@
|
166
|
166
|
</div>
|
167
|
167
|
</div>
|
168
|
168
|
</div>
|
|
169
|
+ <div class="row">
|
|
170
|
+ <div class="col-md-3" onclick="onAction('out-link','/rotationChart/list')">
|
|
171
|
+ <div class="act-bg">
|
|
172
|
+ <img th:src="@{/images/dashboard/menu_bg.png}" alt="">
|
|
173
|
+ <img th:src="@{/images/dashboard/menu_bg_active.png}" alt="">
|
|
174
|
+ </div>
|
|
175
|
+
|
|
176
|
+ <div class="act-body">
|
|
177
|
+ <div class="act-icon">
|
|
178
|
+ <img th:src="@{/images/dashboard/军供供应设备.png}" alt="">
|
|
179
|
+ <img th:src="@{/images/dashboard/军供供应设备click.png}" alt="">
|
|
180
|
+ </div>
|
|
181
|
+ <div class="act-content">
|
|
182
|
+ <img th:src="@{/images/dashboard/left.png}" alt="">
|
|
183
|
+ <span>轮播图管理</span>
|
|
184
|
+ <img th:src="@{/images/dashboard/right.png}" alt="">
|
|
185
|
+ </div>
|
|
186
|
+ </div>
|
|
187
|
+ </div>
|
|
188
|
+ <div class="col-md-3" onclick="onAction('out-link','/dish/list')">
|
|
189
|
+ <div class="act-bg">
|
|
190
|
+ <img th:src="@{/images/dashboard/menu_bg.png}" alt="">
|
|
191
|
+ <img th:src="@{/images/dashboard/menu_bg_active.png}" alt="">
|
|
192
|
+ </div>
|
|
193
|
+
|
|
194
|
+ <div class="act-body">
|
|
195
|
+ <div class="act-icon">
|
|
196
|
+ <img th:src="@{/images/dashboard/军供任务明细.png}" alt="">
|
|
197
|
+ <img th:src="@{/images/dashboard/军供任务明细click.png}" alt="">
|
|
198
|
+ </div>
|
|
199
|
+ <div class="act-content">
|
|
200
|
+ <img th:src="@{/images/dashboard/left.png}" alt="">
|
|
201
|
+ <span>菜肴管理</span>
|
|
202
|
+ <img th:src="@{/images/dashboard/right.png}" alt="">
|
|
203
|
+ </div>
|
|
204
|
+ </div>
|
|
205
|
+ </div>
|
|
206
|
+ <div class="col-md-3" onclick="onAction('out-link','/package/list')">
|
|
207
|
+ <div class="act-bg">
|
|
208
|
+ <img th:src="@{/images/dashboard/menu_bg.png}" alt="">
|
|
209
|
+ <img th:src="@{/images/dashboard/menu_bg_active.png}" alt="">
|
|
210
|
+ </div>
|
|
211
|
+
|
|
212
|
+ <div class="act-body">
|
|
213
|
+ <div class="act-icon">
|
|
214
|
+ <img th:src="@{/images/dashboard/社会保障预案.png}" alt="">
|
|
215
|
+ <img th:src="@{/images/dashboard/社会保障预案click.png}" alt="">
|
|
216
|
+ </div>
|
|
217
|
+ <div class="act-content">
|
|
218
|
+ <img th:src="@{/images/dashboard/left.png}" alt="">
|
|
219
|
+ <span>套餐管理</span>
|
|
220
|
+ <img th:src="@{/images/dashboard/right.png}" alt="">
|
|
221
|
+ </div>
|
|
222
|
+ </div>
|
|
223
|
+ </div>
|
|
224
|
+ <div class="col-md-3" onclick="onAction('out-link','/guaranteeTask/list')">
|
|
225
|
+ <div class="act-bg">
|
|
226
|
+ <img th:src="@{/images/dashboard/menu_bg.png}" alt="">
|
|
227
|
+ <img th:src="@{/images/dashboard/menu_bg_active.png}" alt="">
|
|
228
|
+ </div>
|
|
229
|
+
|
|
230
|
+ <div class="act-body">
|
|
231
|
+ <div class="act-icon">
|
|
232
|
+ <img th:src="@{/images/dashboard/年度任务汇总.png}" alt="">
|
|
233
|
+ <img th:src="@{/images/dashboard/年度任务汇总click.png}" alt="">
|
|
234
|
+ </div>
|
|
235
|
+ <div class="act-content">
|
|
236
|
+ <img th:src="@{/images/dashboard/left.png}" alt="">
|
|
237
|
+ <span>任务管理</span>
|
|
238
|
+ <img th:src="@{/images/dashboard/right.png}" alt="">
|
|
239
|
+ </div>
|
|
240
|
+ </div>
|
|
241
|
+ </div>
|
|
242
|
+ </div>
|
169
|
243
|
</div>
|
170
|
244
|
<script>
|
|
245
|
+ var outLinkHost = 'http://127.0.0.1:8000/#';
|
|
246
|
+ var outLink = document.createElement('a');
|
|
247
|
+ outLink.target = '_blank';
|
|
248
|
+
|
171
|
249
|
function onAction(menuId, subMenuName) {
|
|
250
|
+ if (menuId == 'out-link') {
|
|
251
|
+ outLink.href = `${outLinkHost}${subMenuName}`;
|
|
252
|
+ outLink.click();
|
|
253
|
+ return;
|
|
254
|
+ }
|
|
255
|
+
|
172
|
256
|
// 额外添加, 显示菜单栏
|
173
|
257
|
parent.onNavMenuClick(menuId);
|
174
|
258
|
parent.subMenuClick(subMenuName);
|