|
|
@ -1,8 +1,7 @@ |
|
|
|
package com.ruoyi.applet.contoller; |
|
|
|
|
|
|
|
import com.ruoyi.applet.pojo.dto.ApiQueryIIdDTO; |
|
|
|
import com.ruoyi.applet.pojo.vo.AppletIcon; |
|
|
|
import com.ruoyi.applet.utils.conf.AppletUtil; |
|
|
|
import com.ruoyi.applet.pojo.vo.AppletIconVo; |
|
|
|
import com.ruoyi.common.core.controller.BaseController; |
|
|
|
import com.ruoyi.common.core.domain.AjaxResult; |
|
|
|
import com.ruoyi.common.core.page.TableDataInfo; |
|
|
@ -37,27 +36,27 @@ public class ApiAppletHhrWorkInController extends BaseController { |
|
|
|
@ApiOperation("已加入的工作台图标配置查询") |
|
|
|
@GetMapping("/indexConfig") |
|
|
|
public TableDataInfo getIndexConfig(){ |
|
|
|
List<AppletIcon> list = new ArrayList<>(); |
|
|
|
AppletIcon icon1 = new AppletIcon(); |
|
|
|
List<AppletIconVo> list = new ArrayList<>(); |
|
|
|
AppletIconVo icon1 = new AppletIconVo(); |
|
|
|
icon1.setType(0); |
|
|
|
icon1.setImage("https://image.hhlm1688.com/img/work/log/indexInfo/1.png"); |
|
|
|
icon1.setName("用户绑定"); |
|
|
|
icon1.setUrl("/otherPages/workbenchManage/bindUser/index"); |
|
|
|
|
|
|
|
AppletIcon icon2 = new AppletIcon(); |
|
|
|
AppletIconVo icon2 = new AppletIconVo(); |
|
|
|
icon2.setType(0); |
|
|
|
icon2.setImage("https://image.hhlm1688.com/img/work/log/indexInfo/2.png"); |
|
|
|
icon2.setName("我的用户"); |
|
|
|
//icon2.setUrl("/otherPages/workbenchManage/myUser/"); |
|
|
|
icon2.setUrl("/otherPages/workbenchManage/myUser/index"); |
|
|
|
|
|
|
|
AppletIcon icon3 = new AppletIcon(); |
|
|
|
AppletIconVo icon3 = new AppletIconVo(); |
|
|
|
icon3.setType(0); |
|
|
|
icon3.setImage("https://image.hhlm1688.com/img/work/log/indexInfo/3.png"); |
|
|
|
icon3.setName("我的等级"); |
|
|
|
icon3.setUrl("/otherPages/workbenchManage/myLevel/index"); |
|
|
|
|
|
|
|
AppletIcon icon4 = new AppletIcon(); |
|
|
|
AppletIconVo icon4 = new AppletIconVo(); |
|
|
|
icon4.setType(0); |
|
|
|
icon4.setImage("https://image.hhlm1688.com/img/work/log/indexInfo/4.png"); |
|
|
|
icon4.setName("我的钱包"); |
|
|
@ -69,31 +68,31 @@ public class ApiAppletHhrWorkInController extends BaseController { |
|
|
|
list.add(icon4); |
|
|
|
|
|
|
|
|
|
|
|
AppletIcon icon5 = new AppletIcon(); |
|
|
|
AppletIconVo icon5 = new AppletIconVo(); |
|
|
|
icon5.setType(1); |
|
|
|
icon5.setImage("https://image.hhlm1688.com/img/work/log/indexInfo/5.png"); |
|
|
|
icon5.setName("服务信息"); |
|
|
|
icon5.setUrl("/otherPages/authentication/serve/index"); |
|
|
|
|
|
|
|
AppletIcon icon6 = new AppletIcon(); |
|
|
|
AppletIconVo icon6 = new AppletIconVo(); |
|
|
|
icon6.setType(1); |
|
|
|
icon6.setImage("https://image.hhlm1688.com/img/work/log/indexInfo/6.png"); |
|
|
|
icon6.setName("服务记录"); |
|
|
|
icon6.setUrl("/otherPages/authentication/serve/record"); |
|
|
|
|
|
|
|
AppletIcon icon7 = new AppletIcon(); |
|
|
|
AppletIconVo icon7 = new AppletIconVo(); |
|
|
|
icon7.setType(1); |
|
|
|
icon7.setImage("https://image.hhlm1688.com/img/work/log/indexInfo/7.png"); |
|
|
|
icon7.setName("平台手册"); |
|
|
|
icon7.setUrl(""); |
|
|
|
|
|
|
|
AppletIcon icon8 = new AppletIcon(); |
|
|
|
AppletIconVo icon8 = new AppletIconVo(); |
|
|
|
icon8.setType(1); |
|
|
|
icon8.setImage("https://image.hhlm1688.com/img/work/log/indexInfo/8.png"); |
|
|
|
icon8.setName("我的评价"); |
|
|
|
icon8.setUrl("/otherPages/orderTakingManage/evaluate/index"); |
|
|
|
|
|
|
|
AppletIcon icon9 = new AppletIcon(); |
|
|
|
AppletIconVo icon9 = new AppletIconVo(); |
|
|
|
icon9.setType(1); |
|
|
|
icon9.setImage("https://image.hhlm1688.com/img/work/log/indexInfo/9.png"); |
|
|
|
icon9.setName("接单地址"); |
|
|
|