Browse Source

Merge remote-tracking branch 'origin/master'

master
dimengzhe 1 year ago
parent
commit
6db0105228
  1. 2
      anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebate/ScmVehRebateDetailsVo.java
  2. 26
      anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebate/ScmVehRebateDto.java
  3. 20
      anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebate/ScmVehRebateQuery.java
  4. 3
      anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehrebate/ScmVehRebateMapper.java
  5. 30
      anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehrebate/ScmVehRebateService.java
  6. 20
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatewithholding/bicyclerebatewithholding.vue
  7. 5
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatewithholding/bicyclerebatewithholdingAdd.vue
  8. 2
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatewithholding/bicyclerebatewithholdingInfo.vue
  9. 2
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatewithholding/relation/danchefanliAdd.vue
  10. 2
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatewithholding/relation/danchefanliInfo.vue
  11. 2
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatewithholding/relation/danchefanliselect.vue
  12. 22
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagement.vue
  13. 28
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagementAdd.vue
  14. 2
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagementByVehicle.vue
  15. 6
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagementEdit.vue
  16. 2
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagementInfo.vue
  17. 2
      anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliyutiFlow/danchefanliyutiDaiBanInfo.vue
  18. 5
      anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliyutiFlow/danchefanliyutiEdit.vue
  19. 2
      anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliyutiFlow/danchefanliyutiYiBanInfo.vue
  20. 2
      anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliyutiFlow/relation/danchefanliAdd.vue
  21. 2
      anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliyutiFlow/relation/danchefanliInfo.vue
  22. 2
      anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliyutiFlow/relation/danchefanlichoose.vue

2
anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebate/ScmVehRebateDetailsVo.java

@ -54,6 +54,8 @@ public class ScmVehRebateDetailsVo implements Vo {
private String sid; // sid
@ApiModelProperty("创建人sid")
private String createBySid;
@ApiModelProperty("创建日期")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date createTime; // 创建日期

26
anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebate/ScmVehRebateDto.java

@ -51,30 +51,24 @@ import java.util.List;
@ApiModel(value = "单车返利表 数据传输对象", description = "单车返利表 数据传输对象")
public class ScmVehRebateDto implements Dto {
@ApiModelProperty("创建人sid")
private String createBySid;
@ApiModelProperty("返利类型key")
private String rebateTypeKey; // 返利类型key
private String rebateTypeKey;
@ApiModelProperty("返利类型value")
private String rebateTypeValue; // 返利类型value
private String rebateTypeValue;
@ApiModelProperty("返利名称")
private String rebateName; // 返利名称
private String rebateName;
@ApiModelProperty("计算标准")
private String calculationStandard; // 计算标准
private String calculationStandard;
@ApiModelProperty("所属年月")
private String palceGenDate; // 所属年月
private String palceGenDate;
@ApiModelProperty("计算方式key")
private String calculationModeKey; // 计算方式key
private String calculationModeKey;
@ApiModelProperty("计算方式Value")
private String calculationModeValue; // 计算方式Value
@ApiModelProperty("使用组织sid")
private String useOrgSid; // 使用组织sid
@ApiModelProperty("使用组织名称")
private String useOrgName; // 使用组织名称
@ApiModelProperty("创建组织sid")
private String createOrgSid; // 创建组织sid
@ApiModelProperty("创建组织名称")
private String createOrgName; // 创建组织名称
private String calculationModeValue;
@ApiModelProperty("组织全路径")
private String orgPath;
@ApiModelProperty("单车返利车辆信息")
private List<ScmVehRebateVehDto> scmVehRebateVehs; // 单车返利车辆信息
private List<ScmVehRebateVehDto> scmVehRebateVehs;
}

20
anrui-scm/anrui-scm-api/src/main/java/com/yxt/anrui/scm/api/scmvehrebate/ScmVehRebateQuery.java

@ -52,25 +52,23 @@ import java.util.List;
public class ScmVehRebateQuery implements Query {
@ApiModelProperty("品牌sid")
private String brandSid; // 品牌sid
private String brandSid;
@ApiModelProperty("车型名称")
private String vehModelName; // 车型名称
private String vehModelName;
@ApiModelProperty("车架号")
private String vinNo; // 车架号
private String vinNo;
@ApiModelProperty("创建开始日期")
private String createStartTime; // 创建开始日期
private String createStartTime;
@ApiModelProperty("创建结束日期")
private String createEndTime; // 创建结束日期
private String createEndTime;
@ApiModelProperty("返利类型key")
private String rebateTypeKey; // 返利类型key
private String rebateTypeKey;
@ApiModelProperty("返利名称")
private String rebateName; // 返利名称
private String rebateName;
@ApiModelProperty("状态")
private String state; // 状态
@ApiModelProperty("是否调整")
private String isAdjustment; // 是否调整
private String state;
@ApiModelProperty("单车返利sid")
private List<String> sidList; // 单车返利sid
private List<String> sidList;
private String userSid;
private String orgPath;

3
anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehrebate/ScmVehRebateMapper.java

@ -54,9 +54,6 @@ import java.util.List;
@Mapper
public interface ScmVehRebateMapper extends BaseMapper<ScmVehRebate> {
//@Update("update scm_veh_rebate set name=#{msg} where id=#{id}")
//IPage<ScmVehRebateVo> voPage(IPage<ScmVehRebate> page, @Param(Constants.WRAPPER) QueryWrapper<ScmVehRebate> qw);
IPage<ScmVehRebateVo> selectPageVo(IPage<ScmVehRebate> page, @Param(Constants.WRAPPER) Wrapper<ScmVehRebate> qw);
List<ScmVehRebateVo> selectListAllVo(@Param(Constants.WRAPPER) Wrapper<ScmVehRebate> qw);

30
anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehrebate/ScmVehRebateService.java

@ -30,6 +30,9 @@ import cn.hutool.core.date.DateTime;
import cn.hutool.core.date.DateUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.yxt.anrui.portal.api.sysorganization.SysOrganizationFeign;
import com.yxt.anrui.portal.api.sysorganization.SysOrganizationVo;
import com.yxt.anrui.portal.api.sysstafforg.SysStaffOrgFeign;
import com.yxt.anrui.portal.api.sysuser.PrivilegeQuery;
import com.yxt.anrui.portal.api.sysuser.SysUserFeign;
import com.yxt.anrui.scm.api.scmcollectionrebate.ScmCollectionRebateVo;
@ -65,13 +68,10 @@ public class ScmVehRebateService extends MybatisBaseService<ScmVehRebateMapper,
@Autowired
private SysUserFeign sysUserFeign;
private QueryWrapper<ScmVehRebate> createQueryWrapper(ScmVehRebateQuery query) {
// todo: 这里根据具体业务调整查询条件
// 多字段Like示例:qw.and(wrapper -> wrapper.like("name", query.getName()).or().like("remark", query.getName()));
QueryWrapper<ScmVehRebate> qw = new QueryWrapper<>();
return qw;
}
@Autowired
private SysStaffOrgFeign sysStaffOrgFeign;
@Autowired
private SysOrganizationFeign sysOrganizationFeign;
public PagerVo<ScmVehRebateVo> listPageVo(PagerQuery<ScmVehRebateQuery> pq) {
ScmVehRebateQuery query = pq.getParams();
@ -403,16 +403,16 @@ public class ScmVehRebateService extends MybatisBaseService<ScmVehRebateMapper,
if (scmVehRebateVehs.size() < 1) {
rb.setMsg("请选择返利车辆");
}
String useOrgSid = sysStaffOrgFeign.getOrgSidByPath(dto.getOrgPath()).getData();
SysOrganizationVo sysOrganizationVo = sysOrganizationFeign.fetchBySid(useOrgSid).getData();
for (ScmVehRebateVehDto scmVehRebateVeh : scmVehRebateVehs) {
ScmVehRebate scmVehRebate = new ScmVehRebate();
String sid = scmVehRebate.getSid();
BeanUtil.copyProperties(scmVehRebateVeh,scmVehRebate);
BeanUtil.copyProperties(scmVehRebateVeh,scmVehRebate,"sid");
String vinNo = scmVehRebateVeh.getVinNo();
ScmVehRebateVo scmVehRebateVo = baseMapper.selectByVinNoAndOrgSid(vinNo, dto.getCreateOrgSid());
ScmVehRebateVo scmVehRebateVo = baseMapper.selectByVinNoAndOrgSid(vinNo, useOrgSid);
if (scmVehRebateVo != null){
return rb.setMsg("车架号为"+vinNo+"的单车返利信息已存在");
}
scmVehRebate.setSid(sid);
scmVehRebate.setRebateTypeKey(dto.getRebateTypeKey());
scmVehRebate.setRebateTypeValue(dto.getRebateTypeValue());
scmVehRebate.setRebateName(dto.getRebateName());
@ -420,8 +420,12 @@ public class ScmVehRebateService extends MybatisBaseService<ScmVehRebateMapper,
scmVehRebate.setCalculationModeKey(dto.getCalculationModeKey());
scmVehRebate.setCalculationModeValue(dto.getCalculationModeValue());
scmVehRebate.setCalculationStandard(dto.getCalculationStandard());
scmVehRebate.setCreateOrgSid(dto.getCreateOrgSid());
scmVehRebate.setUseOrgSid(dto.getUseOrgSid());
scmVehRebate.setCreateOrgSid(useOrgSid);
scmVehRebate.setCreateOrgName(sysOrganizationVo.getName());
scmVehRebate.setUseOrgSid(useOrgSid);
scmVehRebate.setUseOrgName(sysOrganizationVo.getName());
scmVehRebate.setOrgPath(dto.getOrgPath());
scmVehRebate.setCreateBySid(dto.getCreateBySid());
scmVehRebate.setState(0);
save(scmVehRebate);
}

20
anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatewithholding/bicyclerebatewithholding.vue

@ -102,7 +102,7 @@ import bicyclerebatewithholdingInfo from './bicyclerebatewithholdingInfo'
import { getStorage } from '@/utils/auth'
export default {
name: 'bicyclerebatewithholding',
name: 'BicycleRebateWithholding',
components: {
Pagination,
pageye,
@ -151,9 +151,12 @@ export default {
brand_list: [],
listQuery: {
params: {
createBySid: '',
brandSid: '',
createEndTime: '',
createStartTime: ''
createStartTime: '',
orgPath: '',
userSid: '',
menuUrl: ''
},
current: 1,
size: 5,
@ -256,7 +259,9 @@ export default {
//
getList() {
this.listLoading = true
this.listQuery.params.createBySid = window.sessionStorage.getItem('userSid')
this.listQuery.params.userSid = window.sessionStorage.getItem('userSid')
this.listQuery.params.orgPath = window.sessionStorage.getItem('defaultOrgPath')
this.listQuery.params.menuUrl = this.$route.path
req.listPage(this.listQuery).then((response) => {
console.log('列表查询结果:', response)
this.listLoading = false
@ -277,9 +282,12 @@ export default {
handleReset() {
this.listQuery = {
params: {
createBySid: '',
brandSid: '',
createEndTime: '',
createStartTime: ''
createStartTime: '',
orgPath: '',
userSid: '',
menuUrl: ''
},
current: 1,
size: 5,

5
anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatewithholding/bicyclerebatewithholdingAdd.vue

@ -93,7 +93,7 @@ import danchefanliselect from './relation/danchefanliselect'
import danchefanliAdd from './relation/danchefanliAdd'
export default {
name: 'bicyclerebatewithholdingAdd',
name: 'BicycleRebateWithholdingAdd',
components: {
danchefanliselect,
danchefanliAdd
@ -120,6 +120,7 @@ export default {
createBySid: '',
instanceId: '', // ID
taskId: '', // ID
orgPath: '',
scmVehRebateWiths: []
},
rules: {},
@ -159,6 +160,7 @@ export default {
this.formobj.createOrgSid = createOrgSid
this.formobj.useOrgSid = createOrgSid
this.formobj.createByName = window.sessionStorage.getItem('name')
this.formobj.orgPath = window.sessionStorage.getItem('defaultOrgPath')
this.viewTitle = '【新增】预提申请'
},
showEdit(row) {
@ -392,6 +394,7 @@ export default {
createBySid: '',
instanceId: '', // ID
taskId: '', // ID
orgPath: '',
scmVehRebateWiths: []
}
this.$refs['form_obj'].resetFields()

2
anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatewithholding/bicyclerebatewithholdingInfo.vue

@ -81,7 +81,7 @@ import req from '@/api/bikerebate/bicyclerebatewithholding'
import danchefanliInfo from './relation/danchefanliInfo'
export default {
name: 'bicyclerebatewithholdingInfo',
name: 'BicycleRebateWithholdingInfo',
components: {
danchefanliInfo
},

2
anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatewithholding/relation/danchefanliAdd.vue

@ -85,7 +85,7 @@
import req from '@/api/bikerebate/bicyclerebatewithholding'
export default {
name: 'danchefanliAdd',
name: 'DanCheFanLiAdd',
data() {
return {
viewTitle: '',

2
anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatewithholding/relation/danchefanliInfo.vue

@ -83,7 +83,7 @@
import req from '@/api/bikerebate/bicyclerebatewithholding'
export default {
name: 'danchefanliInfo',
name: 'DanCheFanLiInfo',
data() {
return {
viewTitle: '',

2
anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatewithholding/relation/danchefanliselect.vue

@ -115,7 +115,7 @@ import ButtonBar from '@/components/ButtonBar'
import { typeValues } from '@/api/cheliang/dictcommons'
export default {
name: 'danchefanliSelect',
name: 'DanCheFanLiSelect',
components: {
Pagination,
ButtonBar

22
anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagement.vue

@ -195,7 +195,7 @@ import bicyclerebatemanagementEdit from './bicyclerebatemanagementEdit'
import bicyclerebatemanagementInfo from './bicyclerebatemanagementInfo'
export default {
name: 'bicyclerebatemanagement',
name: 'BicycleRebateManagement',
components: {
Pagination,
pageye,
@ -264,7 +264,6 @@ export default {
],
listQuery: {
params: {
createOrgSid: '',
createEndTime: '',
createStartTime: '',
rebateName: '',
@ -272,7 +271,10 @@ export default {
state: '',
vinNo: '',
vehModelName: '',
brandSid: ''
brandSid: '',
orgPath: '',
userSid: '',
menuUrl: ''
},
current: 1,
size: 5,
@ -297,8 +299,7 @@ export default {
})
getOrgSidByPath({ orgPath: window.sessionStorage.getItem('defaultOrgPath') }).then((resp) => {
if (resp.success) {
this.listQuery.params.createOrgSid = resp.data
brandDown({ useOrg: this.listQuery.params.createOrgSid }).then((res) => {
brandDown({ useOrg: resp.data }).then((res) => {
if (res.success) {
this.brand_list = res.data
}
@ -352,6 +353,9 @@ export default {
//
getList() {
this.listLoading = true
this.listQuery.params.userSid = window.sessionStorage.getItem('userSid')
this.listQuery.params.orgPath = window.sessionStorage.getItem('defaultOrgPath')
this.listQuery.params.menuUrl = this.$route.path
req.listPage(this.listQuery).then((response) => {
console.log('列表查询结果:', response)
this.listLoading = false
@ -372,7 +376,6 @@ export default {
handleReset() {
this.listQuery = {
params: {
createOrgSid: '',
createEndTime: '',
createStartTime: '',
rebateName: '',
@ -380,7 +383,10 @@ export default {
state: '',
vinNo: '',
vehModelName: '',
brandSid: ''
brandSid: '',
orgPath: '',
userSid: '',
menuUrl: ''
},
current: 1,
size: 5,
@ -390,7 +396,7 @@ export default {
},
toAdd() {
this.viewState = 2
this.$refs['divAdd'].showAdd(this.listQuery.params.createOrgSid)
this.$refs['divAdd'].showAdd()
},
toEdit(row) {
this.viewState = 3

28
anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagementAdd.vue

@ -110,11 +110,11 @@
<script>
import req from '@/api/bikerebate/bicyclerebatemanagement'
import { typeValues, fetchBySid } from '@/api/cheliang/dictcommons'
import { typeValues } from '@/api/cheliang/dictcommons'
import bicyclerebatemanagementByVehicle from './bicyclerebatemanagementByVehicle'
export default {
name: 'bicyclerebatemanagementAdd',
name: 'BicycleRebateManagementAdd',
components: {
bicyclerebatemanagementByVehicle
},
@ -136,10 +136,8 @@ export default {
calculationModeValue: '',
calculationStandard: '',
sid: '',
createOrgSid: '',
createOrgName: '',
useOrgSid: '',
useOrgName: '',
orgPath: '',
createBySid: '',
scmVehRebateVehs: []
},
rules: {},
@ -158,12 +156,6 @@ export default {
this.calculationMode_list = resp.data
}
})
fetchBySid(this.formobj.createOrgSid).then((res) => {
if (res.success) {
this.formobj.createOrgName = res.data.name
this.formobj.useOrgName = res.data.name
}
})
},
UpNumber(e) {
if (this.formobj.calculationModeValue === '') {
@ -215,13 +207,13 @@ export default {
} catch (e) {}
return Number(s1.replace('.', '')) * Number(s2.replace('.', '')) / Math.pow(10, m)
},
showAdd(createOrgSid) {
showAdd() {
this.$nextTick(() => {
this.$refs['form_obj'].clearValidate()
this.init()
})
this.formobj.createOrgSid = createOrgSid
this.formobj.useOrgSid = createOrgSid
this.formobj.orgPath = window.sessionStorage.getItem('defaultOrgPath')
this.formobj.createBySid = window.sessionStorage.getItem('userSid')
this.viewTitle = '【新增】单车返利'
},
changeRebateType(value) {
@ -358,10 +350,8 @@ export default {
calculationModeValue: '',
calculationStandard: '',
sid: '',
createOrgSid: '',
createOrgName: '',
useOrgSid: '',
useOrgName: '',
orgPath: '',
createBySid: '',
scmVehRebateVehs: []
}
this.$refs['form_obj'].resetFields()

2
anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagementByVehicle.vue

@ -112,7 +112,7 @@ import req from '@/api/bikerebate/bicyclerebatemanagement'
import { typeValues, brandDown, getOrgSidByPath } from '@/api/cheliang/dictcommons.js'
export default {
name: 'xuanzecheliang',
name: 'XuanZeCheLiang',
components: {
Pagination
},

6
anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagementEdit.vue

@ -118,7 +118,7 @@ import req from '@/api/bikerebate/bicyclerebatemanagement'
import { typeValues } from '@/api/cheliang/dictcommons'
export default {
name: 'bicyclerebatemanagementEdit',
name: 'BicycleRebateManagementEdit',
data() {
return {
viewTitle: '',
@ -134,10 +134,6 @@ export default {
calculationModeValue: '',
calculationStandard: '',
sid: '',
createOrgSid: '',
createOrgName: '',
useOrgSid: '',
useOrgName: '',
vinNo: '',
manufactorSettlementPrice: '',
freight: '',

2
anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagementInfo.vue

@ -107,7 +107,7 @@
import req from '@/api/bikerebate/bicyclerebatemanagement'
export default {
name: 'bicyclerebatemanagementInfo',
name: 'BicycleRebateManagementInfo',
data() {
return {
viewTitle: '',

2
anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliyutiFlow/danchefanliyutiDaiBanInfo.vue

@ -104,7 +104,7 @@ import req from '@/api/bikerebate/bicyclerebatewithholding'
import danchefanliInfo from './relation/danchefanliInfo'
export default {
name: 'danchefanliyutiDaiBanInfo',
name: 'DanCheFanLiYuTiDaiBanInfo',
components: {
danchefanliInfo
},

5
anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliyutiFlow/danchefanliyutiEdit.vue

@ -87,12 +87,12 @@
<script>
import req from '@/api/bikerebate/bicyclerebatewithholding'
import { brandDown, fetchBySid } from '@/api/cheliang/dictcommons'
import { brandDown } from '@/api/cheliang/dictcommons'
import danchefanlichoose from './relation/danchefanlichoose'
import danchefanliAdd from './relation/danchefanliAdd'
export default {
name: 'bicyclerebatewithholdingAdd',
name: 'DanCheFanLiYuTiEdit',
components: {
danchefanlichoose,
danchefanliAdd
@ -118,6 +118,7 @@ export default {
createBySid: '',
instanceId: '', // ID
taskId: '', // ID
orgPath: '',
scmVehRebateWiths: []
},
rules: {},

2
anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliyutiFlow/danchefanliyutiYiBanInfo.vue

@ -81,7 +81,7 @@ import req from '@/api/bikerebate/bicyclerebatewithholding'
import danchefanliInfo from './relation/danchefanliInfo'
export default {
name: 'danchefanliyutiYiBanInfo',
name: 'DanCheFanLiYuTiYiBanInfo',
components: {
danchefanliInfo
},

2
anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliyutiFlow/relation/danchefanliAdd.vue

@ -85,7 +85,7 @@
import req from '@/api/bikerebate/bicyclerebatewithholding'
export default {
name: 'danchefanliAdd',
name: 'DanCheFanLiAdd',
data() {
return {
viewTitle: '',

2
anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliyutiFlow/relation/danchefanliInfo.vue

@ -83,7 +83,7 @@
import req from '@/api/bikerebate/bicyclerebatewithholding'
export default {
name: 'danchefanliInfo',
name: 'DanCheFanLiInfo',
data() {
return {
viewTitle: '',

2
anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliyutiFlow/relation/danchefanlichoose.vue

@ -115,7 +115,7 @@ import ButtonBar from '@/components/ButtonBar'
import { typeValues } from '@/api/cheliang/dictcommons'
export default {
name: 'danchefanlichoose',
name: 'DanCheFanLiChoose',
components: {
Pagination,
ButtonBar

Loading…
Cancel
Save