From 8494738306fa1796d1f3680511ce9a5ad67436ac Mon Sep 17 00:00:00 2001 From: admin <15939171744@163.com> Date: 星期六, 23 十一月 2024 15:35:36 +0800 Subject: [PATCH] -工艺路线 --- billion-main/src/main/resources/mapper/bs/BsRouteChildInfoMapper.xml | 102 +++ billion-main/src/main/java/com/billion/main/bs/service/IBsRouteChildInfoService.java | 63 ++ billion-ui/src/api/main/bs/routeInfo.js | 44 + billion-main/src/main/java/com/billion/main/bs/mapper/BsRouteInfoMapper.java | 63 ++ billion-ui/src/router/index.js | 14 billion-main/src/main/java/com/billion/main/bs/controller/BsRouteChildInfoController.java | 104 +++ billion-main/src/main/java/com/billion/main/bs/controller/BsRouteInfoController.java | 104 +++ billion-main/src/main/java/com/billion/main/bs/service/IBsRouteInfoService.java | 63 ++ billion-main/src/main/java/com/billion/main/bs/service/impl/BsRouteInfoServiceImpl.java | 105 +++ billion-main/src/main/java/com/billion/main/bs/mapper/BsRouteChildInfoMapper.java | 63 ++ billion-main/src/main/resources/mapper/bs/BsRouteInfoMapper.xml | 111 +++ billion-ui/src/views/main/bs/routeChildInfo/index.vue | 354 +++++++++++ billion-main/src/main/java/com/billion/main/bs/domain/BsRouteChildInfo.java | 51 + billion-main/src/main/java/com/billion/main/bs/domain/BsRouteInfo.java | 59 + billion-main/src/main/java/com/billion/main/bs/service/impl/BsRouteChildInfoServiceImpl.java | 104 +++ billion-ui/src/views/main/bs/routeInfo/index.vue | 357 +++++++++++ billion-main/src/main/java/com/billion/main/da/service/impl/DaParamCollectionServiceImpl.java | 4 billion-ui/src/api/main/bs/routeChildInfo.js | 44 + 18 files changed, 1,809 insertions(+), 0 deletions(-) diff --git a/billion-main/src/main/java/com/billion/main/bs/controller/BsRouteChildInfoController.java b/billion-main/src/main/java/com/billion/main/bs/controller/BsRouteChildInfoController.java new file mode 100644 index 0000000..ab2385a --- /dev/null +++ b/billion-main/src/main/java/com/billion/main/bs/controller/BsRouteChildInfoController.java @@ -0,0 +1,104 @@ +package com.billion.main.bs.controller; + +import java.util.List; +import javax.servlet.http.HttpServletResponse; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import com.billion.common.annotation.Log; +import com.billion.common.core.controller.BaseController; +import com.billion.common.core.domain.AjaxResult; +import com.billion.common.enums.BusinessType; +import com.billion.main.bs.domain.BsRouteChildInfo; +import com.billion.main.bs.service.IBsRouteChildInfoService; +import com.billion.common.utils.poi.ExcelUtil; +import com.billion.common.core.page.TableDataInfo; + +/** + * 宸ヨ壓璺嚎瀛愪俊鎭疌ontroller + * + * @author Billion-Yi + * @date 2024-11-23 + */ +@RestController +@RequestMapping("/bs/routeChildInfo") +public class BsRouteChildInfoController extends BaseController +{ + @Autowired + private IBsRouteChildInfoService bsRouteChildInfoService; + + /** + * 鏌ヨ宸ヨ壓璺嚎瀛愪俊鎭垪琛� + */ + @PreAuthorize("@ss.hasPermi('bs:routeChildInfo:list')") + @GetMapping("/list") + public TableDataInfo list(BsRouteChildInfo bsRouteChildInfo) + { + startPage(); + List<BsRouteChildInfo> list = bsRouteChildInfoService.selectBsRouteChildInfoList(bsRouteChildInfo); + return getDataTable(list); + } + + /** + * 瀵煎嚭宸ヨ壓璺嚎瀛愪俊鎭垪琛� + */ + @PreAuthorize("@ss.hasPermi('bs:routeChildInfo:export')") + @Log(title = "宸ヨ壓璺嚎瀛愪俊鎭�", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(HttpServletResponse response, BsRouteChildInfo bsRouteChildInfo) + { + List<BsRouteChildInfo> list = bsRouteChildInfoService.selectBsRouteChildInfoList(bsRouteChildInfo); + ExcelUtil<BsRouteChildInfo> util = new ExcelUtil<BsRouteChildInfo>(BsRouteChildInfo.class); + util.exportExcel(response, list, "宸ヨ壓璺嚎瀛愪俊鎭暟鎹�"); + } + + /** + * 鑾峰彇宸ヨ壓璺嚎瀛愪俊鎭缁嗕俊鎭� + */ + @PreAuthorize("@ss.hasPermi('bs:routeChildInfo:query')") + @GetMapping(value = "/{id}") + public AjaxResult getInfo(@PathVariable("id") Long id) + { + return success(bsRouteChildInfoService.selectBsRouteChildInfoById(id)); + } + + /** + * 鏂板宸ヨ壓璺嚎瀛愪俊鎭� + */ + @PreAuthorize("@ss.hasPermi('bs:routeChildInfo:add')") + @Log(title = "宸ヨ壓璺嚎瀛愪俊鎭�", businessType = BusinessType.INSERT) + @PostMapping + public AjaxResult add(@RequestBody BsRouteChildInfo bsRouteChildInfo) + { + return toAjax(bsRouteChildInfoService.insertBsRouteChildInfo(bsRouteChildInfo)); + } + + /** + * 淇敼宸ヨ壓璺嚎瀛愪俊鎭� + */ + @PreAuthorize("@ss.hasPermi('bs:routeChildInfo:edit')") + @Log(title = "宸ヨ壓璺嚎瀛愪俊鎭�", businessType = BusinessType.UPDATE) + @PutMapping + public AjaxResult edit(@RequestBody BsRouteChildInfo bsRouteChildInfo) + { + return toAjax(bsRouteChildInfoService.updateBsRouteChildInfo(bsRouteChildInfo)); + } + + /** + * 鍒犻櫎宸ヨ壓璺嚎瀛愪俊鎭� + */ + @PreAuthorize("@ss.hasPermi('bs:routeChildInfo:remove')") + @Log(title = "宸ヨ壓璺嚎瀛愪俊鎭�", businessType = BusinessType.DELETE) + @DeleteMapping("/{ids}") + public AjaxResult remove(@PathVariable Long[] ids) + { + return toAjax(bsRouteChildInfoService.deleteBsRouteChildInfoByIds(ids)); + } +} diff --git a/billion-main/src/main/java/com/billion/main/bs/controller/BsRouteInfoController.java b/billion-main/src/main/java/com/billion/main/bs/controller/BsRouteInfoController.java new file mode 100644 index 0000000..69d5354 --- /dev/null +++ b/billion-main/src/main/java/com/billion/main/bs/controller/BsRouteInfoController.java @@ -0,0 +1,104 @@ +package com.billion.main.bs.controller; + +import java.util.List; +import javax.servlet.http.HttpServletResponse; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import com.billion.common.annotation.Log; +import com.billion.common.core.controller.BaseController; +import com.billion.common.core.domain.AjaxResult; +import com.billion.common.enums.BusinessType; +import com.billion.main.bs.domain.BsRouteInfo; +import com.billion.main.bs.service.IBsRouteInfoService; +import com.billion.common.utils.poi.ExcelUtil; +import com.billion.common.core.page.TableDataInfo; + +/** + * 宸ヨ壓璺嚎Controller + * + * @author Billion-Yi + * @date 2024-11-23 + */ +@RestController +@RequestMapping("/bs/routeInfo") +public class BsRouteInfoController extends BaseController +{ + @Autowired + private IBsRouteInfoService bsRouteInfoService; + + /** + * 鏌ヨ宸ヨ壓璺嚎鍒楄〃 + */ + @PreAuthorize("@ss.hasPermi('bs:routeInfo:list')") + @GetMapping("/list") + public TableDataInfo list(BsRouteInfo bsRouteInfo) + { + startPage(); + List<BsRouteInfo> list = bsRouteInfoService.selectBsRouteInfoList(bsRouteInfo); + return getDataTable(list); + } + + /** + * 瀵煎嚭宸ヨ壓璺嚎鍒楄〃 + */ + @PreAuthorize("@ss.hasPermi('bs:routeInfo:export')") + @Log(title = "宸ヨ壓璺嚎", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(HttpServletResponse response, BsRouteInfo bsRouteInfo) + { + List<BsRouteInfo> list = bsRouteInfoService.selectBsRouteInfoList(bsRouteInfo); + ExcelUtil<BsRouteInfo> util = new ExcelUtil<BsRouteInfo>(BsRouteInfo.class); + util.exportExcel(response, list, "宸ヨ壓璺嚎鏁版嵁"); + } + + /** + * 鑾峰彇宸ヨ壓璺嚎璇︾粏淇℃伅 + */ + @PreAuthorize("@ss.hasPermi('bs:routeInfo:query')") + @GetMapping(value = "/{id}") + public AjaxResult getInfo(@PathVariable("id") Long id) + { + return success(bsRouteInfoService.selectBsRouteInfoById(id)); + } + + /** + * 鏂板宸ヨ壓璺嚎 + */ + @PreAuthorize("@ss.hasPermi('bs:routeInfo:add')") + @Log(title = "宸ヨ壓璺嚎", businessType = BusinessType.INSERT) + @PostMapping + public AjaxResult add(@RequestBody BsRouteInfo bsRouteInfo) + { + return toAjax(bsRouteInfoService.insertBsRouteInfo(bsRouteInfo)); + } + + /** + * 淇敼宸ヨ壓璺嚎 + */ + @PreAuthorize("@ss.hasPermi('bs:routeInfo:edit')") + @Log(title = "宸ヨ壓璺嚎", businessType = BusinessType.UPDATE) + @PutMapping + public AjaxResult edit(@RequestBody BsRouteInfo bsRouteInfo) + { + return toAjax(bsRouteInfoService.updateBsRouteInfo(bsRouteInfo)); + } + + /** + * 鍒犻櫎宸ヨ壓璺嚎 + */ + @PreAuthorize("@ss.hasPermi('bs:routeInfo:remove')") + @Log(title = "宸ヨ壓璺嚎", businessType = BusinessType.DELETE) + @DeleteMapping("/{ids}") + public AjaxResult remove(@PathVariable Long[] ids) + { + return toAjax(bsRouteInfoService.deleteBsRouteInfoByIds(ids)); + } +} diff --git a/billion-main/src/main/java/com/billion/main/bs/domain/BsRouteChildInfo.java b/billion-main/src/main/java/com/billion/main/bs/domain/BsRouteChildInfo.java new file mode 100644 index 0000000..7c23ef6 --- /dev/null +++ b/billion-main/src/main/java/com/billion/main/bs/domain/BsRouteChildInfo.java @@ -0,0 +1,51 @@ +package com.billion.main.bs.domain; + +import lombok.Data; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.billion.common.annotation.Excel; +import com.billion.main.common.BaseEntity; + +/** + * 宸ヨ壓璺嚎瀛愪俊鎭璞� bs_route_child_info + * + * @author Billion-Yi + * @date 2024-11-23 + */ +@Data +public class BsRouteChildInfo extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 涓婚敭id */ + private Long id; + + /** 浜у搧缂栫爜 */ + @Excel(name = "浜у搧缂栫爜") + private String productCode; + + /** 浜у搧鍚嶇О */ + @Excel(name = "浜у搧鍚嶇О") + private String productName; + + /** 宸ヤ綅缂栫爜 */ + @Excel(name = "宸ヤ綅缂栫爜") + private String locationCode; + + /** 宸ヤ綅鍚嶇О */ + @Excel(name = "宸ヤ綅鍚嶇О") + private String locationName; + + /** 鍔犲伐椤哄簭 */ + @Excel(name = "鍔犲伐椤哄簭") + private Long stepNo; + + /** 閫昏緫鍒犻櫎 */ + private String delFlag; + + /** 娴佺▼缂栫爜 */ + @Excel(name = "娴佺▼缂栫爜") + private String routeCode; + + +} diff --git a/billion-main/src/main/java/com/billion/main/bs/domain/BsRouteInfo.java b/billion-main/src/main/java/com/billion/main/bs/domain/BsRouteInfo.java new file mode 100644 index 0000000..d6641d2 --- /dev/null +++ b/billion-main/src/main/java/com/billion/main/bs/domain/BsRouteInfo.java @@ -0,0 +1,59 @@ +package com.billion.main.bs.domain; + +import lombok.Data; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.billion.common.annotation.Excel; +import com.billion.main.common.BaseEntity; + +/** + * 宸ヨ壓璺嚎瀵硅薄 bs_route_info + * + * @author Billion-Yi + * @date 2024-11-23 + */ +@Data +public class BsRouteInfo extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 涓婚敭id */ + private Long id; + + /** 娴佺▼缂栫爜 */ + @Excel(name = "娴佺▼缂栫爜") + private String routeCode; + + /** 娴佺▼鍚嶇О */ + @Excel(name = "娴佺▼鍚嶇О") + private String routeName; + + /** 浜у搧缂栫爜 */ + @Excel(name = "浜у搧缂栫爜") + private String productCode; + + /** 浜у搧鍚嶇О */ + @Excel(name = "浜у搧鍚嶇О") + private String productName; + + /** 鐗堟湰 */ + @Excel(name = "鐗堟湰") + private String version; + + /** 鐘舵��(瀛楀吀) */ + @Excel(name = "鐘舵��(瀛楀吀)") + private String status; + + /** 鏁版嵁鏉ユ簮 */ + @Excel(name = "鏁版嵁鏉ユ簮") + private String dataSource; + + /** 閫昏緫鍒犻櫎 */ + private String delFlag; + + /** 澶囨敞 */ + @Excel(name = "澶囨敞") + private String remark; + + +} diff --git a/billion-main/src/main/java/com/billion/main/bs/mapper/BsRouteChildInfoMapper.java b/billion-main/src/main/java/com/billion/main/bs/mapper/BsRouteChildInfoMapper.java new file mode 100644 index 0000000..f4a7cc3 --- /dev/null +++ b/billion-main/src/main/java/com/billion/main/bs/mapper/BsRouteChildInfoMapper.java @@ -0,0 +1,63 @@ +package com.billion.main.bs.mapper; + +import java.util.List; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.billion.main.bs.domain.BsRouteChildInfo; + +/** + * 宸ヨ壓璺嚎瀛愪俊鎭疢apper鎺ュ彛 + * + * @author Billion-Yi + * @date 2024-11-23 + */ +public interface BsRouteChildInfoMapper extends BaseMapper<BsRouteChildInfo> +{ + /** + * 鏌ヨ宸ヨ壓璺嚎瀛愪俊鎭� + * + * @param id 宸ヨ壓璺嚎瀛愪俊鎭富閿� + * @return 宸ヨ壓璺嚎瀛愪俊鎭� + */ + public BsRouteChildInfo selectBsRouteChildInfoById(Long id); + + /** + * 鏌ヨ宸ヨ壓璺嚎瀛愪俊鎭垪琛� + * + * @param bsRouteChildInfo 宸ヨ壓璺嚎瀛愪俊鎭� + * @return 宸ヨ壓璺嚎瀛愪俊鎭泦鍚� + */ + public List<BsRouteChildInfo> selectBsRouteChildInfoList(BsRouteChildInfo bsRouteChildInfo); + + /** + * 鏂板宸ヨ壓璺嚎瀛愪俊鎭� + * + * @param bsRouteChildInfo 宸ヨ壓璺嚎瀛愪俊鎭� + * @return 缁撴灉 + */ + public int insertBsRouteChildInfo(BsRouteChildInfo bsRouteChildInfo); + + /** + * 淇敼宸ヨ壓璺嚎瀛愪俊鎭� + * + * @param bsRouteChildInfo 宸ヨ壓璺嚎瀛愪俊鎭� + * @return 缁撴灉 + */ + public int updateBsRouteChildInfo(BsRouteChildInfo bsRouteChildInfo); + + /** + * 鍒犻櫎宸ヨ壓璺嚎瀛愪俊鎭� + * + * @param id 宸ヨ壓璺嚎瀛愪俊鎭富閿� + * @return 缁撴灉 + */ + public int deleteBsRouteChildInfoById(Long id); + + /** + * 鎵归噺鍒犻櫎宸ヨ壓璺嚎瀛愪俊鎭� + * + * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁涓婚敭闆嗗悎 + * @return 缁撴灉 + */ + public int deleteBsRouteChildInfoByIds(Long[] ids); +} diff --git a/billion-main/src/main/java/com/billion/main/bs/mapper/BsRouteInfoMapper.java b/billion-main/src/main/java/com/billion/main/bs/mapper/BsRouteInfoMapper.java new file mode 100644 index 0000000..cb872e2 --- /dev/null +++ b/billion-main/src/main/java/com/billion/main/bs/mapper/BsRouteInfoMapper.java @@ -0,0 +1,63 @@ +package com.billion.main.bs.mapper; + +import java.util.List; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.billion.main.bs.domain.BsRouteInfo; + +/** + * 宸ヨ壓璺嚎Mapper鎺ュ彛 + * + * @author Billion-Yi + * @date 2024-11-23 + */ +public interface BsRouteInfoMapper extends BaseMapper<BsRouteInfo> +{ + /** + * 鏌ヨ宸ヨ壓璺嚎 + * + * @param id 宸ヨ壓璺嚎涓婚敭 + * @return 宸ヨ壓璺嚎 + */ + public BsRouteInfo selectBsRouteInfoById(Long id); + + /** + * 鏌ヨ宸ヨ壓璺嚎鍒楄〃 + * + * @param bsRouteInfo 宸ヨ壓璺嚎 + * @return 宸ヨ壓璺嚎闆嗗悎 + */ + public List<BsRouteInfo> selectBsRouteInfoList(BsRouteInfo bsRouteInfo); + + /** + * 鏂板宸ヨ壓璺嚎 + * + * @param bsRouteInfo 宸ヨ壓璺嚎 + * @return 缁撴灉 + */ + public int insertBsRouteInfo(BsRouteInfo bsRouteInfo); + + /** + * 淇敼宸ヨ壓璺嚎 + * + * @param bsRouteInfo 宸ヨ壓璺嚎 + * @return 缁撴灉 + */ + public int updateBsRouteInfo(BsRouteInfo bsRouteInfo); + + /** + * 鍒犻櫎宸ヨ壓璺嚎 + * + * @param id 宸ヨ壓璺嚎涓婚敭 + * @return 缁撴灉 + */ + public int deleteBsRouteInfoById(Long id); + + /** + * 鎵归噺鍒犻櫎宸ヨ壓璺嚎 + * + * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁涓婚敭闆嗗悎 + * @return 缁撴灉 + */ + public int deleteBsRouteInfoByIds(Long[] ids); +} diff --git a/billion-main/src/main/java/com/billion/main/bs/service/IBsRouteChildInfoService.java b/billion-main/src/main/java/com/billion/main/bs/service/IBsRouteChildInfoService.java new file mode 100644 index 0000000..94e43a2 --- /dev/null +++ b/billion-main/src/main/java/com/billion/main/bs/service/IBsRouteChildInfoService.java @@ -0,0 +1,63 @@ +package com.billion.main.bs.service; + +import java.util.List; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.billion.main.bs.domain.BsRouteChildInfo; + +/** + * 宸ヨ壓璺嚎瀛愪俊鎭疭ervice鎺ュ彛 + * + * @author Billion-Yi + * @date 2024-11-23 + */ +public interface IBsRouteChildInfoService extends IService<BsRouteChildInfo> +{ + /** + * 鏌ヨ宸ヨ壓璺嚎瀛愪俊鎭� + * + * @param id 宸ヨ壓璺嚎瀛愪俊鎭富閿� + * @return 宸ヨ壓璺嚎瀛愪俊鎭� + */ + public BsRouteChildInfo selectBsRouteChildInfoById(Long id); + + /** + * 鏌ヨ宸ヨ壓璺嚎瀛愪俊鎭垪琛� + * + * @param bsRouteChildInfo 宸ヨ壓璺嚎瀛愪俊鎭� + * @return 宸ヨ壓璺嚎瀛愪俊鎭泦鍚� + */ + public List<BsRouteChildInfo> selectBsRouteChildInfoList(BsRouteChildInfo bsRouteChildInfo); + + /** + * 鏂板宸ヨ壓璺嚎瀛愪俊鎭� + * + * @param bsRouteChildInfo 宸ヨ壓璺嚎瀛愪俊鎭� + * @return 缁撴灉 + */ + public int insertBsRouteChildInfo(BsRouteChildInfo bsRouteChildInfo); + + /** + * 淇敼宸ヨ壓璺嚎瀛愪俊鎭� + * + * @param bsRouteChildInfo 宸ヨ壓璺嚎瀛愪俊鎭� + * @return 缁撴灉 + */ + public int updateBsRouteChildInfo(BsRouteChildInfo bsRouteChildInfo); + + /** + * 鎵归噺鍒犻櫎宸ヨ壓璺嚎瀛愪俊鎭� + * + * @param ids 闇�瑕佸垹闄ょ殑宸ヨ壓璺嚎瀛愪俊鎭富閿泦鍚� + * @return 缁撴灉 + */ + public int deleteBsRouteChildInfoByIds(Long[] ids); + + /** + * 鍒犻櫎宸ヨ壓璺嚎瀛愪俊鎭俊鎭� + * + * @param id 宸ヨ壓璺嚎瀛愪俊鎭富閿� + * @return 缁撴灉 + */ + public int deleteBsRouteChildInfoById(Long id); +} diff --git a/billion-main/src/main/java/com/billion/main/bs/service/IBsRouteInfoService.java b/billion-main/src/main/java/com/billion/main/bs/service/IBsRouteInfoService.java new file mode 100644 index 0000000..d459c57 --- /dev/null +++ b/billion-main/src/main/java/com/billion/main/bs/service/IBsRouteInfoService.java @@ -0,0 +1,63 @@ +package com.billion.main.bs.service; + +import java.util.List; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.billion.main.bs.domain.BsRouteInfo; + +/** + * 宸ヨ壓璺嚎Service鎺ュ彛 + * + * @author Billion-Yi + * @date 2024-11-23 + */ +public interface IBsRouteInfoService extends IService<BsRouteInfo> +{ + /** + * 鏌ヨ宸ヨ壓璺嚎 + * + * @param id 宸ヨ壓璺嚎涓婚敭 + * @return 宸ヨ壓璺嚎 + */ + public BsRouteInfo selectBsRouteInfoById(Long id); + + /** + * 鏌ヨ宸ヨ壓璺嚎鍒楄〃 + * + * @param bsRouteInfo 宸ヨ壓璺嚎 + * @return 宸ヨ壓璺嚎闆嗗悎 + */ + public List<BsRouteInfo> selectBsRouteInfoList(BsRouteInfo bsRouteInfo); + + /** + * 鏂板宸ヨ壓璺嚎 + * + * @param bsRouteInfo 宸ヨ壓璺嚎 + * @return 缁撴灉 + */ + public int insertBsRouteInfo(BsRouteInfo bsRouteInfo); + + /** + * 淇敼宸ヨ壓璺嚎 + * + * @param bsRouteInfo 宸ヨ壓璺嚎 + * @return 缁撴灉 + */ + public int updateBsRouteInfo(BsRouteInfo bsRouteInfo); + + /** + * 鎵归噺鍒犻櫎宸ヨ壓璺嚎 + * + * @param ids 闇�瑕佸垹闄ょ殑宸ヨ壓璺嚎涓婚敭闆嗗悎 + * @return 缁撴灉 + */ + public int deleteBsRouteInfoByIds(Long[] ids); + + /** + * 鍒犻櫎宸ヨ壓璺嚎淇℃伅 + * + * @param id 宸ヨ壓璺嚎涓婚敭 + * @return 缁撴灉 + */ + public int deleteBsRouteInfoById(Long id); +} diff --git a/billion-main/src/main/java/com/billion/main/bs/service/impl/BsRouteChildInfoServiceImpl.java b/billion-main/src/main/java/com/billion/main/bs/service/impl/BsRouteChildInfoServiceImpl.java new file mode 100644 index 0000000..b05e278 --- /dev/null +++ b/billion-main/src/main/java/com/billion/main/bs/service/impl/BsRouteChildInfoServiceImpl.java @@ -0,0 +1,104 @@ +package com.billion.main.bs.service.impl; + +import java.util.Date; +import java.util.List; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.billion.common.utils.DateUtils; +import com.billion.common.utils.SecurityUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.billion.main.bs.mapper.BsRouteChildInfoMapper; +import com.billion.main.bs.domain.BsRouteChildInfo; +import com.billion.main.bs.service.IBsRouteChildInfoService; + +import static org.apache.commons.lang3.SystemUtils.getUserName; + +/** + * 宸ヨ壓璺嚎瀛愪俊鎭疭ervice涓氬姟灞傚鐞� + * + * @author Billion-Yi + * @date 2024-11-23 + */ +@Service +public class BsRouteChildInfoServiceImpl extends ServiceImpl<BsRouteChildInfoMapper, BsRouteChildInfo> implements IBsRouteChildInfoService +{ + @Autowired + private BsRouteChildInfoMapper bsRouteChildInfoMapper; + + /** + * 鏌ヨ宸ヨ壓璺嚎瀛愪俊鎭� + * + * @param id 宸ヨ壓璺嚎瀛愪俊鎭富閿� + * @return 宸ヨ壓璺嚎瀛愪俊鎭� + */ + @Override + public BsRouteChildInfo selectBsRouteChildInfoById(Long id) + { + return bsRouteChildInfoMapper.selectBsRouteChildInfoById(id); + } + + /** + * 鏌ヨ宸ヨ壓璺嚎瀛愪俊鎭垪琛� + * + * @param bsRouteChildInfo 宸ヨ壓璺嚎瀛愪俊鎭� + * @return 宸ヨ壓璺嚎瀛愪俊鎭� + */ + @Override + public List<BsRouteChildInfo> selectBsRouteChildInfoList(BsRouteChildInfo bsRouteChildInfo) + { + return bsRouteChildInfoMapper.selectBsRouteChildInfoList(bsRouteChildInfo); + } + + /** + * 鏂板宸ヨ壓璺嚎瀛愪俊鎭� + * + * @param bsRouteChildInfo 宸ヨ壓璺嚎瀛愪俊鎭� + * @return 缁撴灉 + */ + @Override + public int insertBsRouteChildInfo(BsRouteChildInfo bsRouteChildInfo) + { + bsRouteChildInfo.setCreateTime(DateUtils.getNowDate()); + bsRouteChildInfo.setCreateBy(getUserName()); + return bsRouteChildInfoMapper.insertBsRouteChildInfo(bsRouteChildInfo); + } + + /** + * 淇敼宸ヨ壓璺嚎瀛愪俊鎭� + * + * @param bsRouteChildInfo 宸ヨ壓璺嚎瀛愪俊鎭� + * @return 缁撴灉 + */ + @Override + public int updateBsRouteChildInfo(BsRouteChildInfo bsRouteChildInfo) + { + bsRouteChildInfo.setUpdateTime(DateUtils.getNowDate()); + bsRouteChildInfo.setUpdateBy(getUserName()); + return bsRouteChildInfoMapper.updateBsRouteChildInfo(bsRouteChildInfo); + } + + /** + * 鎵归噺鍒犻櫎宸ヨ壓璺嚎瀛愪俊鎭� + * + * @param ids 闇�瑕佸垹闄ょ殑宸ヨ壓璺嚎瀛愪俊鎭富閿� + * @return 缁撴灉 + */ + @Override + public int deleteBsRouteChildInfoByIds(Long[] ids) + { + return bsRouteChildInfoMapper.deleteBsRouteChildInfoByIds(ids); + } + + /** + * 鍒犻櫎宸ヨ壓璺嚎瀛愪俊鎭俊鎭� + * + * @param id 宸ヨ壓璺嚎瀛愪俊鎭富閿� + * @return 缁撴灉 + */ + @Override + public int deleteBsRouteChildInfoById(Long id) + { + return bsRouteChildInfoMapper.deleteBsRouteChildInfoById(id); + } +} diff --git a/billion-main/src/main/java/com/billion/main/bs/service/impl/BsRouteInfoServiceImpl.java b/billion-main/src/main/java/com/billion/main/bs/service/impl/BsRouteInfoServiceImpl.java new file mode 100644 index 0000000..295406b --- /dev/null +++ b/billion-main/src/main/java/com/billion/main/bs/service/impl/BsRouteInfoServiceImpl.java @@ -0,0 +1,105 @@ +package com.billion.main.bs.service.impl; + +import java.util.Date; +import java.util.List; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.billion.common.utils.DateUtils; +import com.billion.common.utils.SecurityUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.billion.main.bs.mapper.BsRouteInfoMapper; +import com.billion.main.bs.domain.BsRouteInfo; +import com.billion.main.bs.service.IBsRouteInfoService; + +import static org.apache.commons.lang3.SystemUtils.getUserName; + +/** + * 宸ヨ壓璺嚎Service涓氬姟灞傚鐞� + * + * @author Billion-Yi + * @date 2024-11-23 + */ +@Service +public class BsRouteInfoServiceImpl extends ServiceImpl<BsRouteInfoMapper, BsRouteInfo> implements IBsRouteInfoService +{ + @Autowired + private BsRouteInfoMapper bsRouteInfoMapper; + + /** + * 鏌ヨ宸ヨ壓璺嚎 + * + * @param id 宸ヨ壓璺嚎涓婚敭 + * @return 宸ヨ壓璺嚎 + */ + @Override + public BsRouteInfo selectBsRouteInfoById(Long id) + { + return bsRouteInfoMapper.selectBsRouteInfoById(id); + } + + /** + * 鏌ヨ宸ヨ壓璺嚎鍒楄〃 + * + * @param bsRouteInfo 宸ヨ壓璺嚎 + * @return 宸ヨ壓璺嚎 + */ + @Override + public List<BsRouteInfo> selectBsRouteInfoList(BsRouteInfo bsRouteInfo) + { + return bsRouteInfoMapper.selectBsRouteInfoList(bsRouteInfo); + } + + /** + * 鏂板宸ヨ壓璺嚎 + * + * @param bsRouteInfo 宸ヨ壓璺嚎 + * @return 缁撴灉 + */ + @Override + public int insertBsRouteInfo(BsRouteInfo bsRouteInfo) + { + bsRouteInfo.setCreateTime(DateUtils.getNowDate()); + bsRouteInfo.setCreateBy(getUserName()); + bsRouteInfo.setDataSource("MES"); + return bsRouteInfoMapper.insertBsRouteInfo(bsRouteInfo); + } + + /** + * 淇敼宸ヨ壓璺嚎 + * + * @param bsRouteInfo 宸ヨ壓璺嚎 + * @return 缁撴灉 + */ + @Override + public int updateBsRouteInfo(BsRouteInfo bsRouteInfo) + { + bsRouteInfo.setUpdateTime(DateUtils.getNowDate()); + bsRouteInfo.setUpdateBy(getUserName()); + return bsRouteInfoMapper.updateBsRouteInfo(bsRouteInfo); + } + + /** + * 鎵归噺鍒犻櫎宸ヨ壓璺嚎 + * + * @param ids 闇�瑕佸垹闄ょ殑宸ヨ壓璺嚎涓婚敭 + * @return 缁撴灉 + */ + @Override + public int deleteBsRouteInfoByIds(Long[] ids) + { + return bsRouteInfoMapper.deleteBsRouteInfoByIds(ids); + } + + /** + * 鍒犻櫎宸ヨ壓璺嚎淇℃伅 + * + * @param id 宸ヨ壓璺嚎涓婚敭 + * @return 缁撴灉 + */ + @Override + public int deleteBsRouteInfoById(Long id) + { + return bsRouteInfoMapper.deleteBsRouteInfoById(id); + } +} diff --git a/billion-main/src/main/java/com/billion/main/da/service/impl/DaParamCollectionServiceImpl.java b/billion-main/src/main/java/com/billion/main/da/service/impl/DaParamCollectionServiceImpl.java index 1c6ebae..cc17084 100644 --- a/billion-main/src/main/java/com/billion/main/da/service/impl/DaParamCollectionServiceImpl.java +++ b/billion-main/src/main/java/com/billion/main/da/service/impl/DaParamCollectionServiceImpl.java @@ -5,11 +5,14 @@ import cn.hutool.core.util.ObjectUtil; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.billion.common.utils.SecurityUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.billion.main.da.mapper.DaParamCollectionMapper; import com.billion.main.da.domain.DaParamCollection; import com.billion.main.da.service.IDaParamCollectionService; + +import static org.apache.commons.lang3.SystemUtils.getUserName; /** * 鍙傛暟閲囬泦Service涓氬姟灞傚鐞� @@ -61,6 +64,7 @@ public int insertDaParamCollection(DaParamCollection daParamCollection) { daParamCollection.setCollectTime(new Date()); + daParamCollection.setCreateBy(getUserName()); return daParamCollectionMapper.insertDaParamCollection(daParamCollection); } diff --git a/billion-main/src/main/resources/mapper/bs/BsRouteChildInfoMapper.xml b/billion-main/src/main/resources/mapper/bs/BsRouteChildInfoMapper.xml new file mode 100644 index 0000000..0fe21b5 --- /dev/null +++ b/billion-main/src/main/resources/mapper/bs/BsRouteChildInfoMapper.xml @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<!DOCTYPE mapper +PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" +"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> +<mapper namespace="com.billion.main.bs.mapper.BsRouteChildInfoMapper"> + + <resultMap type="BsRouteChildInfo" id="BsRouteChildInfoResult"> + <result property="id" column="id" /> + <result property="productCode" column="product_code" /> + <result property="productName" column="product_name" /> + <result property="locationCode" column="location_code" /> + <result property="locationName" column="location_name" /> + <result property="stepNo" column="step_no" /> + <result property="createBy" column="create_by" /> + <result property="createTime" column="create_time" /> + <result property="updateBy" column="update_by" /> + <result property="updateTime" column="update_time" /> + <result property="delFlag" column="del_flag" /> + <result property="routeCode" column="route_code" /> + </resultMap> + + <sql id="selectBsRouteChildInfoVo"> + select id, product_code, product_name, location_code, location_name, step_no, create_by, create_time, update_by, update_time, del_flag, route_code from bs_route_child_info + </sql> + + <select id="selectBsRouteChildInfoList" parameterType="BsRouteChildInfo" resultMap="BsRouteChildInfoResult"> + <include refid="selectBsRouteChildInfoVo"/> + <where> + <if test="productCode != null and productCode != ''"> and product_code like concat('%', #{productCode}, '%')</if> + <if test="productName != null and productName != ''"> and product_name like concat('%', #{productName}, '%')</if> + <if test="locationCode != null and locationCode != ''"> and location_code like concat('%', #{locationCode}, '%')</if> + <if test="locationName != null and locationName != ''"> and location_name like concat('%', #{locationName}, '%')</if> + <if test="routeCode != null and routeCode != ''"> and route_code = #{routeCode}</if> + </where> + </select> + + <select id="selectBsRouteChildInfoById" parameterType="Long" resultMap="BsRouteChildInfoResult"> + <include refid="selectBsRouteChildInfoVo"/> + where id = #{id} + </select> + + <insert id="insertBsRouteChildInfo" parameterType="BsRouteChildInfo"> + insert into bs_route_child_info + <trim prefix="(" suffix=")" suffixOverrides=","> + <if test="id != null">id,</if> + <if test="productCode != null and productCode != ''">product_code,</if> + <if test="productName != null">product_name,</if> + <if test="locationCode != null and locationCode != ''">location_code,</if> + <if test="locationName != null">location_name,</if> + <if test="stepNo != null">step_no,</if> + <if test="createBy != null">create_by,</if> + <if test="createTime != null">create_time,</if> + <if test="updateBy != null">update_by,</if> + <if test="updateTime != null">update_time,</if> + <if test="delFlag != null">del_flag,</if> + <if test="routeCode != null">route_code,</if> + </trim> + <trim prefix="values (" suffix=")" suffixOverrides=","> + <if test="id != null">#{id},</if> + <if test="productCode != null and productCode != ''">#{productCode},</if> + <if test="productName != null">#{productName},</if> + <if test="locationCode != null and locationCode != ''">#{locationCode},</if> + <if test="locationName != null">#{locationName},</if> + <if test="stepNo != null">#{stepNo},</if> + <if test="createBy != null">#{createBy},</if> + <if test="createTime != null">#{createTime},</if> + <if test="updateBy != null">#{updateBy},</if> + <if test="updateTime != null">#{updateTime},</if> + <if test="delFlag != null">#{delFlag},</if> + <if test="routeCode != null">#{routeCode},</if> + </trim> + </insert> + + <update id="updateBsRouteChildInfo" parameterType="BsRouteChildInfo"> + update bs_route_child_info + <trim prefix="SET" suffixOverrides=","> + <if test="productCode != null and productCode != ''">product_code = #{productCode},</if> + <if test="productName != null">product_name = #{productName},</if> + <if test="locationCode != null and locationCode != ''">location_code = #{locationCode},</if> + <if test="locationName != null">location_name = #{locationName},</if> + <if test="stepNo != null">step_no = #{stepNo},</if> + <if test="createBy != null">create_by = #{createBy},</if> + <if test="createTime != null">create_time = #{createTime},</if> + <if test="updateBy != null">update_by = #{updateBy},</if> + <if test="updateTime != null">update_time = #{updateTime},</if> + <if test="delFlag != null">del_flag = #{delFlag},</if> + <if test="routeCode != null">route_code = #{routeCode},</if> + </trim> + where id = #{id} + </update> + + <delete id="deleteBsRouteChildInfoById" parameterType="Long"> + delete from bs_route_child_info where id = #{id} + </delete> + + <delete id="deleteBsRouteChildInfoByIds" parameterType="String"> + delete from bs_route_child_info where id in + <foreach item="id" collection="array" open="(" separator="," close=")"> + #{id} + </foreach> + </delete> +</mapper> \ No newline at end of file diff --git a/billion-main/src/main/resources/mapper/bs/BsRouteInfoMapper.xml b/billion-main/src/main/resources/mapper/bs/BsRouteInfoMapper.xml new file mode 100644 index 0000000..44c0330 --- /dev/null +++ b/billion-main/src/main/resources/mapper/bs/BsRouteInfoMapper.xml @@ -0,0 +1,111 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<!DOCTYPE mapper +PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" +"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> +<mapper namespace="com.billion.main.bs.mapper.BsRouteInfoMapper"> + + <resultMap type="BsRouteInfo" id="BsRouteInfoResult"> + <result property="id" column="id" /> + <result property="routeCode" column="route_code" /> + <result property="routeName" column="route_name" /> + <result property="productCode" column="product_code" /> + <result property="productName" column="product_name" /> + <result property="version" column="version" /> + <result property="status" column="status" /> + <result property="dataSource" column="data_source" /> + <result property="remark" column="remark" /> + <result property="createBy" column="create_by" /> + <result property="createTime" column="create_time" /> + <result property="updateBy" column="update_by" /> + <result property="updateTime" column="update_time" /> + <result property="delFlag" column="del_flag" /> + </resultMap> + + <sql id="selectBsRouteInfoVo"> + select id, route_code, route_name, product_code, product_name, version, status, data_source, remark, create_by, create_time, update_by, update_time, del_flag from bs_route_info + </sql> + + <select id="selectBsRouteInfoList" parameterType="BsRouteInfo" resultMap="BsRouteInfoResult"> + <include refid="selectBsRouteInfoVo"/> + <where> + <if test="routeCode != null and routeCode != ''"> and route_code like concat('%', #{routeCode}, '%')</if> + <if test="routeName != null and routeName != ''"> and route_name like concat('%', #{routeName}, '%')</if> + <if test="productCode != null and productCode != ''"> and product_code like concat('%', #{productCode}, '%')</if> + <if test="productName != null and productName != ''"> and product_name like concat('%', #{productName}, '%')</if> + <if test="version != null and version != ''"> and version like concat('%', #{version}, '%')</if> + <if test="status != null and status != ''"> and status = #{status}</if> + </where> + </select> + + <select id="selectBsRouteInfoById" parameterType="Long" resultMap="BsRouteInfoResult"> + <include refid="selectBsRouteInfoVo"/> + where id = #{id} + </select> + + <insert id="insertBsRouteInfo" parameterType="BsRouteInfo"> + insert into bs_route_info + <trim prefix="(" suffix=")" suffixOverrides=","> + <if test="id != null">id,</if> + <if test="routeCode != null and routeCode != ''">route_code,</if> + <if test="routeName != null">route_name,</if> + <if test="productCode != null and productCode != ''">product_code,</if> + <if test="productName != null">product_name,</if> + <if test="version != null">version,</if> + <if test="status != null">status,</if> + <if test="dataSource != null">data_source,</if> + <if test="remark != null">remark,</if> + <if test="createBy != null">create_by,</if> + <if test="createTime != null">create_time,</if> + <if test="updateBy != null">update_by,</if> + <if test="updateTime != null">update_time,</if> + <if test="delFlag != null">del_flag,</if> + </trim> + <trim prefix="values (" suffix=")" suffixOverrides=","> + <if test="id != null">#{id},</if> + <if test="routeCode != null and routeCode != ''">#{routeCode},</if> + <if test="routeName != null">#{routeName},</if> + <if test="productCode != null and productCode != ''">#{productCode},</if> + <if test="productName != null">#{productName},</if> + <if test="version != null">#{version},</if> + <if test="status != null">#{status},</if> + <if test="dataSource != null">#{dataSource},</if> + <if test="remark != null">#{remark},</if> + <if test="createBy != null">#{createBy},</if> + <if test="createTime != null">#{createTime},</if> + <if test="updateBy != null">#{updateBy},</if> + <if test="updateTime != null">#{updateTime},</if> + <if test="delFlag != null">#{delFlag},</if> + </trim> + </insert> + + <update id="updateBsRouteInfo" parameterType="BsRouteInfo"> + update bs_route_info + <trim prefix="SET" suffixOverrides=","> + <if test="routeCode != null and routeCode != ''">route_code = #{routeCode},</if> + <if test="routeName != null">route_name = #{routeName},</if> + <if test="productCode != null and productCode != ''">product_code = #{productCode},</if> + <if test="productName != null">product_name = #{productName},</if> + <if test="version != null">version = #{version},</if> + <if test="status != null">status = #{status},</if> + <if test="dataSource != null">data_source = #{dataSource},</if> + <if test="remark != null">remark = #{remark},</if> + <if test="createBy != null">create_by = #{createBy},</if> + <if test="createTime != null">create_time = #{createTime},</if> + <if test="updateBy != null">update_by = #{updateBy},</if> + <if test="updateTime != null">update_time = #{updateTime},</if> + <if test="delFlag != null">del_flag = #{delFlag},</if> + </trim> + where id = #{id} + </update> + + <delete id="deleteBsRouteInfoById" parameterType="Long"> + delete from bs_route_info where id = #{id} + </delete> + + <delete id="deleteBsRouteInfoByIds" parameterType="String"> + delete from bs_route_info where id in + <foreach item="id" collection="array" open="(" separator="," close=")"> + #{id} + </foreach> + </delete> +</mapper> \ No newline at end of file diff --git a/billion-ui/src/api/main/bs/routeChildInfo.js b/billion-ui/src/api/main/bs/routeChildInfo.js new file mode 100644 index 0000000..d860156 --- /dev/null +++ b/billion-ui/src/api/main/bs/routeChildInfo.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 鏌ヨ宸ヨ壓璺嚎瀛愪俊鎭垪琛� +export function listRouteChildInfo(query) { + return request({ + url: '/bs/routeChildInfo/list', + method: 'get', + params: query + }) +} + +// 鏌ヨ宸ヨ壓璺嚎瀛愪俊鎭缁� +export function getRouteChildInfo(id) { + return request({ + url: '/bs/routeChildInfo/' + id, + method: 'get' + }) +} + +// 鏂板宸ヨ壓璺嚎瀛愪俊鎭� +export function addRouteChildInfo(data) { + return request({ + url: '/bs/routeChildInfo', + method: 'post', + data: data + }) +} + +// 淇敼宸ヨ壓璺嚎瀛愪俊鎭� +export function updateRouteChildInfo(data) { + return request({ + url: '/bs/routeChildInfo', + method: 'put', + data: data + }) +} + +// 鍒犻櫎宸ヨ壓璺嚎瀛愪俊鎭� +export function delRouteChildInfo(id) { + return request({ + url: '/bs/routeChildInfo/' + id, + method: 'delete' + }) +} diff --git a/billion-ui/src/api/main/bs/routeInfo.js b/billion-ui/src/api/main/bs/routeInfo.js new file mode 100644 index 0000000..78067e4 --- /dev/null +++ b/billion-ui/src/api/main/bs/routeInfo.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 鏌ヨ宸ヨ壓璺嚎鍒楄〃 +export function listRouteInfo(query) { + return request({ + url: '/bs/routeInfo/list', + method: 'get', + params: query + }) +} + +// 鏌ヨ宸ヨ壓璺嚎璇︾粏 +export function getRouteInfo(id) { + return request({ + url: '/bs/routeInfo/' + id, + method: 'get' + }) +} + +// 鏂板宸ヨ壓璺嚎 +export function addRouteInfo(data) { + return request({ + url: '/bs/routeInfo', + method: 'post', + data: data + }) +} + +// 淇敼宸ヨ壓璺嚎 +export function updateRouteInfo(data) { + return request({ + url: '/bs/routeInfo', + method: 'put', + data: data + }) +} + +// 鍒犻櫎宸ヨ壓璺嚎 +export function delRouteInfo(id) { + return request({ + url: '/bs/routeInfo/' + id, + method: 'delete' + }) +} diff --git a/billion-ui/src/router/index.js b/billion-ui/src/router/index.js index 71907b6..93cde3f 100644 --- a/billion-ui/src/router/index.js +++ b/billion-ui/src/router/index.js @@ -135,6 +135,20 @@ ] }, { + path: '/main/route-data', + component: Layout, + hidden: true, + permissions: ['bs:routeChildInfo:list'], + children: [ + { + path: 'index', + component: () => import('@/views/main/bs/routeChildInfo/index'), + name: 'Data', + meta: { title: '宸ヨ壓璺嚎璇︽儏', activeMenu: '/main/bs/routeChildInfo' } + } + ] + }, + { path: '/monitor/job-log', component: Layout, hidden: true, diff --git a/billion-ui/src/views/main/bs/routeChildInfo/index.vue b/billion-ui/src/views/main/bs/routeChildInfo/index.vue new file mode 100644 index 0000000..7d7741b --- /dev/null +++ b/billion-ui/src/views/main/bs/routeChildInfo/index.vue @@ -0,0 +1,354 @@ +<template> + <div class="app-container"> + <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> + <el-form-item label="宸ヤ綅缂栫爜" prop="locationCode"> + <el-input + v-model="queryParams.locationCode" + placeholder="璇疯緭鍏ュ伐浣嶇紪鐮�" + clearable + @keyup.enter.native="handleQuery" + /> + </el-form-item> + <el-form-item label="宸ヤ綅鍚嶇О" prop="locationName"> + <el-input + v-model="queryParams.locationName" + placeholder="璇疯緭鍏ュ伐浣嶅悕绉�" + clearable + @keyup.enter.native="handleQuery" + /> + </el-form-item> + <el-form-item style="float: right"> + <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">鎼滅储</el-button> + <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">閲嶇疆</el-button> + <el-button icon="el-icon-setting" size="mini" @click="toggleAdvancedSearch">楂樼骇鏌ヨ</el-button> + </el-form-item> + <transition name="fade"> + <div v-if="advancedSearchVisible" class="advanced-search"> + <el-form-item label="浜у搧缂栫爜" prop="productCode"> + <el-input + v-model="queryParams.productCode" + placeholder="璇疯緭鍏ヤ骇鍝佺紪鐮�" + clearable + @keyup.enter.native="handleQuery" + /> + </el-form-item> + <el-form-item label="浜у搧鍚嶇О" prop="productName"> + <el-input + v-model="queryParams.productName" + placeholder="璇疯緭鍏ヤ骇鍝佸悕绉�" + clearable + @keyup.enter.native="handleQuery" + /> + </el-form-item> + <el-form-item label="娴佺▼缂栫爜" prop="routeCode"> + <el-input + v-model="queryParams.routeCode" + placeholder="璇疯緭鍏ユ祦绋嬬紪鐮�" + clearable + @keyup.enter.native="handleQuery" + /> + </el-form-item> + </div> + </transition> + </el-form> + + <el-row :gutter="10" class="mb8"> + <el-col :span="1.5"> + <el-button + type="primary" + plain + icon="el-icon-plus" + size="mini" + @click="handleAdd" + v-hasPermi="['bs:routeChildInfo:add']" + >鏂板</el-button> + </el-col> + <el-col :span="1.5"> + <el-button + type="success" + plain + icon="el-icon-edit" + size="mini" + :disabled="single" + @click="handleUpdate" + v-hasPermi="['bs:routeChildInfo:edit']" + >淇敼</el-button> + </el-col> + <el-col :span="1.5"> + <el-button + type="danger" + plain + icon="el-icon-delete" + size="mini" + :disabled="multiple" + @click="handleDelete" + v-hasPermi="['bs:routeChildInfo:remove']" + >鍒犻櫎</el-button> + </el-col> + <el-col :span="1.5"> + <el-button + type="warning" + plain + icon="el-icon-download" + size="mini" + @click="handleExport" + v-hasPermi="['bs:routeChildInfo:export']" + >瀵煎嚭</el-button> + </el-col> + <el-col :span="1.5"> + <el-button + type="warning" + plain + icon="el-icon-close" + size="mini" + @click="handleClose" + >鍏抽棴</el-button> + </el-col> + </el-row> + <el-row> + <el-descriptions class="margin-top" :column="4" label-style="font-weight: bold" content-style="font-weight: bold"> + <el-descriptions-item label="娴佺▼缂栫爜">{{this.queryParams.routeCode}}</el-descriptions-item> + <el-descriptions-item label="娴佺▼鍚嶇О">{{this.routeInfo[0].routeName}}</el-descriptions-item> + <el-descriptions-item label="浜у搧缂栫爜">{{this.routeInfo[0].productCode}}</el-descriptions-item> + <el-descriptions-item label="浜у搧鍚嶇О">{{this.routeInfo[0].productName}}</el-descriptions-item> + </el-descriptions> + </el-row> + + <el-table border v-loading="loading" :data="routeChildInfoList" @selection-change="handleSelectionChange"> + <el-table-column type="selection" width="55" align="center" /> + <el-table-column show-overflow-tooltip="true" label="宸ヤ綅缂栫爜" align="center" prop="locationCode" /> + <el-table-column show-overflow-tooltip="true" label="宸ヤ綅鍚嶇О" align="center" prop="locationName" /> + <el-table-column show-overflow-tooltip="true" label="鍔犲伐椤哄簭" align="center" prop="stepNo" /> + <el-table-column show-overflow-tooltip="true" label="浜у搧缂栫爜" align="center" prop="productCode" /> + <el-table-column show-overflow-tooltip="true" label="浜у搧鍚嶇О" align="center" prop="productName" /> + <el-table-column show-overflow-tooltip="true" label="鍒涘缓鐢ㄦ埛" align="center" prop="createBy" /> + <el-table-column label="鍒涘缓鏃堕棿" align="center" prop="createTime" width="180"> + </el-table-column> + <el-table-column show-overflow-tooltip="true" label="鏇存敼鐢ㄦ埛" align="center" prop="updateBy" /> + <el-table-column label="鏇存敼鏃堕棿" align="center" prop="updateTime" width="180"> + </el-table-column> + <el-table-column show-overflow-tooltip="true" label="娴佺▼缂栫爜" align="center" prop="routeCode" /> + </el-table> + + <pagination + v-show="total>0" + :total="total" + :page.sync="queryParams.pageNum" + :limit.sync="queryParams.pageSize" + @pagination="getList" + /> + + <!-- 娣诲姞鎴栦慨鏀瑰伐鑹鸿矾绾垮瓙淇℃伅瀵硅瘽妗� --> + <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body> + <el-form ref="form" :model="form" :rules="rules" label-width="80px"> +<!-- <el-form-item label="涓婚敭id" prop="id">--> +<!-- <el-input v-model="form.id" placeholder="璇疯緭鍏ヤ富閿甶d" />--> +<!-- </el-form-item>--> + <el-form-item label="娴佺▼缂栫爜" prop="routeCode"> + <el-input :disabled="true" v-model="form.routeCode" placeholder="璇疯緭鍏ユ祦绋嬬紪鐮�" /> + </el-form-item> + <el-form-item label="浜у搧缂栫爜" prop="productCode"> + <el-input :disabled="true" v-model="form.productCode" placeholder="璇疯緭鍏ヤ骇鍝佺紪鐮�" /> + </el-form-item> + <el-form-item label="浜у搧鍚嶇О" prop="productName"> + <el-input :disabled="true" v-model="form.productName" placeholder="璇疯緭鍏ヤ骇鍝佸悕绉�" /> + </el-form-item> + <el-form-item label="宸ヤ綅缂栫爜" prop="locationCode"> + <el-input v-model="form.locationCode" placeholder="璇疯緭鍏ュ伐浣嶇紪鐮�" /> + </el-form-item> + <el-form-item label="宸ヤ綅鍚嶇О" prop="locationName"> + <el-input v-model="form.locationName" placeholder="璇疯緭鍏ュ伐浣嶅悕绉�" /> + </el-form-item> + <el-form-item label="鍔犲伐椤哄簭" prop="stepNo"> + <el-input v-model="form.stepNo" placeholder="璇疯緭鍏ュ姞宸ラ『搴�" /> + </el-form-item> + </el-form> + <div slot="footer" class="dialog-footer"> + <el-button type="primary" @click="submitForm">纭� 瀹�</el-button> + <el-button @click="cancel">鍙� 娑�</el-button> + </div> + </el-dialog> + </div> +</template> + +<script> +import { listRouteChildInfo, getRouteChildInfo, delRouteChildInfo, addRouteChildInfo, updateRouteChildInfo } from "@/api/main/bs/routeChildInfo"; +import {listRouteInfo} from "@/api/main/bs/routeInfo"; + +export default { + name: "RouteChildInfo", + data() { + return { + advancedSearchVisible: false, + // 閬僵灞� + loading: true, + // 閫変腑鏁扮粍 + ids: [], + // 闈炲崟涓鐢� + single: true, + // 闈炲涓鐢� + multiple: true, + // 鏄剧ず鎼滅储鏉′欢 + showSearch: true, + // 鎬绘潯鏁� + total: 0, + // 宸ヨ壓璺嚎瀛愪俊鎭〃鏍兼暟鎹� + routeChildInfoList: [], + // 寮瑰嚭灞傛爣棰� + title: "", + // 鏄惁鏄剧ず寮瑰嚭灞� + open: false, + // 鏌ヨ鍙傛暟 + queryParams: { + pageNum: 1, + pageSize: 10, + productCode: null, + productName: null, + locationCode: null, + locationName: null, + routeCode: null + }, + // 琛ㄥ崟鍙傛暟 + form: { + routeCode: "12323", + }, + // 琛ㄥ崟鏍¢獙 + rules: { + id: [ + { required: true, message: "涓婚敭id涓嶈兘涓虹┖", trigger: "blur" } + ], + locationCode: [ + { required: true, message: "宸ヤ綅缂栫爜涓嶈兘涓虹┖", trigger: "blur" } + ], + }, + //鐖堕〉闈俊鎭� + routeInfo: { + } + }; + }, + created() { + let routeCode = this.$route.query.routeCode; + this.queryParams.routeCode = routeCode; + this.headerInformation(); + this.getList(); + console.log(this.routeInfo) + }, + methods: { + /** 宸ヨ壓娴佺▼琛ㄥご淇℃伅 */ + headerInformation() { + listRouteInfo(this.queryParams).then(response => { + this.routeInfo = response.rows; + }); + }, + toggleAdvancedSearch() { + this.advancedSearchVisible = !this.advancedSearchVisible; + }, + /** 杩斿洖鎸夐挳鎿嶄綔 */ + handleClose() { + const obj = { path: "/main/bs/routeInfo" }; + this.$tab.closeOpenPage(obj); + }, + /** 鏌ヨ宸ヨ壓璺嚎瀛愪俊鎭垪琛� */ + getList() { + this.loading = true; + listRouteChildInfo(this.queryParams).then(response => { + this.routeChildInfoList = response.rows; + this.total = response.total; + this.loading = false; + }); + }, + // 鍙栨秷鎸夐挳 + cancel() { + this.open = false; + this.reset(); + }, + // 琛ㄥ崟閲嶇疆 + reset() { + this.form = { + id: null, + productCode: this.routeInfo[0].productCode, + productName: this.routeInfo[0].productName, + locationCode: null, + locationName: null, + stepNo: null, + createBy: null, + createTime: null, + updateBy: null, + updateTime: null, + delFlag: null, + routeCode: this.queryParams.routeCode + }; + this.resetForm("form"); + }, + /** 鎼滅储鎸夐挳鎿嶄綔 */ + handleQuery() { + this.queryParams.pageNum = 1; + this.getList(); + }, + /** 閲嶇疆鎸夐挳鎿嶄綔 */ + resetQuery() { + this.resetForm("queryForm"); + this.handleQuery(); + }, + // 澶氶�夋閫変腑鏁版嵁 + handleSelectionChange(selection) { + this.ids = selection.map(item => item.id) + this.single = selection.length!==1 + this.multiple = !selection.length + }, + /** 鏂板鎸夐挳鎿嶄綔 */ + handleAdd() { + console.log(this.routeInfo) + this.reset(); + this.open = true; + this.title = "娣诲姞宸ヨ壓璺嚎瀛愪俊鎭�"; + }, + /** 淇敼鎸夐挳鎿嶄綔 */ + handleUpdate(row) { + this.reset(); + const id = row.id || this.ids + getRouteChildInfo(id).then(response => { + this.form = response.data; + this.open = true; + this.title = "淇敼宸ヨ壓璺嚎瀛愪俊鎭�"; + }); + }, + /** 鎻愪氦鎸夐挳 */ + submitForm() { + this.$refs["form"].validate(valid => { + if (valid) { + if (this.form.id != null) { + updateRouteChildInfo(this.form).then(response => { + this.$modal.msgSuccess("淇敼鎴愬姛"); + this.open = false; + this.getList(); + }); + } else { + addRouteChildInfo(this.form).then(response => { + this.$modal.msgSuccess("鏂板鎴愬姛"); + this.open = false; + this.getList(); + }); + } + } + }); + }, + /** 鍒犻櫎鎸夐挳鎿嶄綔 */ + handleDelete(row) { + const ids = row.id || this.ids; + this.$modal.confirm('鏄惁纭鍒犻櫎').then(function() { + return delRouteChildInfo(ids); + }).then(() => { + this.getList(); + this.$modal.msgSuccess("鍒犻櫎鎴愬姛"); + }).catch(() => {}); + }, + /** 瀵煎嚭鎸夐挳鎿嶄綔 */ + handleExport() { + this.download('bs/routeChildInfo/export', { + ...this.queryParams + }, `routeChildInfo_${new Date().getTime()}.xlsx`) + } + } +}; +</script> diff --git a/billion-ui/src/views/main/bs/routeInfo/index.vue b/billion-ui/src/views/main/bs/routeInfo/index.vue new file mode 100644 index 0000000..c310d30 --- /dev/null +++ b/billion-ui/src/views/main/bs/routeInfo/index.vue @@ -0,0 +1,357 @@ +<template> + <div class="app-container"> + <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> + <el-form-item label="娴佺▼缂栫爜" prop="routeCode"> + <el-input + v-model="queryParams.routeCode" + placeholder="璇疯緭鍏ユ祦绋嬬紪鐮�" + clearable + @keyup.enter.native="handleQuery" + /> + </el-form-item> + <el-form-item label="浜у搧缂栫爜" prop="productCode"> + <el-input + v-model="queryParams.productCode" + placeholder="璇疯緭鍏ヤ骇鍝佺紪鐮�" + clearable + @keyup.enter.native="handleQuery" + /> + </el-form-item> + <el-form-item style="float: right"> + <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">鎼滅储</el-button> + <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">閲嶇疆</el-button> + <el-button icon="el-icon-setting" size="mini" @click="toggleAdvancedSearch">楂樼骇鏌ヨ</el-button> + </el-form-item> + <transition name="fade"> + <div v-if="advancedSearchVisible" class="advanced-search"> + <el-form-item label="浜у搧鍚嶇О" prop="productName"> + <el-input + v-model="queryParams.productName" + placeholder="璇疯緭鍏ヤ骇鍝佸悕绉�" + clearable + @keyup.enter.native="handleQuery" + /> + </el-form-item> + <el-form-item label="娴佺▼鍚嶇О" prop="routeName"> + <el-input + v-model="queryParams.routeName" + placeholder="璇疯緭鍏ユ祦绋嬪悕绉�" + clearable + @keyup.enter.native="handleQuery" + /> + </el-form-item> + <el-form-item label="鐗堟湰" prop="version"> + <el-input + v-model="queryParams.version" + placeholder="璇疯緭鍏ョ増鏈�" + clearable + @keyup.enter.native="handleQuery" + /> + </el-form-item> + <el-form-item label="鐘舵��" prop="status"> + <el-select v-model="queryParams.status" placeholder="璇烽�夋嫨鐘舵��" clearable> + <el-option + v-for="dict in dict.type.sys_normal_disable" + :key="dict.value" + :label="dict.label" + :value="dict.value" + /> + </el-select> + </el-form-item> + </div> + </transition> + </el-form> + + <el-row :gutter="10" class="mb8"> + <el-col :span="1.5"> + <el-button + type="primary" + plain + icon="el-icon-plus" + size="mini" + @click="handleAdd" + v-hasPermi="['bs:routeInfo:add']" + >鏂板</el-button> + </el-col> + <el-col :span="1.5"> + <el-button + type="success" + plain + icon="el-icon-edit" + size="mini" + :disabled="single" + @click="handleUpdate" + v-hasPermi="['bs:routeInfo:edit']" + >淇敼</el-button> + </el-col> + <el-col :span="1.5"> + <el-button + type="danger" + plain + icon="el-icon-delete" + size="mini" + :disabled="multiple" + @click="handleDelete" + v-hasPermi="['bs:routeInfo:remove']" + >鍒犻櫎</el-button> + </el-col> + <el-col :span="1.5"> + <el-button + type="warning" + plain + icon="el-icon-download" + size="mini" + @click="handleExport" + v-hasPermi="['bs:routeInfo:export']" + >瀵煎嚭</el-button> + </el-col> + </el-row> + + <el-table border v-loading="loading" :data="routeInfoList" @selection-change="handleSelectionChange"> + <el-table-column type="selection" width="55" align="center" /> +<!-- <el-table-column show-overflow-tooltip="true" label="娴佺▼缂栫爜" align="center" prop="routeCode" />--> + <el-table-column label="娴佺▼缂栫爜" align="center" :show-overflow-tooltip="true"> + <template slot-scope="scope"> + <router-link :to="{path: '/main/route-data/index/', query: {routeCode: scope.row.routeCode} }" class="link-type"> + <span>{{ scope.row.routeCode }}</span> + </router-link> + </template> + </el-table-column> + <el-table-column show-overflow-tooltip="true" label="娴佺▼鍚嶇О" align="center" prop="routeName" /> + <el-table-column show-overflow-tooltip="true" label="浜у搧缂栫爜" align="center" prop="productCode" /> + <el-table-column show-overflow-tooltip="true" label="浜у搧鍚嶇О" align="center" prop="productName" /> + <el-table-column show-overflow-tooltip="true" label="鐗堟湰" align="center" prop="version" /> + <el-table-column label="鐘舵��" align="center" prop="status"> + <template slot-scope="scope"> + <dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status"/> + </template> + </el-table-column> + <el-table-column show-overflow-tooltip="true" label="鏁版嵁鏉ユ簮" align="center" prop="dataSource" /> + <el-table-column show-overflow-tooltip="true" label="澶囨敞" align="center" prop="remark" /> + <el-table-column show-overflow-tooltip="true" label="鍒涘缓鐢ㄦ埛" align="center" prop="createBy" /> + <el-table-column label="鍒涘缓鏃堕棿" align="center" prop="createTime" width="180"> + </el-table-column> + <el-table-column show-overflow-tooltip="true" label="鏇存敼鐢ㄦ埛" align="center" prop="updateBy" /> + <el-table-column label="鏇存敼鏃堕棿" align="center" prop="updateTime" width="180"> + </el-table-column> + </el-table> + + <pagination + v-show="total>0" + :total="total" + :page.sync="queryParams.pageNum" + :limit.sync="queryParams.pageSize" + @pagination="getList" + /> + + <!-- 娣诲姞鎴栦慨鏀瑰伐鑹鸿矾绾垮璇濇 --> + <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body> + <el-form ref="form" :model="form" :rules="rules" label-width="80px"> +<!-- <el-form-item label="涓婚敭id" prop="id">--> +<!-- <el-input v-model="form.id" placeholder="璇疯緭鍏ヤ富閿甶d" />--> +<!-- </el-form-item>--> + <el-form-item label="娴佺▼缂栫爜" prop="routeCode"> + <el-input v-model="form.routeCode" placeholder="璇疯緭鍏ユ祦绋嬬紪鐮�" /> + </el-form-item> + <el-form-item label="娴佺▼鍚嶇О" prop="routeName"> + <el-input v-model="form.routeName" placeholder="璇疯緭鍏ユ祦绋嬪悕绉�" /> + </el-form-item> + <el-form-item label="浜у搧缂栫爜" prop="productCode"> + <el-input v-model="form.productCode" placeholder="璇疯緭鍏ヤ骇鍝佺紪鐮�" /> + </el-form-item> + <el-form-item label="浜у搧鍚嶇О" prop="productName"> + <el-input v-model="form.productName" placeholder="璇疯緭鍏ヤ骇鍝佸悕绉�" /> + </el-form-item> + <el-form-item label="鐗堟湰" prop="version"> + <el-input v-model="form.version" placeholder="璇疯緭鍏ョ増鏈�" /> + </el-form-item> + <el-form-item label="鐘舵��" prop="status"> + <el-radio-group v-model="form.status"> + <el-radio + v-for="dict in dict.type.sys_normal_disable" + :key="dict.value" + :label="dict.value" + >{{dict.label}}</el-radio> + </el-radio-group> + </el-form-item> +<!-- <el-form-item label="鏁版嵁鏉ユ簮" prop="dataSource">--> +<!-- <el-input v-model="form.dataSource" placeholder="璇疯緭鍏ユ暟鎹潵婧�" />--> +<!-- </el-form-item>--> + <el-form-item label="澶囨敞" prop="remark"> + <el-input v-model="form.remark" placeholder="璇疯緭鍏ュ娉�" /> + </el-form-item> + </el-form> + <div slot="footer" class="dialog-footer"> + <el-button type="primary" @click="submitForm">纭� 瀹�</el-button> + <el-button @click="cancel">鍙� 娑�</el-button> + </div> + </el-dialog> + </div> +</template> + +<script> +import { listRouteInfo, getRouteInfo, delRouteInfo, addRouteInfo, updateRouteInfo } from "@/api/main/bs/routeInfo"; + +export default { + name: "RouteInfo", + dicts: ['sys_normal_disable'], + data() { + return { + advancedSearchVisible: false, + // 閬僵灞� + loading: true, + // 閫変腑鏁扮粍 + ids: [], + // 闈炲崟涓鐢� + single: true, + // 闈炲涓鐢� + multiple: true, + // 鏄剧ず鎼滅储鏉′欢 + showSearch: true, + // 鎬绘潯鏁� + total: 0, + // 宸ヨ壓璺嚎琛ㄦ牸鏁版嵁 + routeInfoList: [], + // 寮瑰嚭灞傛爣棰� + title: "", + // 鏄惁鏄剧ず寮瑰嚭灞� + open: false, + // 鏌ヨ鍙傛暟 + queryParams: { + pageNum: 1, + pageSize: 10, + routeCode: null, + routeName: null, + productCode: null, + productName: null, + version: null, + status: null, + }, + // 琛ㄥ崟鍙傛暟 + form: {}, + // 琛ㄥ崟鏍¢獙 + rules: { + id: [ + { required: true, message: "涓婚敭id涓嶈兘涓虹┖", trigger: "blur" } + ], + routeCode: [ + { required: true, message: "娴佺▼缂栫爜涓嶈兘涓虹┖", trigger: "blur" } + ], + productCode: [ + { required: true, message: "浜у搧缂栫爜涓嶈兘涓虹┖", trigger: "blur" } + ], + } + }; + }, + created() { + this.getList(); + }, + methods: { + toggleAdvancedSearch() { + this.advancedSearchVisible = !this.advancedSearchVisible; + }, + /** 鏌ヨ宸ヨ壓璺嚎鍒楄〃 */ + getList() { + this.loading = true; + listRouteInfo(this.queryParams).then(response => { + this.routeInfoList = response.rows; + this.total = response.total; + this.loading = false; + }); + }, + // 鍙栨秷鎸夐挳 + cancel() { + this.open = false; + this.reset(); + }, + // 琛ㄥ崟閲嶇疆 + reset() { + this.form = { + id: null, + routeCode: null, + routeName: null, + productCode: null, + productName: null, + version: null, + status: "0", + dataSource: null, + remark: null, + createBy: null, + createTime: null, + updateBy: null, + updateTime: null, + delFlag: null + }; + this.resetForm("form"); + }, + /** 鎼滅储鎸夐挳鎿嶄綔 */ + handleQuery() { + this.queryParams.pageNum = 1; + this.getList(); + }, + /** 閲嶇疆鎸夐挳鎿嶄綔 */ + resetQuery() { + this.resetForm("queryForm"); + this.handleQuery(); + }, + // 澶氶�夋閫変腑鏁版嵁 + handleSelectionChange(selection) { + this.ids = selection.map(item => item.id) + this.single = selection.length!==1 + this.multiple = !selection.length + }, + /** 鏂板鎸夐挳鎿嶄綔 */ + handleAdd() { + this.reset(); + this.open = true; + this.title = "娣诲姞宸ヨ壓璺嚎"; + }, + /** 淇敼鎸夐挳鎿嶄綔 */ + handleUpdate(row) { + this.reset(); + const id = row.id || this.ids + getRouteInfo(id).then(response => { + this.form = response.data; + this.open = true; + this.title = "淇敼宸ヨ壓璺嚎"; + }); + }, + /** 鎻愪氦鎸夐挳 */ + submitForm() { + this.$refs["form"].validate(valid => { + if (valid) { + if (this.form.id != null) { + updateRouteInfo(this.form).then(response => { + this.$modal.msgSuccess("淇敼鎴愬姛"); + this.open = false; + this.getList(); + }); + } else { + addRouteInfo(this.form).then(response => { + this.$modal.msgSuccess("鏂板鎴愬姛"); + this.open = false; + this.getList(); + }); + } + } + }); + }, + /** 鍒犻櫎鎸夐挳鎿嶄綔 */ + handleDelete(row) { + const ids = row.id || this.ids; + this.$modal.confirm('鏄惁纭鍒犻櫎').then(function() { + return delRouteInfo(ids); + }).then(() => { + this.getList(); + this.$modal.msgSuccess("鍒犻櫎鎴愬姛"); + }).catch(() => {}); + }, + /** 瀵煎嚭鎸夐挳鎿嶄綔 */ + handleExport() { + this.download('bs/routeInfo/export', { + ...this.queryParams + }, `routeInfo_${new Date().getTime()}.xlsx`) + } + } +}; +</script> -- Gitblit v1.9.3