Pre Merge pull request !451 from pisces_lzx/info
This commit is contained in:
commit
372f4e14ca
8
pom.xml
8
pom.xml
@ -199,6 +199,13 @@
|
||||
<version>${ruoyi.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 信息模块-->
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-info</artifactId>
|
||||
<version>${ruoyi.version}</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
@ -209,6 +216,7 @@
|
||||
<module>ruoyi-quartz</module>
|
||||
<module>ruoyi-generator</module>
|
||||
<module>ruoyi-common</module>
|
||||
<module>ruoyi-info</module>
|
||||
</modules>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
|
108
ruoyi-admin/src/main/java/com/ruoyi/web/controller/info/TradeInfoController.java
Executable file
108
ruoyi-admin/src/main/java/com/ruoyi/web/controller/info/TradeInfoController.java
Executable file
@ -0,0 +1,108 @@
|
||||
package com.ruoyi.web.controller.info;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
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.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.info.domain.TradeInfo;
|
||||
import com.ruoyi.info.service.ITradeInfoService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 交易信息Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-03-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/info/trade")
|
||||
public class TradeInfoController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private ITradeInfoService tradeInfoService;
|
||||
|
||||
/**
|
||||
* 查询交易信息列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('info:trade:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(TradeInfo tradeInfo)
|
||||
{
|
||||
startPage();
|
||||
List<TradeInfo> list = tradeInfoService.selectTradeInfoList(tradeInfo);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出交易信息列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('info:trade:export')")
|
||||
@Log(title = "交易信息", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, TradeInfo tradeInfo)
|
||||
{
|
||||
List<TradeInfo> list = tradeInfoService.selectTradeInfoList(tradeInfo);
|
||||
ExcelUtil<TradeInfo> util = new ExcelUtil<TradeInfo>(TradeInfo.class);
|
||||
util.exportExcel(response, list, "交易信息数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取交易信息详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('info:trade:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return AjaxResult.success(tradeInfoService.selectTradeInfoById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增交易信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('info:trade:add')")
|
||||
@Log(title = "交易信息", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody TradeInfo tradeInfo)
|
||||
{
|
||||
String nickName = getLoginUser().getUser().getNickName();
|
||||
tradeInfo.setOperatorName(nickName);
|
||||
return toAjax(tradeInfoService.insertTradeInfo(tradeInfo));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改交易信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('info:trade:edit')")
|
||||
@Log(title = "交易信息", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody TradeInfo tradeInfo)
|
||||
{
|
||||
return toAjax(tradeInfoService.updateTradeInfo(tradeInfo));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除交易信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('info:trade:remove')")
|
||||
@Log(title = "交易信息", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(tradeInfoService.deleteTradeInfoByIds(ids));
|
||||
}
|
||||
}
|
@ -6,9 +6,9 @@ spring:
|
||||
druid:
|
||||
# 主库数据源
|
||||
master:
|
||||
url: jdbc:mysql://localhost:3306/ry-vue?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
|
||||
url: jdbc:mysql://39.98.114.216:3306/ry_dev?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
|
||||
username: root
|
||||
password: password
|
||||
password: rootroot
|
||||
# 从库数据源
|
||||
slave:
|
||||
# 从数据源开关/默认关闭
|
||||
|
@ -59,6 +59,11 @@
|
||||
<artifactId>ruoyi-system</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-info</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
</project>
|
25
ruoyi-info/pom.xml
Normal file
25
ruoyi-info/pom.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<artifactId>ruoyi</artifactId>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<version>3.8.1</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>ruoyi-info</artifactId>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<!-- 通用工具-->
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-common</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
|
||||
</project>
|
252
ruoyi-info/src/main/java/com/ruoyi/info/domain/TradeInfo.java
Executable file
252
ruoyi-info/src/main/java/com/ruoyi/info/domain/TradeInfo.java
Executable file
@ -0,0 +1,252 @@
|
||||
package com.ruoyi.info.domain;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 交易信息对象 trade_info
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-03-10
|
||||
*/
|
||||
public class TradeInfo extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** $column.columnComment */
|
||||
private Long id;
|
||||
|
||||
/** 交易编号 */
|
||||
@Excel(name = "交易编号")
|
||||
private String tradeNo;
|
||||
|
||||
/** 操作人名称 */
|
||||
@Excel(name = "操作人名称")
|
||||
private String operatorName;
|
||||
|
||||
/** 群编号 */
|
||||
@Excel(name = "群编号")
|
||||
private String groupNo;
|
||||
|
||||
/** 卡类型 */
|
||||
@Excel(name = "卡类型")
|
||||
private String cardType;
|
||||
|
||||
/** 币种 */
|
||||
@Excel(name = "币种")
|
||||
private String currencyType;
|
||||
|
||||
/** 卡面值 */
|
||||
@Excel(name = "卡面值")
|
||||
private Long cardValue;
|
||||
|
||||
/** 收卡汇率 */
|
||||
@Excel(name = "收卡汇率")
|
||||
private BigDecimal buyCardExchangeRate;
|
||||
|
||||
/** 收卡成本 */
|
||||
@Excel(name = "收卡成本")
|
||||
private BigDecimal buyCost;
|
||||
|
||||
/** 奈拉值 */
|
||||
@Excel(name = "奈拉值")
|
||||
private Long nailaValue;
|
||||
|
||||
/** 代码 */
|
||||
@Excel(name = "代码")
|
||||
private String code;
|
||||
|
||||
/** 对接群 */
|
||||
@Excel(name = "对接群")
|
||||
private String commGroup;
|
||||
|
||||
/** 售出价格 */
|
||||
@Excel(name = "售出价格")
|
||||
private BigDecimal salePrice;
|
||||
|
||||
/** 利润 */
|
||||
@Excel(name = "利润")
|
||||
private BigDecimal profit;
|
||||
|
||||
/** 银行账号 */
|
||||
@Excel(name = "银行账号")
|
||||
private String bankAccount;
|
||||
|
||||
/** 支付状态 */
|
||||
@Excel(name = "支付状态")
|
||||
private String payStatus;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setTradeNo(String tradeNo)
|
||||
{
|
||||
this.tradeNo = tradeNo;
|
||||
}
|
||||
|
||||
public String getTradeNo()
|
||||
{
|
||||
return tradeNo;
|
||||
}
|
||||
public void setOperatorName(String operatorName)
|
||||
{
|
||||
this.operatorName = operatorName;
|
||||
}
|
||||
|
||||
public String getOperatorName()
|
||||
{
|
||||
return operatorName;
|
||||
}
|
||||
public void setGroupNo(String groupNo)
|
||||
{
|
||||
this.groupNo = groupNo;
|
||||
}
|
||||
|
||||
public String getGroupNo()
|
||||
{
|
||||
return groupNo;
|
||||
}
|
||||
public void setCardType(String cardType)
|
||||
{
|
||||
this.cardType = cardType;
|
||||
}
|
||||
|
||||
public String getCardType()
|
||||
{
|
||||
return cardType;
|
||||
}
|
||||
public void setCurrencyType(String currencyType)
|
||||
{
|
||||
this.currencyType = currencyType;
|
||||
}
|
||||
|
||||
public String getCurrencyType()
|
||||
{
|
||||
return currencyType;
|
||||
}
|
||||
public void setCardValue(Long cardValue)
|
||||
{
|
||||
this.cardValue = cardValue;
|
||||
}
|
||||
|
||||
public Long getCardValue()
|
||||
{
|
||||
return cardValue;
|
||||
}
|
||||
public void setBuyCardExchangeRate(BigDecimal buyCardExchangeRate)
|
||||
{
|
||||
this.buyCardExchangeRate = buyCardExchangeRate;
|
||||
}
|
||||
|
||||
public BigDecimal getBuyCardExchangeRate()
|
||||
{
|
||||
return buyCardExchangeRate;
|
||||
}
|
||||
public void setBuyCost(BigDecimal buyCost)
|
||||
{
|
||||
this.buyCost = buyCost;
|
||||
}
|
||||
|
||||
public BigDecimal getBuyCost()
|
||||
{
|
||||
return buyCost;
|
||||
}
|
||||
public void setNailaValue(Long nailaValue)
|
||||
{
|
||||
this.nailaValue = nailaValue;
|
||||
}
|
||||
|
||||
public Long getNailaValue()
|
||||
{
|
||||
return nailaValue;
|
||||
}
|
||||
public void setCode(String code)
|
||||
{
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getCode()
|
||||
{
|
||||
return code;
|
||||
}
|
||||
public void setCommGroup(String commGroup)
|
||||
{
|
||||
this.commGroup = commGroup;
|
||||
}
|
||||
|
||||
public String getCommGroup()
|
||||
{
|
||||
return commGroup;
|
||||
}
|
||||
public void setSalePrice(BigDecimal salePrice)
|
||||
{
|
||||
this.salePrice = salePrice;
|
||||
}
|
||||
|
||||
public BigDecimal getSalePrice()
|
||||
{
|
||||
return salePrice;
|
||||
}
|
||||
public void setProfit(BigDecimal profit)
|
||||
{
|
||||
this.profit = profit;
|
||||
}
|
||||
|
||||
public BigDecimal getProfit()
|
||||
{
|
||||
return profit;
|
||||
}
|
||||
public void setBankAccount(String bankAccount)
|
||||
{
|
||||
this.bankAccount = bankAccount;
|
||||
}
|
||||
|
||||
public String getBankAccount()
|
||||
{
|
||||
return bankAccount;
|
||||
}
|
||||
public void setPayStatus(String payStatus)
|
||||
{
|
||||
this.payStatus = payStatus;
|
||||
}
|
||||
|
||||
public String getPayStatus()
|
||||
{
|
||||
return payStatus;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("tradeNo", getTradeNo())
|
||||
.append("operatorName", getOperatorName())
|
||||
.append("groupNo", getGroupNo())
|
||||
.append("cardType", getCardType())
|
||||
.append("currencyType", getCurrencyType())
|
||||
.append("cardValue", getCardValue())
|
||||
.append("buyCardExchangeRate", getBuyCardExchangeRate())
|
||||
.append("buyCost", getBuyCost())
|
||||
.append("nailaValue", getNailaValue())
|
||||
.append("code", getCode())
|
||||
.append("commGroup", getCommGroup())
|
||||
.append("salePrice", getSalePrice())
|
||||
.append("profit", getProfit())
|
||||
.append("bankAccount", getBankAccount())
|
||||
.append("payStatus", getPayStatus())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
61
ruoyi-info/src/main/java/com/ruoyi/info/mapper/TradeInfoMapper.java
Executable file
61
ruoyi-info/src/main/java/com/ruoyi/info/mapper/TradeInfoMapper.java
Executable file
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.info.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.info.domain.TradeInfo;
|
||||
|
||||
/**
|
||||
* 交易信息Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-03-10
|
||||
*/
|
||||
public interface TradeInfoMapper
|
||||
{
|
||||
/**
|
||||
* 查询交易信息
|
||||
*
|
||||
* @param id 交易信息主键
|
||||
* @return 交易信息
|
||||
*/
|
||||
public TradeInfo selectTradeInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 查询交易信息列表
|
||||
*
|
||||
* @param tradeInfo 交易信息
|
||||
* @return 交易信息集合
|
||||
*/
|
||||
public List<TradeInfo> selectTradeInfoList(TradeInfo tradeInfo);
|
||||
|
||||
/**
|
||||
* 新增交易信息
|
||||
*
|
||||
* @param tradeInfo 交易信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTradeInfo(TradeInfo tradeInfo);
|
||||
|
||||
/**
|
||||
* 修改交易信息
|
||||
*
|
||||
* @param tradeInfo 交易信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTradeInfo(TradeInfo tradeInfo);
|
||||
|
||||
/**
|
||||
* 删除交易信息
|
||||
*
|
||||
* @param id 交易信息主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTradeInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除交易信息
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTradeInfoByIds(Long[] ids);
|
||||
}
|
61
ruoyi-info/src/main/java/com/ruoyi/info/service/ITradeInfoService.java
Executable file
61
ruoyi-info/src/main/java/com/ruoyi/info/service/ITradeInfoService.java
Executable file
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.info.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.info.domain.TradeInfo;
|
||||
|
||||
/**
|
||||
* 交易信息Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-03-10
|
||||
*/
|
||||
public interface ITradeInfoService
|
||||
{
|
||||
/**
|
||||
* 查询交易信息
|
||||
*
|
||||
* @param id 交易信息主键
|
||||
* @return 交易信息
|
||||
*/
|
||||
public TradeInfo selectTradeInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 查询交易信息列表
|
||||
*
|
||||
* @param tradeInfo 交易信息
|
||||
* @return 交易信息集合
|
||||
*/
|
||||
public List<TradeInfo> selectTradeInfoList(TradeInfo tradeInfo);
|
||||
|
||||
/**
|
||||
* 新增交易信息
|
||||
*
|
||||
* @param tradeInfo 交易信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertTradeInfo(TradeInfo tradeInfo);
|
||||
|
||||
/**
|
||||
* 修改交易信息
|
||||
*
|
||||
* @param tradeInfo 交易信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateTradeInfo(TradeInfo tradeInfo);
|
||||
|
||||
/**
|
||||
* 批量删除交易信息
|
||||
*
|
||||
* @param ids 需要删除的交易信息主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTradeInfoByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除交易信息信息
|
||||
*
|
||||
* @param id 交易信息主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteTradeInfoById(Long id);
|
||||
}
|
101
ruoyi-info/src/main/java/com/ruoyi/info/service/impl/TradeInfoServiceImpl.java
Executable file
101
ruoyi-info/src/main/java/com/ruoyi/info/service/impl/TradeInfoServiceImpl.java
Executable file
@ -0,0 +1,101 @@
|
||||
package com.ruoyi.info.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.common.utils.DateUtils;
|
||||
import com.ruoyi.info.util.GenerateNoUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.info.mapper.TradeInfoMapper;
|
||||
import com.ruoyi.info.domain.TradeInfo;
|
||||
import com.ruoyi.info.service.ITradeInfoService;
|
||||
|
||||
/**
|
||||
* 交易信息Service业务层处理
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-03-10
|
||||
*/
|
||||
@Service
|
||||
public class TradeInfoServiceImpl implements ITradeInfoService
|
||||
{
|
||||
@Autowired
|
||||
private TradeInfoMapper tradeInfoMapper;
|
||||
@Autowired
|
||||
private GenerateNoUtils generateNoUtils;
|
||||
|
||||
/**
|
||||
* 查询交易信息
|
||||
*
|
||||
* @param id 交易信息主键
|
||||
* @return 交易信息
|
||||
*/
|
||||
@Override
|
||||
public TradeInfo selectTradeInfoById(Long id)
|
||||
{
|
||||
return tradeInfoMapper.selectTradeInfoById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询交易信息列表
|
||||
*
|
||||
* @param tradeInfo 交易信息
|
||||
* @return 交易信息
|
||||
*/
|
||||
@Override
|
||||
public List<TradeInfo> selectTradeInfoList(TradeInfo tradeInfo)
|
||||
{
|
||||
return tradeInfoMapper.selectTradeInfoList(tradeInfo);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增交易信息
|
||||
*
|
||||
* @param tradeInfo 交易信息
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int insertTradeInfo(TradeInfo tradeInfo)
|
||||
{
|
||||
String tradeNo = generateNoUtils.tradeNo();
|
||||
tradeInfo.setCreateTime(DateUtils.getNowDate());
|
||||
tradeInfo.setTradeNo(tradeNo);
|
||||
return tradeInfoMapper.insertTradeInfo(tradeInfo);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改交易信息
|
||||
*
|
||||
* @param tradeInfo 交易信息
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int updateTradeInfo(TradeInfo tradeInfo)
|
||||
{
|
||||
tradeInfo.setUpdateTime(DateUtils.getNowDate());
|
||||
return tradeInfoMapper.updateTradeInfo(tradeInfo);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除交易信息
|
||||
*
|
||||
* @param ids 需要删除的交易信息主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteTradeInfoByIds(Long[] ids)
|
||||
{
|
||||
return tradeInfoMapper.deleteTradeInfoByIds(ids);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除交易信息信息
|
||||
*
|
||||
* @param id 交易信息主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteTradeInfoById(Long id)
|
||||
{
|
||||
return tradeInfoMapper.deleteTradeInfoById(id);
|
||||
}
|
||||
}
|
@ -0,0 +1,37 @@
|
||||
package com.ruoyi.info.util;
|
||||
|
||||
import com.ruoyi.common.core.redis.RedisCache;
|
||||
import org.apache.commons.lang3.time.DateFormatUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
@Component
|
||||
public class GenerateNoUtils {
|
||||
|
||||
@Autowired
|
||||
private RedisCache redisCache;
|
||||
|
||||
public String tradeNo() {
|
||||
String yyyyMMdd = DateFormatUtils.format(new Date(), "yyyyMMdd");
|
||||
String incrKey = "trade:" + yyyyMMdd;
|
||||
Long increment = redisCache.redisTemplate.opsForValue().increment(incrKey, 1);
|
||||
redisCache.expire(incrKey, 1L, TimeUnit.DAYS);
|
||||
return yyyyMMdd + paddingFour(increment);
|
||||
}
|
||||
|
||||
private static String paddingFour(long l) {
|
||||
String s = String.valueOf(l);
|
||||
int length = s.length();
|
||||
if (length > 3) {
|
||||
return s;
|
||||
}
|
||||
for (; length < 4; length++) {
|
||||
s = "0" + s;
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
||||
}
|
142
ruoyi-info/src/main/resources/mapper/info/TradeInfoMapper.xml
Executable file
142
ruoyi-info/src/main/resources/mapper/info/TradeInfoMapper.xml
Executable file
@ -0,0 +1,142 @@
|
||||
<?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.ruoyi.info.mapper.TradeInfoMapper">
|
||||
|
||||
<resultMap type="TradeInfo" id="TradeInfoResult">
|
||||
<result property="id" column="id" />
|
||||
<result property="tradeNo" column="trade_no" />
|
||||
<result property="operatorName" column="operator_name" />
|
||||
<result property="groupNo" column="group_no" />
|
||||
<result property="cardType" column="card_type" />
|
||||
<result property="currencyType" column="currency_type" />
|
||||
<result property="cardValue" column="card_value" />
|
||||
<result property="buyCardExchangeRate" column="buy_card_exchange_rate" />
|
||||
<result property="buyCost" column="buy_cost" />
|
||||
<result property="nailaValue" column="naila_value" />
|
||||
<result property="code" column="code" />
|
||||
<result property="commGroup" column="comm_group" />
|
||||
<result property="salePrice" column="sale_price" />
|
||||
<result property="profit" column="profit" />
|
||||
<result property="bankAccount" column="bank_account" />
|
||||
<result property="payStatus" column="pay_status" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectTradeInfoVo">
|
||||
select id, trade_no, operator_name, group_no, card_type, currency_type, card_value, buy_card_exchange_rate, buy_cost, naila_value, code, comm_group, sale_price, profit, bank_account, pay_status, create_by, create_time, update_by, update_time from trade_info
|
||||
</sql>
|
||||
|
||||
<select id="selectTradeInfoList" parameterType="TradeInfo" resultMap="TradeInfoResult">
|
||||
<include refid="selectTradeInfoVo"/>
|
||||
<where>
|
||||
<if test="tradeNo != null and tradeNo != ''"> and trade_no = #{tradeNo}</if>
|
||||
<if test="operatorName != null and operatorName != ''"> and operator_name like concat('%', #{operatorName}, '%')</if>
|
||||
<if test="groupNo != null and groupNo != ''"> and group_no = #{groupNo}</if>
|
||||
<if test="cardType != null and cardType != ''"> and card_type = #{cardType}</if>
|
||||
<if test="currencyType != null and currencyType != ''"> and currency_type = #{currencyType}</if>
|
||||
<if test="cardValue != null "> and card_value = #{cardValue}</if>
|
||||
<if test="buyCardExchangeRate != null "> and buy_card_exchange_rate = #{buyCardExchangeRate}</if>
|
||||
<if test="buyCost != null "> and buy_cost = #{buyCost}</if>
|
||||
<if test="nailaValue != null "> and naila_value = #{nailaValue}</if>
|
||||
<if test="code != null and code != ''"> and code = #{code}</if>
|
||||
<if test="commGroup != null and commGroup != ''"> and comm_group = #{commGroup}</if>
|
||||
<if test="salePrice != null "> and sale_price = #{salePrice}</if>
|
||||
<if test="profit != null "> and profit = #{profit}</if>
|
||||
<if test="bankAccount != null and bankAccount != ''"> and bank_account = #{bankAccount}</if>
|
||||
<if test="payStatus != null and payStatus != ''"> and pay_status = #{payStatus}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectTradeInfoById" parameterType="Long" resultMap="TradeInfoResult">
|
||||
<include refid="selectTradeInfoVo"/>
|
||||
where id = #{id}
|
||||
</select>
|
||||
|
||||
<insert id="insertTradeInfo" parameterType="TradeInfo" useGeneratedKeys="true" keyProperty="id">
|
||||
insert into trade_info
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="tradeNo != null and tradeNo != ''">trade_no,</if>
|
||||
<if test="operatorName != null">operator_name,</if>
|
||||
<if test="groupNo != null">group_no,</if>
|
||||
<if test="cardType != null">card_type,</if>
|
||||
<if test="currencyType != null">currency_type,</if>
|
||||
<if test="cardValue != null">card_value,</if>
|
||||
<if test="buyCardExchangeRate != null">buy_card_exchange_rate,</if>
|
||||
<if test="buyCost != null">buy_cost,</if>
|
||||
<if test="nailaValue != null">naila_value,</if>
|
||||
<if test="code != null">code,</if>
|
||||
<if test="commGroup != null">comm_group,</if>
|
||||
<if test="salePrice != null">sale_price,</if>
|
||||
<if test="profit != null">profit,</if>
|
||||
<if test="bankAccount != null">bank_account,</if>
|
||||
<if test="payStatus != null">pay_status,</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>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="tradeNo != null and tradeNo != ''">#{tradeNo},</if>
|
||||
<if test="operatorName != null">#{operatorName},</if>
|
||||
<if test="groupNo != null">#{groupNo},</if>
|
||||
<if test="cardType != null">#{cardType},</if>
|
||||
<if test="currencyType != null">#{currencyType},</if>
|
||||
<if test="cardValue != null">#{cardValue},</if>
|
||||
<if test="buyCardExchangeRate != null">#{buyCardExchangeRate},</if>
|
||||
<if test="buyCost != null">#{buyCost},</if>
|
||||
<if test="nailaValue != null">#{nailaValue},</if>
|
||||
<if test="code != null">#{code},</if>
|
||||
<if test="commGroup != null">#{commGroup},</if>
|
||||
<if test="salePrice != null">#{salePrice},</if>
|
||||
<if test="profit != null">#{profit},</if>
|
||||
<if test="bankAccount != null">#{bankAccount},</if>
|
||||
<if test="payStatus != null">#{payStatus},</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>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateTradeInfo" parameterType="TradeInfo">
|
||||
update trade_info
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="tradeNo != null and tradeNo != ''">trade_no = #{tradeNo},</if>
|
||||
<if test="operatorName != null">operator_name = #{operatorName},</if>
|
||||
<if test="groupNo != null">group_no = #{groupNo},</if>
|
||||
<if test="cardType != null">card_type = #{cardType},</if>
|
||||
<if test="currencyType != null">currency_type = #{currencyType},</if>
|
||||
<if test="cardValue != null">card_value = #{cardValue},</if>
|
||||
<if test="buyCardExchangeRate != null">buy_card_exchange_rate = #{buyCardExchangeRate},</if>
|
||||
<if test="buyCost != null">buy_cost = #{buyCost},</if>
|
||||
<if test="nailaValue != null">naila_value = #{nailaValue},</if>
|
||||
<if test="code != null">code = #{code},</if>
|
||||
<if test="commGroup != null">comm_group = #{commGroup},</if>
|
||||
<if test="salePrice != null">sale_price = #{salePrice},</if>
|
||||
<if test="profit != null">profit = #{profit},</if>
|
||||
<if test="bankAccount != null">bank_account = #{bankAccount},</if>
|
||||
<if test="payStatus != null">pay_status = #{payStatus},</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>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
||||
<delete id="deleteTradeInfoById" parameterType="Long">
|
||||
delete from trade_info where id = #{id}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteTradeInfoByIds" parameterType="String">
|
||||
delete from trade_info where id in
|
||||
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||||
#{id}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
44
ruoyi-ui/src/api/info/trade.js
Executable file
44
ruoyi-ui/src/api/info/trade.js
Executable file
@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询交易信息列表
|
||||
export function listInfo(query) {
|
||||
return request({
|
||||
url: '/info/trade/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询交易信息详细
|
||||
export function getInfo(id) {
|
||||
return request({
|
||||
url: '/info/trade/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增交易信息
|
||||
export function addInfo(data) {
|
||||
return request({
|
||||
url: '/info/trade',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改交易信息
|
||||
export function updateInfo(data) {
|
||||
return request({
|
||||
url: '/info/trade',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除交易信息
|
||||
export function delInfo(id) {
|
||||
return request({
|
||||
url: '/info/trade/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
440
ruoyi-ui/src/views/info/trade/index.vue
Executable file
440
ruoyi-ui/src/views/info/trade/index.vue
Executable file
@ -0,0 +1,440 @@
|
||||
<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="tradeNo">
|
||||
<el-input
|
||||
v-model="queryParams.tradeNo"
|
||||
placeholder="请输入交易编号"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="操作人" prop="operatorName">
|
||||
<el-input
|
||||
v-model="queryParams.operatorName"
|
||||
placeholder="请输入操作人"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="群编号" prop="groupNo">
|
||||
<el-input
|
||||
v-model="queryParams.groupNo"
|
||||
placeholder="请输入群编号"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="卡面值" prop="cardValue">
|
||||
<el-input
|
||||
v-model="queryParams.cardValue"
|
||||
placeholder="请输入卡面值"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="收卡汇率" prop="buyCardExchangeRate">
|
||||
<el-input
|
||||
v-model="queryParams.buyCardExchangeRate"
|
||||
placeholder="请输入收卡汇率"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="收卡成本" prop="buyCost">
|
||||
<el-input
|
||||
v-model="queryParams.buyCost"
|
||||
placeholder="请输入收卡成本"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="奈拉值" prop="nailaValue">
|
||||
<el-input
|
||||
v-model="queryParams.nailaValue"
|
||||
placeholder="请输入奈拉值"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="代码" prop="code">
|
||||
<el-input
|
||||
v-model="queryParams.code"
|
||||
placeholder="请输入代码"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="对接群" prop="commGroup">
|
||||
<el-input
|
||||
v-model="queryParams.commGroup"
|
||||
placeholder="请输入对接群"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="售出价格" prop="salePrice">
|
||||
<el-input
|
||||
v-model="queryParams.salePrice"
|
||||
placeholder="请输入售出价格"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="利润" prop="profit">
|
||||
<el-input
|
||||
v-model="queryParams.profit"
|
||||
placeholder="请输入利润"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="银行账号" prop="bankAccount">
|
||||
<el-input
|
||||
v-model="queryParams.bankAccount"
|
||||
placeholder="请输入银行账号"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<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-form-item>
|
||||
</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="['info:trade: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="['info:trade: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="['info:trade: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="['info:trade:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="tradeList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="id" align="center" prop="id" />
|
||||
<el-table-column label="交易编号" align="center" prop="tradeNo" />
|
||||
<el-table-column label="操作人" align="center" prop="operatorName" />
|
||||
<el-table-column label="群编号" align="center" prop="groupNo" />
|
||||
<el-table-column label="卡类型" align="center" prop="cardType" />
|
||||
<el-table-column label="币种" align="center" prop="currencyType" />
|
||||
<el-table-column label="卡面值" align="center" prop="cardValue" />
|
||||
<el-table-column label="收卡汇率" align="center" prop="buyCardExchangeRate" />
|
||||
<el-table-column label="收卡成本" align="center" prop="buyCost" />
|
||||
<el-table-column label="奈拉值" align="center" prop="nailaValue" />
|
||||
<el-table-column label="代码" align="center" prop="code" />
|
||||
<el-table-column label="对接群" align="center" prop="commGroup" />
|
||||
<el-table-column label="售出价格" align="center" prop="salePrice" />
|
||||
<el-table-column label="利润" align="center" prop="profit" />
|
||||
<el-table-column label="银行账号" align="center" prop="bankAccount" />
|
||||
<el-table-column label="支付状态" align="center" prop="payStatus" />
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click="handleUpdate(scope.row)"
|
||||
v-hasPermi="['info:trade:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['info:trade:remove']"
|
||||
>删除</el-button>
|
||||
</template>
|
||||
</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="交易编号" prop="tradeNo">
|
||||
<el-input v-model="form.tradeNo" placeholder="请输入交易编号" readonly/>
|
||||
</el-form-item>
|
||||
<el-form-item label="操作人" prop="operatorName">
|
||||
<el-input v-model="form.operatorName" placeholder="请输入操作人" readonly/>
|
||||
</el-form-item>
|
||||
<el-form-item label="群编号" prop="groupNo">
|
||||
<el-input v-model="form.groupNo" placeholder="请输入群编号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="卡类型" prop="cardType">
|
||||
<el-radio-group v-model="form.cardType" size="medium">
|
||||
<el-radio v-for="(item, index) in cardTypeOptions" :key="index" :label="item.value"
|
||||
:disabled="item.disabled">{{item.label}}</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item label="币种" prop="currencyType">
|
||||
<el-radio-group v-model="form.currencyType" size="medium">
|
||||
<el-radio v-for="(item, index) in currencyTypeOptions" :key="index" :label="item.value"
|
||||
:disabled="item.disabled">{{item.label}}</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item label="卡面值" prop="cardValue">
|
||||
<el-input-number v-model="form.cardValue" placeholder="请输入卡面值" />
|
||||
</el-form-item>
|
||||
<el-form-item label="收卡汇率" prop="buyCardExchangeRate">
|
||||
<el-input-number v-model="form.buyCardExchangeRate" placeholder="请输入收卡汇率" />
|
||||
</el-form-item>
|
||||
<el-form-item label="收卡成本" prop="buyCost">
|
||||
<el-input-number v-model="form.buyCost" placeholder="请输入收卡成本" />
|
||||
</el-form-item>
|
||||
<el-form-item label="奈拉值" prop="nailaValue">
|
||||
<el-input-number v-model="form.nailaValue" placeholder="请输入奈拉值" />
|
||||
</el-form-item>
|
||||
<el-form-item label="代码" prop="code">
|
||||
<el-input v-model="form.code" placeholder="请输入代码" />
|
||||
</el-form-item>
|
||||
<el-form-item label="对接群" prop="commGroup">
|
||||
<el-input v-model="form.commGroup" placeholder="请输入对接群" />
|
||||
</el-form-item>
|
||||
<el-form-item label="售出价格" prop="salePrice">
|
||||
<el-input-number v-model="form.salePrice" placeholder="请输入售出价格" />
|
||||
</el-form-item>
|
||||
<el-form-item label="利润" prop="profit">
|
||||
<el-input-number v-model="form.profit" placeholder="请输入利润" />
|
||||
</el-form-item>
|
||||
<el-form-item label="银行账号" prop="bankAccount">
|
||||
<el-input v-model="form.bankAccount" 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 { listInfo, getInfo, delInfo, addInfo, updateInfo } from "@/api/info/trade";
|
||||
|
||||
export default {
|
||||
name: "Info",
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 交易信息表格数据
|
||||
tradeList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
tradeNo: null,
|
||||
operatorName: null,
|
||||
groupNo: null,
|
||||
cardType: null,
|
||||
currencyType: null,
|
||||
cardValue: null,
|
||||
buyCardExchangeRate: null,
|
||||
buyCost: null,
|
||||
nailaValue: null,
|
||||
code: null,
|
||||
commGroup: null,
|
||||
salePrice: null,
|
||||
profit: null,
|
||||
bankAccount: null,
|
||||
payStatus: null,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
//tradeNo: [
|
||||
//{ required: true, message: "交易编号不能为空", trigger: "blur" }
|
||||
//],
|
||||
},
|
||||
cardTypeOptions: [
|
||||
{
|
||||
"label": "steam",
|
||||
"value": "steam"
|
||||
}
|
||||
],
|
||||
currencyTypeOptions: [
|
||||
{
|
||||
"label": "USD",
|
||||
"value": "USD"
|
||||
}
|
||||
]
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询交易信息列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listInfo(this.queryParams).then(response => {
|
||||
this.tradeList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
id: null,
|
||||
tradeNo: null,
|
||||
operatorName: null,
|
||||
groupNo: null,
|
||||
cardType: null,
|
||||
currencyType: null,
|
||||
cardValue: null,
|
||||
buyCardExchangeRate: null,
|
||||
buyCost: null,
|
||||
nailaValue: null,
|
||||
code: null,
|
||||
commGroup: null,
|
||||
salePrice: null,
|
||||
profit: null,
|
||||
bankAccount: null,
|
||||
payStatus: "0",
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: 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
|
||||
getInfo(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) {
|
||||
updateInfo(this.form).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addInfo(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$modal.confirm('是否确认删除交易信息编号为"' + ids + '"的数据项?').then(function() {
|
||||
return delInfo(ids);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('info/trade/export', {
|
||||
...this.queryParams
|
||||
}, `trade_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
x
Reference in New Issue
Block a user