Browse Source

Merge remote-tracking branch 'origin/master'

master
God 11 months ago
parent
commit
b59ae2518d
  1. 6
      anrui-crm/anrui-crm-api/src/main/java/com/yxt/anrui/crm/api/crmcustomertemp/CrmCustomerTempFeign.java
  2. 7
      anrui-crm/anrui-crm-api/src/main/java/com/yxt/anrui/crm/api/crmcustomertemp/CrmCustomerTempFeignFallback.java
  3. 7
      anrui-crm/anrui-crm-biz/src/main/java/com/yxt/anrui/crm/biz/crmcustomertemp/CrmCustomerTempRest.java
  4. 6
      anrui-crm/anrui-crm-biz/src/main/java/com/yxt/anrui/crm/biz/crmcustomertemp/CrmCustomerTempService.java
  5. 70
      anrui-riskcenter/anrui-riskcenter-api/src/main/java/com/yxt/anrui/riskcenter/api/loanrepaymentschedule/historyData/HistoryDataImportVo.java
  6. 92
      anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanrepaymentschedule/LoanRepaymentScheduleService.java
  7. 12
      yxt-as-ui/src/views/basicinformation/profession/profession.vue
  8. 12
      yxt-as-ui/src/views/basicinformation/subjects/subjects.vue
  9. 41
      yxt-as-ui/src/views/basicinformation/supplier/supplier.vue
  10. 49
      yxt-as-ui/src/views/basicinformation/suppliertype/suppliertype.vue
  11. 12
      yxt-as-ui/src/views/basicinformation/team/team.vue

6
anrui-crm/anrui-crm-api/src/main/java/com/yxt/anrui/crm/api/crmcustomertemp/CrmCustomerTempFeign.java

@ -227,4 +227,8 @@ public interface CrmCustomerTempFeign {
@ApiOperation("新增或更新客户信息")
@PostMapping("/updateTemp")
ResultBean<String> updateTemp(@RequestBody CustomerSecondSalesDto dto);
}
@ApiOperation("根据客户编码查询实体")
@GetMapping("/fetchEntityByCustomerNo")
public ResultBean<CrmCustomerTemp> fetchEntityByCustomerNo(@RequestParam("customerNo") String customerNo);
}

7
anrui-crm/anrui-crm-api/src/main/java/com/yxt/anrui/crm/api/crmcustomertemp/CrmCustomerTempFeignFallback.java

@ -180,5 +180,10 @@ public class CrmCustomerTempFeignFallback implements CrmCustomerTempFeign {
return null;
}
@Override
public ResultBean<CrmCustomerTemp> fetchEntityByCustomerNo(String customerNo) {
return null;
}
}
}

7
anrui-crm/anrui-crm-biz/src/main/java/com/yxt/anrui/crm/biz/crmcustomertemp/CrmCustomerTempRest.java

@ -357,5 +357,12 @@ public class CrmCustomerTempRest implements CrmCustomerTempFeign {
return crmCustomerTempService.updateTemp(dto);
}
@Override
public ResultBean<CrmCustomerTemp> fetchEntityByCustomerNo(String customerNo) {
ResultBean rb = ResultBean.fireFail();
CrmCustomerTemp crmCustomerTemp = crmCustomerTempService.fetchEntityByCustomerNo(customerNo);
return rb.success().setData(crmCustomerTemp);
}
}

6
anrui-crm/anrui-crm-biz/src/main/java/com/yxt/anrui/crm/biz/crmcustomertemp/CrmCustomerTempService.java

@ -1342,4 +1342,8 @@ public class CrmCustomerTempService extends MybatisBaseService<CrmCustomerTempMa
}
return rb.success().setData(resultBean.getData());
}
}
public CrmCustomerTemp fetchEntityByCustomerNo(String customerNo) {
return baseMapper.selectByCustomerNo(customerNo);
}
}

70
anrui-riskcenter/anrui-riskcenter-api/src/main/java/com/yxt/anrui/riskcenter/api/loanrepaymentschedule/historyData/HistoryDataImportVo.java

@ -0,0 +1,70 @@
package com.yxt.anrui.riskcenter.api.loanrepaymentschedule.historyData;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
/**
* @author Fan
* @description
* @date 2024/5/27 13:36
*/
@Data
public class HistoryDataImportVo {
@ApiModelProperty("实际购车人名称")
private String actualName;//实际购车人名称
@ApiModelProperty("实际购车人电话")
private String actualPhone;
@ApiModelProperty("借款人(财务的客户编码)")
private String borrowerNo;
@ApiModelProperty("借款人(财务的客户)名称")
private String borrowerName;
@ApiModelProperty("车架号")
private String vinNo;
@ApiModelProperty("消贷合同编号")
private String loanContractNo;
@ApiModelProperty("资方合同号")
private String bankContractNo;
@ApiModelProperty("资方名称")
private String bankName;
@ApiModelProperty("主产品期数")
private String mainPeriod;
@ApiModelProperty("金融产品政策")
private String depositRatio;
@ApiModelProperty("其他融资方合同号")
private String otherBankNo;
@ApiModelProperty("其他融资方")
private String otherBankName;
@ApiModelProperty("其他融期数")
private String otherPeriod;
@ApiModelProperty("主产品首期还款日")
private String mainRepayDate;
@ApiModelProperty("主产品首期月还")
private String mainFirstRepay;
@ApiModelProperty("主产品期间月还")
private String mainMidRepay;
@ApiModelProperty("主产品期末月还")
private String mainLastRepay;
@ApiModelProperty("其他融首期还款日")
private String otherRepayDate;
@ApiModelProperty("其他融首期月还")
private String otherFirstRepay;
@ApiModelProperty("其他融期间月还")
private String otherMidRepay;
@ApiModelProperty("其他融期末月还")
private String otherLastRepay;
@ApiModelProperty("推送财务凭证部门编码")
private String cwDeptNo;
@ApiModelProperty("销售部门编码")
private String salesDeptNo;
@ApiModelProperty("分公司编码")
private String useOrgNo;
@ApiModelProperty("分公司垫款金额")
private String paymentMoney;
@ApiModelProperty("资金占用费")
private String fund;
}

92
anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanrepaymentschedule/LoanRepaymentScheduleService.java

@ -9,27 +9,35 @@ import com.yxt.anrui.base.api.basepurchasesystem.BasePurchaseSystemDetailsVo;
import com.yxt.anrui.base.api.basepurchasesystem.BasePurchaseSystemFeign;
import com.yxt.anrui.buscenter.api.bussalesorder.BusSalesOrder;
import com.yxt.anrui.buscenter.api.bussalesorder.BusSalesOrderFeign;
import com.yxt.anrui.buscenter.api.bussalesorderborrower.BusSalesOrderBorrower;
import com.yxt.anrui.buscenter.api.bussalesorderborrower.BusSalesOrderBorrowerDetailsVo;
import com.yxt.anrui.buscenter.api.bussalesorderborrower.BusSalesOrderBorrowerFeign;
import com.yxt.anrui.buscenter.api.bussalesorderloancontract.*;
import com.yxt.anrui.buscenter.api.bussalesordervehicle.BusSalesOrderVehicle;
import com.yxt.anrui.buscenter.api.bussalesordervehicle.BusSalesOrderVehicleFeign;
import com.yxt.anrui.crm.api.crmcustomertemp.CrmCustomerTemp;
import com.yxt.anrui.crm.api.crmcustomertemp.CrmCustomerTempFeign;
import com.yxt.anrui.crm.api.crmcustomertemp.CrmCustomerTempVo;
import com.yxt.anrui.fin.api.finuncollectedreceivablesdetailedjr.FinUncollectedReceivablesDetailedJR;
import com.yxt.anrui.fin.api.kingdee.FinKingDeeFeign;
import com.yxt.anrui.fin.api.kingdee.bdcustomer.BdCustomer;
import com.yxt.anrui.fin.api.kingdee.voucher.GeneralVoucher;
import com.yxt.anrui.portal.api.sysorganization.SysOrganization;
import com.yxt.anrui.portal.api.sysorganization.SysOrganizationFeign;
import com.yxt.anrui.portal.api.sysorganization.SysOrganizationVo;
import com.yxt.anrui.portal.api.sysstafforg.SysStaffOrg;
import com.yxt.anrui.portal.api.sysstafforg.SysStaffOrgFeign;
import com.yxt.anrui.portal.api.sysuser.SysUserFeign;
import com.yxt.anrui.portal.api.sysuser.SysUserVo;
import com.yxt.anrui.riskcenter.api.loanfinbank.LoanFinBank;
import com.yxt.anrui.riskcenter.api.loanfinotherPolicy.LoanFinOtherPolicy;
import com.yxt.anrui.riskcenter.api.loanfinpolicy.LoanFinPolicy;
import com.yxt.anrui.riskcenter.api.loanfundday.LoanFundDay;
import com.yxt.anrui.riskcenter.api.loanrepaymenthistory.LoanRepaymentHistory;
import com.yxt.anrui.riskcenter.api.loanrepaymentplandetails.LoanRepaymentPlanDetails;
import com.yxt.anrui.riskcenter.api.loanrepaymentplandetails.LoanRepaymentPlanDetailsDto;
import com.yxt.anrui.riskcenter.api.loanrepaymentschedule.*;
import com.yxt.anrui.riskcenter.api.loanrepaymentschedule.historyData.HistoryDataImportVo;
import com.yxt.anrui.riskcenter.api.loansolutions.LoanSolutions;
import com.yxt.anrui.riskcenter.api.loansolutions.app.SolutionsDetailsVo;
import com.yxt.anrui.riskcenter.api.loansolutionsotherpolicy.LoanSolutionsOtherpolicy;
@ -43,6 +51,7 @@ import com.yxt.anrui.riskcenter.biz.loansolutionsotherpolicy.LoanSolutionsOtherp
import com.yxt.anrui.riskcenter.biz.loanwarrantinformation.LoanWarrantInformationService;
import com.yxt.common.base.config.component.DocPdfComponent;
import com.yxt.common.base.service.MybatisBaseService;
import com.yxt.common.base.utils.HanZiConverterPinYin;
import com.yxt.common.base.utils.PagerUtil;
import com.yxt.common.base.utils.StringUtils;
import com.yxt.common.base.utils.WordConvertUtils;
@ -3262,7 +3271,7 @@ public class LoanRepaymentScheduleService extends MybatisBaseService<LoanRepayme
page = "1";
} else if (c == 2) {
page = "2";
} else if (c == 0){
} else if (c == 0) {
page = "3";
}
if (pdfList.size() > (num - 1) * 3) {
@ -4619,4 +4628,85 @@ public class LoanRepaymentScheduleService extends MybatisBaseService<LoanRepayme
}
return rb.success().setData(vo);
}
/**
* 客户编码生成规则
*/
public String getPrefix(SysOrganization orgDept, SysOrganization orgCompany, String name, String mobile) {
String customerNoPrefix = "";
if (null != orgCompany) {
customerNoPrefix = customerNoPrefix + orgCompany.getOrgAbbre();
}
if (null != orgDept) {
customerNoPrefix = customerNoPrefix + orgDept.getOrgCode();
}
customerNoPrefix = customerNoPrefix + mobile + HanZiConverterPinYin.getPinYinFirst(name);
System.out.println(customerNoPrefix.length() > 30 ? customerNoPrefix.substring(0, 30) : customerNoPrefix);
return customerNoPrefix.length() > 30 ? customerNoPrefix.substring(0, 30) : customerNoPrefix;
}
/**
* 导入历史数据生成还款计划表
*/
public void saveHistoryRecord(List<HistoryDataImportVo> list) {
List<LoanRepaymentSchedule> schedules = new ArrayList<>(); //还款计划表主表
List<LoanRepaymentPlanDetails> planDetails = new ArrayList<>();//还款计划表明细
List<LoanRepaymentHistory> histories = new ArrayList<>();//还款记录
List<CrmCustomerTemp> customerTemps = new ArrayList<>();//客户表
List<BusSalesOrder> orders = new ArrayList<>();//销售订单
List<BusSalesOrderVehicle> vehicles = new ArrayList<>();//销售订单车辆
List<BusSalesOrderBorrower> borrowers = new ArrayList<>();//贷款人
List<BusSalesOrderLoancontract> contracts = new ArrayList<>();//消贷合同
List<FinUncollectedReceivablesDetailedJR> jrList = new ArrayList<>();//金融应收
List<LoanFundDay> loanFundDays = new ArrayList<>();//资金占用费生成记录
for (HistoryDataImportVo v : list) {
String customerNo = ""; //客户编码
String customerSid = "";
String customerName = "";
String deptName = "";
String deptSid = "";
String useOrgName = "";
String useOrgSid = "";
String orgPath = "";
String borrowerCustomerSid = "";
String borrowerCustomerName = "";
SysOrganization orgDept = sysOrganizationFeign.selectByOrgCode(v.getSalesDeptNo()).getData();
if (orgDept != null) {
deptSid = orgDept.getSid();
deptName = orgDept.getName();
orgPath = orgDept.getOrgSidPath();
}
SysOrganization orgCompany = sysOrganizationFeign.selectByOrgCode(v.getUseOrgNo()).getData();
if (orgCompany != null) {
useOrgSid = orgCompany.getSid();
useOrgName = orgCompany.getName();
}
String prefix = getPrefix(orgDept, orgCompany, v.getActualName(), v.getActualPhone());
//客户表新增实际购车人
if (StringUtils.isNotBlank(prefix)) {
CrmCustomerTemp customerTemp = crmCustomerTempFeign.fetchEntityByCustomerNo(prefix).getData();
if (null != customerTemp) {
customerSid = customerTemp.getSid();
customerName = customerTemp.getName();
} else {
CrmCustomerTemp crmCustomerTemp = new CrmCustomerTemp();
customerSid = crmCustomerTemp.getSid();
customerName = v.getActualName();
crmCustomerTemp.setCustomerNo(prefix);
crmCustomerTemp.setMobile(v.getActualPhone());
crmCustomerTemp.setCustomerType("个人");
crmCustomerTemp.setCustomerTypeKey("1");
crmCustomerTemp.setCreateOrgSid(useOrgSid);
crmCustomerTemp.setIsEnable(3);
customerTemps.add(crmCustomerTemp);
}
}
//客户表新增贷款人
crmCustomerTempFeign.fetchEntityByCustomerNo(v.getBorrowerNo());
}
}
}

12
yxt-as-ui/src/views/basicinformation/profession/profession.vue

@ -34,7 +34,7 @@
<el-table-column prop="serviceTypeCode" label="类别编码" align="center" />
<el-table-column prop="percentageRate" label="提成比例" align="center" />
<el-table-column prop="percentageAmount" label="提成金额" align="center" />
<el-table-column prop="createOrgName" label="门店" align="center" />
<el-table-column prop="useOrgName" label="门店" align="center" />
</el-table>
</div>
<!--End 主页面主要部分-->
@ -160,7 +160,9 @@ export default {
params: {
orgPath: '',
serviceTypeName: '',
store: ''
store: '',
menuUrl: '',
userSid: ''
}
}
}
@ -218,6 +220,8 @@ export default {
//
getList() {
this.listLoading = true
this.listQuery.params.userSid = window.sessionStorage.getItem('userSid')
this.listQuery.params.menuUrl = this.$route.path
this.listQuery.params.orgPath = window.sessionStorage.getItem('defaultOrgPath')
req.listPage(this.listQuery).then(response => {
this.listLoading = false
@ -244,7 +248,9 @@ export default {
params: {
orgPath: '',
serviceTypeName: '',
store: ''
store: '',
menuUrl: '',
userSid: ''
}
}
this.getList()

12
yxt-as-ui/src/views/basicinformation/subjects/subjects.vue

@ -33,7 +33,7 @@
<el-table-column prop="subjectCode" label="科目编码" align="center" />
<el-table-column prop="subjectType" label="类型" align="center" />
<el-table-column prop="sortNo" label="排序" align="center" />
<el-table-column prop="createOrgName" label="门店" align="center" />
<el-table-column prop="useOrgName" label="门店" align="center" />
</el-table>
</div>
<!--End 主页面主要部分-->
@ -154,7 +154,9 @@ export default {
params: {
orgPath: '',
subjectName: '',
store: ''
store: '',
menuUrl: '',
userSid: ''
}
}
}
@ -212,6 +214,8 @@ export default {
//
getList() {
this.listLoading = true
this.listQuery.params.userSid = window.sessionStorage.getItem('userSid')
this.listQuery.params.menuUrl = this.$route.path
this.listQuery.params.orgPath = window.sessionStorage.getItem('defaultOrgPath')
req.listPage(this.listQuery).then(response => {
this.listLoading = false
@ -238,7 +242,9 @@ export default {
params: {
orgPath: '',
subjectName: '',
store: ''
store: '',
menuUrl: '',
userSid: ''
}
}
this.getList()

41
yxt-as-ui/src/views/basicinformation/supplier/supplier.vue

@ -8,14 +8,17 @@
<div class="searchcon">
<el-button size="small" class="searchbtn" @click="clicksearchShow">{{ searchxianshitit }}</el-button>
<div v-show="isSearchShow" class="search">
<el-form ref="listQueryform" :inline="true" :model="listQuery" label-width="100px" class="tab-header">
<el-form-item label="供应商">
<el-form ref="listQueryform" :inline="true" :model="listQuery" label-width="110px" class="tab-header">
<el-form-item label="供应商名称">
<el-input v-model="listQuery.params.supplierName" placeholder="" clearable/>
</el-form-item>
<el-form-item label="分类">
<el-form-item label="供应商编码">
<el-input v-model="listQuery.params.supplierCode" placeholder="" clearable/>
</el-form-item>
<el-form-item label="供应商类型">
<el-input v-model="listQuery.params.supplierTypeName" placeholder="" clearable/>
</el-form-item>
<el-form-item label="办公电话">
<el-form-item label="供应商电话">
<el-input v-model="listQuery.params.contactTelePhone" placeholder="" clearable/>
</el-form-item>
<el-form-item label="联系人">
@ -43,12 +46,15 @@
<el-button type="primary" size="mini" @click="toInfo(scope.row)">查看</el-button>
</template>
</el-table-column>
<el-table-column prop="supplierName" label="厂商名称" align="center" />
<el-table-column prop="supplierTypeName" label="厂商分类" align="center" />
<el-table-column prop="address" label="厂商通讯地址" align="center" />
<el-table-column prop="contactTelePhone" label="厂商办公电话" align="center" />
<el-table-column prop="contactName" label="联系人" align="center" />
<el-table-column prop="contactMobile" label="联系电话" align="center" />
<el-table-column prop="supplierName" label="供应商名称" align="center" width="120" />
<el-table-column prop="supplierCode" label="供应商编码" align="center" width="1110" />
<el-table-column prop="supplierTypeName" label="供应商类型" align="center" width="110" />
<el-table-column prop="address" label="详细地址" align="center" min-width="200" />
<el-table-column prop="contactTelePhone" label="供应商电话" align="center" width="120" />
<el-table-column prop="contactName" label="联系人" align="center" width="100" />
<el-table-column prop="contactMobile" label="联系电话" align="center" width="120" />
<el-table-column prop="billingTypeValue" label="开票类型" align="center" width="100" />
<el-table-column prop="taxRate" label="税率" align="center" width="80" />
</el-table>
</div>
<!--End 主页面主要部分-->
@ -132,9 +138,13 @@ export default {
total: 0,
params: {
supplierName: '',
supplierCode: '',
supplierTypeName: '',
contactTelePhone: '',
contactName: ''
contactName: '',
menuUrl: '',
userSid: '',
orgPath: ''
}
}
}
@ -192,6 +202,9 @@ export default {
//
getList() {
this.listLoading = true
this.listQuery.params.userSid = window.sessionStorage.getItem('userSid')
this.listQuery.params.menuUrl = this.$route.path
this.listQuery.params.orgPath = window.sessionStorage.getItem('defaultOrgPath')
req.listPage(this.listQuery).then((response) => {
this.listLoading = false
if (response.success) {
@ -216,9 +229,13 @@ export default {
total: 0,
params: {
supplierName: '',
supplierCode: '',
supplierTypeName: '',
contactTelePhone: '',
contactName: ''
contactName: '',
menuUrl: '',
userSid: '',
orgPath: ''
}
}
this.getList()

49
yxt-as-ui/src/views/basicinformation/suppliertype/suppliertype.vue

@ -12,7 +12,7 @@
<el-form-item label="供应商类型">
<el-input v-model="listQuery.params.supplierTypeName" placeholder="" clearable/>
</el-form-item>
<el-form-item label="供应商编码">
<el-form-item label="供应商类型编码">
<el-input v-model="listQuery.params.supplierTypeCode" placeholder="" clearable/>
</el-form-item>
</el-form>
@ -32,13 +32,8 @@
<el-table :key="tableKey" v-loading="listLoading" :data="list" :border="true" style="width: 100%;" @selection-change="handleSelectionChange">
<el-table-column type="selection" align="center" width="50" />
<el-table-column label="序号" type="index" width="80" :index="indexMethod" align="center" />
<el-table-column label="操作" width="180px" align="center">
<template slot-scope="scope">
<el-button type="primary" size="mini" @click="toEdit(scope.row)">编辑</el-button>
</template>
</el-table-column>
<el-table-column prop="supplierTypeName" label="供应商类型" align="center" />
<el-table-column prop="supplierTypeCode" label="供应商编码" align="center" />
<el-table-column prop="supplierTypeCode" label="供应商类型编码" align="center" />
</el-table>
</div>
<!--End 主页面主要部分-->
@ -95,6 +90,13 @@ export default {
btnKey: 'toAdd',
btnLabel: '新增'
},
{
type: 'primary',
size: 'small',
icon: 'edit',
btnKey: 'toEdit',
btnLabel: '编辑'
},
{
type: 'danger',
size: 'small',
@ -116,6 +118,7 @@ export default {
tableKey: 0,
list: [],
sids: [], // SIDs
multipleSelection: [],
FormLoading: false,
listLoading: false,
//
@ -126,7 +129,9 @@ export default {
params: {
supplierTypeName: '',
supplierTypeCode: '',
orgPath: ''
orgPath: '',
menuUrl: '',
userSid: ''
}
},
formobj: {
@ -160,6 +165,9 @@ export default {
case 'toAdd':
this.toAdd()
break
case 'toEdit':
this.toEdit()
break
case 'doDel':
this.doDel()
break
@ -173,6 +181,7 @@ export default {
// sid
handleSelectionChange(row) {
const aa = []
this.multipleSelection = row
row.forEach(element => {
aa.push(element.sid)
})
@ -187,6 +196,8 @@ export default {
//
getList() {
this.listLoading = true
this.listQuery.params.userSid = window.sessionStorage.getItem('userSid')
this.listQuery.params.menuUrl = this.$route.path
this.listQuery.params.orgPath = window.sessionStorage.getItem('defaultOrgPath')
req.listPage(this.listQuery).then((response) => {
this.listLoading = false
@ -213,7 +224,9 @@ export default {
params: {
supplierTypeName: '',
supplierTypeCode: '',
orgPath: ''
orgPath: '',
menuUrl: '',
userSid: ''
}
}
this.getList()
@ -227,13 +240,17 @@ export default {
orgPath: ''
}
},
toEdit(row) {
this.dialogVisible = true
this.formobj = {
sid: row.sid,
supplierTypeName: row.supplierTypeName,
supplierTypeCode: row.supplierTypeCode,
orgPath: ''
toEdit() {
if (this.sids.length === 1) {
this.dialogVisible = true
this.formobj = {
sid: this.multipleSelection[0].sid,
supplierTypeName: this.multipleSelection[0].supplierTypeName,
supplierTypeCode: this.multipleSelection[0].supplierTypeCode,
orgPath: ''
}
} else {
this.$message({ showClose: true, type: 'error', message: '请选择一条记录进行操作' })
}
},
handleConfirm() {

12
yxt-as-ui/src/views/basicinformation/team/team.vue

@ -31,7 +31,7 @@
<el-table-column label="序号" type="index" width="80" :index="indexMethod" align="center"/>
<el-table-column prop="groupName" label="班组名称" align="center" />
<el-table-column prop="sortNo" label="排序" align="center" />
<el-table-column prop="createOrgName" label="门店" align="center" />
<el-table-column prop="useOrgName" label="门店" align="center" />
</el-table>
</div>
<!--End 主页面主要部分-->
@ -139,7 +139,9 @@ export default {
params: {
orgPath: '',
groupName: '',
store: ''
store: '',
menuUrl: '',
userSid: ''
}
}
}
@ -197,6 +199,8 @@ export default {
//
getList() {
this.listLoading = true
this.listQuery.params.userSid = window.sessionStorage.getItem('userSid')
this.listQuery.params.menuUrl = this.$route.path
this.listQuery.params.orgPath = window.sessionStorage.getItem('defaultOrgPath')
req.listPage(this.listQuery).then(response => {
this.listLoading = false
@ -223,7 +227,9 @@ export default {
params: {
orgPath: '',
groupName: '',
store: ''
store: '',
menuUrl: '',
userSid: ''
}
}
this.getList()

Loading…
Cancel
Save