15 changed files with 4495 additions and 12 deletions
@ -0,0 +1,137 @@ |
|||
import request from '@/utils/request' |
|||
|
|||
export default { |
|||
// 单车返利核对(待核对)查询分页列表
|
|||
listPage: function(data) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebate/checkApplyGetSpecialRebate', |
|||
method: 'post', |
|||
data: data, |
|||
headers: { 'Content-Type': 'application/json' } |
|||
}) |
|||
}, |
|||
// 单车返利核对(待核对)列表保存修改记录
|
|||
updateDate: function(data) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebate/save', |
|||
method: 'post', |
|||
data: data, |
|||
headers: { 'Content-Type': 'application/json' } |
|||
}) |
|||
}, |
|||
// 单车返利核对(待核对)列表调整修改记录
|
|||
adjustment: function(data) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebate/adjustment', |
|||
method: 'post', |
|||
data: data, |
|||
headers: { 'Content-Type': 'application/json' } |
|||
}) |
|||
}, |
|||
// 单车返利核对申请--点击添加--选择已核对单车返利信息
|
|||
checkApplyGetAlreadyUploadVehRebate: function(data) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebate/checkApplyGetAlreadyUploadSpecialRebate', |
|||
method: 'post', |
|||
data: data, |
|||
headers: { 'Content-Type': 'application/json' } |
|||
}) |
|||
}, |
|||
// 核对审核申请分页列表
|
|||
pagelist: function(data) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebatecheckapply/listPage', |
|||
method: 'post', |
|||
data: data, |
|||
headers: { 'Content-Type': 'application/json' } |
|||
}) |
|||
}, |
|||
// 删除
|
|||
delete: function(params) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebatecheckapply/delBySids', |
|||
method: 'DELETE', |
|||
data: params, |
|||
headers: { 'Content-Type': 'application/json' } |
|||
}) |
|||
}, |
|||
// 通过sid查询一条记录
|
|||
fetchDetailsBySid: function(data) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebatecheckapply/fetchDetailsBySid/' + data, |
|||
method: 'get' |
|||
}) |
|||
}, |
|||
// 专项返利核对审核申请保存
|
|||
save: function(data) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebatecheckapply/save', |
|||
method: 'post', |
|||
data: data, |
|||
headers: { 'Content-Type': 'application/json' } |
|||
}) |
|||
}, |
|||
// 查看明细
|
|||
vehRebateWithDetails: function(data) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebatewith/specialRebateWithDetails/' + data, |
|||
method: 'get' |
|||
}) |
|||
}, |
|||
// 提交流程
|
|||
submitVehicleApply: function(params) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebatecheckapply/submitSpecialRebateCheckApply', |
|||
method: 'post', |
|||
data: params, |
|||
headers: { 'Content-Type': 'application/json' } |
|||
}) |
|||
}, |
|||
// 代办任务同意办理
|
|||
complete: function(params) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebatecheckapply/complete', |
|||
method: 'post', |
|||
data: params |
|||
}) |
|||
}, |
|||
// 代办任务驳回任务
|
|||
reject: function(params) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebatecheckapply/reject', |
|||
method: 'post', |
|||
data: params |
|||
}) |
|||
}, |
|||
// 代办任务终止任务
|
|||
breakProcess: function(params) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebatecheckapply/breakProcess', |
|||
method: 'post', |
|||
data: params |
|||
}) |
|||
}, |
|||
// 代办任务撤回任务
|
|||
revokeProcess: function(params) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebatecheckapply/revokeProcess', |
|||
method: 'post', |
|||
data: params |
|||
}) |
|||
}, |
|||
|
|||
getNextNodesForSubmit: function(data) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebatecheckapply/getNextNodesForSubmit', |
|||
method: 'get', |
|||
params: data |
|||
}) |
|||
}, |
|||
getPreviousNodesForReject(data) { |
|||
return request({ |
|||
url: '/scm/v1/scmspecialrebatecheckapply/getPreviousNodesForReject', |
|||
method: 'get', |
|||
params: data |
|||
}) |
|||
} |
|||
} |
@ -0,0 +1,172 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<div v-show="viewState == 1"> |
|||
<!--标题按钮部分开始--> |
|||
<div class="tab-header webtop"> |
|||
<!--标题--> |
|||
<div>{{ viewTitle }}</div> |
|||
<!--start 添加修改按钮--> |
|||
<div> |
|||
<el-button type="danger" size="small" @click="handleDelete">删除</el-button> |
|||
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button> |
|||
</div> |
|||
</div> |
|||
<!--标题按钮部分结束--> |
|||
<!--Start 新增修改部分--> |
|||
<div class="listconadd"> |
|||
<el-form ref="form_obj" class="formadd"> |
|||
<el-table :key="tableKey" :data="list" :index="index" border style="width: 100%" @selection-change="handleSelectionChange"> |
|||
<el-table-column fixed type="selection" align="center" width="50px"/> |
|||
<el-table-column fixed width="80px" label="序号" type="index" :index="index + 1" align="center"/> |
|||
<el-table-column label="品牌" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.brandName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="创建日期" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.createTime }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="返利类型" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateTypeValue }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="返利名称" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预计返利" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.estimateRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传日期" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadDate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确定金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="是否调整" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.isAdjustment }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整说明" align="center" width="300"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentRemarks }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
</el-form> |
|||
</div> |
|||
</div> |
|||
<!--End 添加修改部分--> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import req from '@/api/specialrebate/specialrebatecheck' |
|||
|
|||
export default { |
|||
name: 'specialrebatetobecheckedAdd', |
|||
data() { |
|||
return { |
|||
viewTitle: '', |
|||
index: 0, |
|||
tableKey: 0, |
|||
viewState: 1, |
|||
rebateType: '', |
|||
sids: [], |
|||
// 表单数据 |
|||
list: [], |
|||
rules: {}, |
|||
submitdisabled: false |
|||
} |
|||
}, |
|||
methods: { |
|||
handleSelectionChange(row) { |
|||
const aa = [] |
|||
row.forEach((element) => { |
|||
aa.push(element.sid) |
|||
}) |
|||
this.sids = aa |
|||
console.log('sids', this.sids) |
|||
}, |
|||
showInfo(row) { |
|||
this.$nextTick(() => { |
|||
this.$refs['form_obj'].clearValidate() |
|||
}) |
|||
this.viewTitle = '专项返利核对审核申请明细' |
|||
this.rebateType = row.rebateTypeValue |
|||
console.log('编辑回显', row) |
|||
req.vehRebateWithDetails(row.specialRebateSids).then((resp) => { |
|||
this.list = resp.data |
|||
}).catch((e) => { |
|||
this.list = [] |
|||
}) |
|||
}, |
|||
handleDelete() { |
|||
if (this.sids.length === 0) { |
|||
this.$message({ |
|||
showClose: true, |
|||
type: 'error', |
|||
message: '请选择至少一条记录进行删除操作' |
|||
}) |
|||
return |
|||
} |
|||
for (var i = 0; i < this.list.length; i++) { |
|||
for (var j = 0; j < this.sids.length; j++) { |
|||
if (this.list[i].sid === this.sids[j]) { |
|||
this.list.splice(i, 1) |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
// 返回(===既判断) |
|||
handleReturn() { |
|||
// 表单数据 |
|||
const data_list = [] |
|||
for (var i = 0; i < this.list.length; i++) { |
|||
data_list.push({ |
|||
sid: this.list[i].sid, |
|||
rebateTypeValue: this.list[i].rebateTypeValue, |
|||
rebateTypeKey: this.list[i].rebateTypeKey, |
|||
withRebate: this.list[i].estimateRebate, |
|||
brandName: this.list[i].brandName, |
|||
brandSid: this.list[i].brandSid, |
|||
uploadMoney: this.list[i].uploadMoney, |
|||
stayDetermineMoney: this.list[i].stayDetermineMoney, |
|||
adjustmentMoney: this.list[i].adjustmentMoney, |
|||
money: this.list[i].money |
|||
}) |
|||
} |
|||
this.$emit('backAdd', data_list, this.rebateType) |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
<style scoped> |
|||
</style> |
|||
|
@ -0,0 +1,130 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<div> |
|||
<!--标题按钮部分开始--> |
|||
<div class="tab-header webtop"> |
|||
<!--标题--> |
|||
<div>{{ viewTitle }}</div> |
|||
<!--start 添加修改按钮--> |
|||
<div> |
|||
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button> |
|||
</div> |
|||
</div> |
|||
<!--标题按钮部分结束--> |
|||
<!--Start 新增修改部分--> |
|||
<div class="listconadd"> |
|||
<el-form ref="form_obj" class="formadd"> |
|||
<el-table :key="tableKey" :data="list" :index="index" border style="width: 100%"> |
|||
<el-table-column fixed width="60px" label="序号" type="index" :index="index + 1" align="center"/> |
|||
<el-table-column label="品牌" align="center" width="200"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.brandName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="创建日期" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.createTime }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="返利类型" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateTypeValue }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="返利名称" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预计返利" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.estimateRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传日期" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadDate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确定金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="是否调整" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.isAdjustment }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整说明" align="center" width="300"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentRemarks }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
</el-form> |
|||
</div> |
|||
</div> |
|||
<!--End 添加修改部分--> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import req from '@/api/specialrebate/specialrebatecheck' |
|||
|
|||
export default { |
|||
name: 'sepcialrebatetobecheckedInfo', |
|||
data() { |
|||
return { |
|||
viewTitle: '', |
|||
index: 0, |
|||
tableKey: 0, |
|||
viewState: 1, |
|||
sids: [], |
|||
// 表单数据 |
|||
list: [], |
|||
rules: {}, |
|||
submitdisabled: false |
|||
} |
|||
}, |
|||
methods: { |
|||
showInfo(row) { |
|||
this.$nextTick(() => { |
|||
this.$refs['form_obj'].clearValidate() |
|||
}) |
|||
this.viewTitle = '专项返利核对审核申请明细' |
|||
console.log('编辑回显', row) |
|||
req.vehRebateWithDetails(row.specialRebateSids).then((resp) => { |
|||
this.list = resp.data |
|||
}).catch((e) => { |
|||
this.list = [] |
|||
}) |
|||
}, |
|||
// 返回(===既判断) |
|||
handleReturn() { |
|||
// 表单数据 |
|||
this.list = [] |
|||
this.$refs['form_obj'].resetFields() |
|||
this.$emit('doback') |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
<style scoped> |
|||
</style> |
|||
|
@ -0,0 +1,331 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<!-- Start 列表页面 --> |
|||
<div> |
|||
<button-bar view-title="已上传专项返利列表" ref="btnbar" :btndisabled="btndisabled" @btnhandle="btnHandle"/> |
|||
<div class="main-content"> |
|||
<!-- <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-input v-model="listQuery.params.mainSid" placeholder="请输入车架号" clearable/>--> |
|||
<!-- </el-form-item>--> |
|||
<!-- <el-form-item label="车型">--> |
|||
<!-- <el-input v-model="listQuery.params.mainSid" placeholder="请输入车架号" clearable/>--> |
|||
<!-- </el-form-item>--> |
|||
<!-- <el-form-item label="车架号">--> |
|||
<!-- <el-input v-model="listQuery.params.mainSid" placeholder="请输入车架号" clearable/>--> |
|||
<!-- </el-form-item>--> |
|||
<!-- <el-form-item label="创建日期">--> |
|||
<!-- <el-date-picker v-model="listQuery.params.createStartTime" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/>--> |
|||
<!-- <span style="padding: 0 8px">至</span>--> |
|||
<!-- <el-date-picker v-model="listQuery.params.createEndTime" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/>--> |
|||
<!-- </el-form-item>--> |
|||
<!-- <el-form-item label="返利类型">--> |
|||
<!-- <el-input v-model="listQuery.params.mainSid" placeholder="请输入车架号" clearable/>--> |
|||
<!-- </el-form-item>--> |
|||
<!-- <el-form-item label="返利名称">--> |
|||
<!-- <el-input v-model="listQuery.params.mainSid" placeholder="请输入车架号" clearable/>--> |
|||
<!-- </el-form-item>--> |
|||
<!-- <el-form-item label="状态">--> |
|||
<!-- <el-input v-model="listQuery.params.mainSid" placeholder="请输入车架号" clearable/>--> |
|||
<!-- </el-form-item>--> |
|||
<!-- </el-form>--> |
|||
<!-- <div class="btn" style="text-align: center;">--> |
|||
<!-- <el-button type="primary" icon="el-icon-search" @click="handleFilter" size="small">查询</el-button>--> |
|||
<!-- <el-button type="primary" icon="el-icon-refresh" @click="handleReset" size="small">重置</el-button>--> |
|||
<!-- </div>--> |
|||
<!-- </div>--> |
|||
<!-- </div>--> |
|||
<div class="listtop"> |
|||
<div class="tit">已上传专项返利列表</div> |
|||
</div> |
|||
<div class=""> |
|||
<el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%;" @selection-change="handleSelectionChange"> |
|||
<el-table-column fixed type="selection" align="center" width="50px"/> |
|||
<el-table-column fixed label="序号" type="index" :index="indexMethod" align="center" width="80px"/> |
|||
<el-table-column label="品牌" align="center" width="200"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.brandName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="创建日期" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.createTime }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="返利类型" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateTypeValue }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="返利名称" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预计返利" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.estimateRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传日期" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadDate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确定金额" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="是否调整" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.isAdjustment }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整说明" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentRemarks }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
</div> |
|||
<div class="pages"> |
|||
<!-- 翻页 --> |
|||
<pagination v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import req from '@/api/specialrebate/specialrebatecheck' |
|||
import Pagination from '@/components/pagination' |
|||
import ButtonBar from '@/components/ButtonBar' |
|||
|
|||
export default { |
|||
name: 'yiheduizhuanxiangfanli', |
|||
components: { |
|||
Pagination, |
|||
ButtonBar |
|||
}, |
|||
data() { |
|||
return { |
|||
btndisabled: false, |
|||
btnList: [ |
|||
{ |
|||
type: 'primary', |
|||
size: 'small', |
|||
icon: '', |
|||
btnKey: 'doConfirm', |
|||
btnLabel: '确定' |
|||
}, |
|||
{ |
|||
type: 'info', |
|||
size: 'small', |
|||
icon: 'cross', |
|||
btnKey: 'doClose', |
|||
btnLabel: '关闭' |
|||
} |
|||
], |
|||
isSearchShow: false, |
|||
searchxianshitit: '显示查询条件', |
|||
// 查询条件 ----------- |
|||
tableKey: 0, |
|||
list: [], |
|||
sids: [], |
|||
sids_list: [], |
|||
FormLoading: false, |
|||
listLoading: false, |
|||
listQuery: { |
|||
params: { |
|||
brandSid: '', |
|||
createOrgSid: '', |
|||
sidList: [] |
|||
}, |
|||
current: 1, |
|||
size: 5, |
|||
total: 0 |
|||
}, |
|||
rules: {} |
|||
} |
|||
}, |
|||
created() { |
|||
// 加载列表 |
|||
this.getList() |
|||
}, |
|||
mounted() { |
|||
this.$refs['btnbar'].setButtonList(this.btnList) |
|||
}, |
|||
methods: { |
|||
// 搜索条件效果 |
|||
clicksearchShow() { |
|||
this.isSearchShow = !this.isSearchShow |
|||
if (this.isSearchShow) { |
|||
this.searchxianshitit = '隐藏查询条件' |
|||
} else { |
|||
this.searchxianshitit = '显示查询条件' |
|||
} |
|||
}, |
|||
btnHandle(btnKey) { |
|||
console.log('XXXXXXXXXXXXXXX ' + btnKey) |
|||
switch (btnKey) { |
|||
case 'doConfirm': |
|||
this.doConfirm() |
|||
break |
|||
case 'doClose': |
|||
this.doClose() |
|||
break |
|||
default: |
|||
break |
|||
} |
|||
}, |
|||
// 序号 |
|||
indexMethod(index) { |
|||
var pagestart = (this.listQuery.current - 1) * this.listQuery.size |
|||
var pageindex = index + 1 + pagestart |
|||
return pageindex |
|||
}, |
|||
handleSelectionChange(row) { |
|||
var dateTime = '' |
|||
let date = new Date() |
|||
let year = date.getFullYear() // 年 |
|||
let month = date.getMonth() + 1 // 月 |
|||
dateTime = year + '年' + month + '月' |
|||
const aa = [] |
|||
const bb = [] |
|||
row.forEach((element) => { |
|||
if (element.withholdingDateCopy === dateTime) { |
|||
aa.push({ |
|||
sid: element.sid, |
|||
rebateTypeValue: element.rebateTypeValue, |
|||
rebateTypeKey: element.rebateTypeKey, |
|||
withRebate: element.estimateRebate, |
|||
brandName: element.brandName, |
|||
brandSid: element.brandSid, |
|||
uploadMoney: element.uploadMoney, |
|||
stayDetermineMoney: element.stayDetermineMoney, |
|||
adjustmentMoney: element.adjustmentMoney, |
|||
money: element.money |
|||
}) |
|||
} else { |
|||
bb.push({ |
|||
sid: element.sid, |
|||
withholdingDate: element.withholdingDateCopy, |
|||
withRebate: element.estimateRebate, |
|||
uploadMoney: element.uploadMoney, |
|||
stayDetermineMoney: element.stayDetermineMoney, |
|||
adjustmentMoney: element.adjustmentMoney, |
|||
money: element.money |
|||
}) |
|||
} |
|||
}) |
|||
this.sids = aa |
|||
this.sids_list = bb |
|||
console.log('sids', this.sids, bb, 99999999) |
|||
}, |
|||
// 查询列表信息 |
|||
getList() { |
|||
this.listLoading = true |
|||
req.checkApplyGetAlreadyUploadVehRebate(this.listQuery).then((response) => { |
|||
console.log('列表查询结果:', response) |
|||
this.listLoading = false |
|||
if (response.success && response.data && response.data.total > 0) { |
|||
this.list = response.data.records |
|||
this.listQuery.total = response.data.total |
|||
} else { |
|||
this.list = [] |
|||
this.listQuery.total = 0 |
|||
} |
|||
}) |
|||
}, |
|||
showData(value, val, createOrgSid, brandSid) { |
|||
console.log(value, val, 898989) |
|||
this.listQuery.params.createOrgSid = createOrgSid |
|||
this.listQuery.params.brandSid = brandSid |
|||
const aa = [] |
|||
if (value.length > 0) { |
|||
for (var i = 0; i < value.length; i++) { |
|||
for (var j = 0; j < value[i].specialRebateSids.length; j++) { |
|||
aa.push(value[i].specialRebateSids[j]) |
|||
} |
|||
} |
|||
} |
|||
const bb = [] |
|||
if (val.length > 0) { |
|||
for (var k = 0; k < val.length; k++) { |
|||
for (var l = 0; l < val[k].specialRebateSids.length; l++) { |
|||
bb.push(val[k].specialRebateSids[l]) |
|||
} |
|||
} |
|||
} |
|||
if (aa.length > 0 && bb.length > 0) { |
|||
this.listQuery.params.sidList = aa |
|||
for (var p = 0; p < bb.length; p++) { |
|||
this.listQuery.params.sidList.push(bb[p]) |
|||
} |
|||
} else if (aa.length > 0 && bb.length === 0) { |
|||
this.listQuery.params.sidList = aa |
|||
} else if (aa.length === 0 && bb.length > 0) { |
|||
this.listQuery.params.sidList = bb |
|||
} else if (aa.length === 0 && bb.length === 0) { |
|||
this.listQuery.params.sidList = [] |
|||
} |
|||
this.getList() |
|||
}, |
|||
// 查询按钮 |
|||
handleFilter() { |
|||
this.listQuery.current = 1 |
|||
this.getList() |
|||
}, |
|||
handleReset() { |
|||
this.listQuery = { |
|||
params: { |
|||
createBySid: '', |
|||
createEndTime: '', |
|||
createStartTime: '' |
|||
}, |
|||
current: 1, |
|||
size: 5, |
|||
total: 0 |
|||
} |
|||
this.getList() |
|||
}, |
|||
doConfirm() { |
|||
if (this.sids.length > 0 || this.sids_list.length > 0) { |
|||
this.$emit('backData', this.sids, this.sids_list) |
|||
} else { |
|||
this.$notify({ |
|||
title: '提示', |
|||
message: '请选择至少一条记录!', |
|||
type: 'error', |
|||
duration: 2000 |
|||
}) |
|||
} |
|||
}, |
|||
doClose() { |
|||
this.$emit('doback') |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
<style scoped> |
|||
</style> |
@ -0,0 +1,365 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<!-- Start 列表页面 --> |
|||
<div v-show="viewState == 1"> |
|||
<button-bar view-title="专项返利核对审核申请管理" ref="btnbar" :btndisabled="btndisabled" @btnhandle="btnHandle"/> |
|||
<div class="main-content"> |
|||
<div class="switch_btn"> |
|||
<el-button class="" @click="handleClick">待核对</el-button> |
|||
<el-button :class="{btn_style:viewState === 1}">核对审核申请</el-button> |
|||
</div> |
|||
<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-select v-model="listQuery.params.brandSid" placeholder="请选择" filterable clearable> |
|||
<el-option v-for="item in brand_list" :key="item.sid" :label="item.brandName" :value="item.sid"/> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item label="申请标题"> |
|||
<el-input v-model="listQuery.params.checkApply" placeholder="" clearable/> |
|||
</el-form-item> |
|||
<el-form-item label="创建日期"> |
|||
<el-date-picker v-model="listQuery.params.createStartTime" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/> |
|||
<span style="padding: 0 8px">至</span> |
|||
<el-date-picker v-model="listQuery.params.createEndTime" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/> |
|||
</el-form-item> |
|||
</el-form> |
|||
<div class="btn" style="text-align: center;"> |
|||
<el-button type="primary" icon="el-icon-search" @click="handleFilter" size="small">查询</el-button> |
|||
<el-button type="primary" icon="el-icon-refresh" @click="handleReset" size="small">重置</el-button> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="listtop"> |
|||
<div class="tit">专项返利核对审核申请列表</div> |
|||
<pageye v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList"/> |
|||
</div> |
|||
<div class=""> |
|||
<el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%;" @selection-change="handleSelectionChange"> |
|||
<el-table-column fixed type="selection" align="center" width="50px"/> |
|||
<el-table-column fixed label="序号" type="index" :index="indexMethod" align="center" width="80px"/> |
|||
<el-table-column fixed label="操作" align="center" width="180px" > |
|||
<template slot-scope="scope"> |
|||
<el-button type="primary" size="mini" :disabled="scope.row.nodeState =='发起申请' ? false : scope.row.nodeState == '待提交' ? false : true" @click="toEdit(scope.row)">办理</el-button> |
|||
<el-button type="primary" size="mini" @click="toInfo(scope.row)">查看</el-button> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="状态" width="180px" header-align="center"> |
|||
<template slot-scope="scope"> |
|||
<span v-if="scope.row.nodeState=='待提交'" type="primary" size="mini">待提交</span> |
|||
<span v-else @click="flowRecord(scope.row)" class="bluezi">{{ scope.row.nodeState }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="分公司" align="center" width="200"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.createOrgName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="品牌" align="center" width="200"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.brandName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="申请标题" align="center" width="200"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.checkApply }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提返利" align="center" width="250"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.estimateRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center" width="250"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确定金额" align="center" width="250"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center" width="250"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center" width="250"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="创建日期" align="center" width="200"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.createTime }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="创建人" align="center" width="200"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.createByName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
</div> |
|||
<div class="pages"> |
|||
<!-- 翻页 --> |
|||
<pagination v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<specialrebatecheckAdd v-show="viewState == 2" ref="divAdd" @doback="resetState" @reloadlist="getList"/> |
|||
<specialrebatecheckInfo v-show="viewState == 3" ref="divInfo" @doback="resetState"/> |
|||
<el-dialog title="" :visible.sync="centerDialogVisible" width="78%" height="1%" :before-close="closeIt" center> |
|||
<iframe frameborder="0" id="iframe" style="width:100%;" scrolling="no" :src="this.centerDialogVisible === true ? url :''"></iframe> |
|||
</el-dialog> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import req from '@/api/specialrebate/specialrebatecheck' |
|||
import Pagination from '@/components/pagination' |
|||
import pageye from '@/components/pagination/pageye' |
|||
import ButtonBar from '@/components/ButtonBar' |
|||
import { brandDown, getPathSidByUserSid } from '@/api/cheliang/dictcommons' |
|||
import specialrebatecheckAdd from './specialrebatecheckAdd' |
|||
import specialrebatecheckInfo from './specialrebatecheckInfo' |
|||
import {getStorage} from "@/utils/auth"; |
|||
|
|||
export default { |
|||
name: 'specialrebatecheck', |
|||
components: { |
|||
Pagination, |
|||
pageye, |
|||
ButtonBar, |
|||
specialrebatecheckAdd, |
|||
specialrebatecheckInfo |
|||
}, |
|||
data() { |
|||
return { |
|||
url: '', |
|||
dialogHeight: '80%', |
|||
centerDialogVisible: false, |
|||
btndisabled: false, |
|||
btnList: [ |
|||
{ |
|||
type: 'danger', |
|||
size: 'small', |
|||
icon: 'del', |
|||
btnKey: 'doDel', |
|||
btnLabel: '删除' |
|||
}, |
|||
{ |
|||
type: 'info', |
|||
size: 'small', |
|||
icon: 'cross', |
|||
btnKey: 'doClose', |
|||
btnLabel: '关闭' |
|||
} |
|||
], |
|||
isSearchShow: false, |
|||
searchxianshitit: '显示查询条件', |
|||
viewState: 1, |
|||
// 查询条件 ----------- |
|||
tableKey: 0, |
|||
list: [], |
|||
sids: [], |
|||
FormLoading: false, |
|||
listLoading: false, |
|||
brand_list: '', |
|||
listQuery: { |
|||
params: { |
|||
brandSid: '', |
|||
checkApply: '', |
|||
createOrgSid: '', |
|||
createEndTime: '', |
|||
createStartTime: '' |
|||
}, |
|||
current: 1, |
|||
size: 5, |
|||
total: 0 |
|||
}, |
|||
rules: {} |
|||
} |
|||
}, |
|||
mounted() { |
|||
// 在外部vue的window上添加postMessage的监听,而且绑定处理函数handleMessage |
|||
window.addEventListener('message', this.handleMessage) |
|||
this.$refs['btnbar'].setButtonList(this.btnList) |
|||
}, |
|||
methods: { |
|||
async handleMessage(event) { |
|||
var code = '' |
|||
if (event.data.params !== null && event.data.params !== undefined) { |
|||
code = event.data.params.code |
|||
} |
|||
if (code === 1) { |
|||
this.init() |
|||
this.centerDialogVisible = false |
|||
} else if (code === 2) { |
|||
this.dialogHeight = event.data.params.data |
|||
this.setIframeHeight(document.getElementById('iframe')) |
|||
} |
|||
}, |
|||
closeIt() { |
|||
this.url = '' |
|||
this.centerDialogVisible = false |
|||
}, |
|||
setIframeHeight(iframe) { |
|||
iframe.height = this.dialogHeight |
|||
}, |
|||
flowRecord(row) { |
|||
this.centerDialogVisible = true |
|||
var params = { |
|||
deployId: row.procDefId, |
|||
procInsId: row.procInstId, |
|||
token: getStorage() |
|||
} |
|||
this.url = '/#/flow/flowRecordForBusiness?data=' + encodeURI((JSON.stringify(params))) |
|||
}, |
|||
init() { |
|||
getPathSidByUserSid({ userSid: window.sessionStorage.getItem('userSid') }).then((resp) => { |
|||
if (resp.success) { |
|||
this.listQuery.params.createOrgSid = resp.data |
|||
brandDown({ useOrg: this.listQuery.params.createOrgSid }).then((res) => { |
|||
if (res.success) { |
|||
this.brand_list = res.data |
|||
} |
|||
}) |
|||
this.getList() |
|||
} |
|||
}) |
|||
}, |
|||
// 搜索条件效果 |
|||
clicksearchShow() { |
|||
this.isSearchShow = !this.isSearchShow |
|||
if (this.isSearchShow) { |
|||
this.searchxianshitit = '隐藏查询条件' |
|||
} else { |
|||
this.searchxianshitit = '显示查询条件' |
|||
} |
|||
}, |
|||
btnHandle(btnKey) { |
|||
console.log('XXXXXXXXXXXXXXX ' + btnKey) |
|||
switch (btnKey) { |
|||
case 'doDel': |
|||
this.doDel() |
|||
break |
|||
case 'doClose': |
|||
this.doClose() |
|||
break |
|||
default: |
|||
break |
|||
} |
|||
}, |
|||
// 序号 |
|||
indexMethod(index) { |
|||
var pagestart = (this.listQuery.current - 1) * this.listQuery.size |
|||
var pageindex = index + 1 + pagestart |
|||
return pageindex |
|||
}, |
|||
handleSelectionChange(row) { |
|||
const aa = [] |
|||
row.forEach((element) => { |
|||
aa.push(element.sid) |
|||
}) |
|||
this.sids = aa |
|||
console.log('sids', this.sids) |
|||
}, |
|||
// 查询列表信息 |
|||
getList() { |
|||
this.listLoading = true |
|||
req.pagelist(this.listQuery).then((response) => { |
|||
console.log('列表查询结果:', response) |
|||
this.listLoading = false |
|||
if (response.success && response.data && response.data.total > 0) { |
|||
this.list = response.data.records |
|||
this.listQuery.total = response.data.total |
|||
} else { |
|||
this.list = [] |
|||
this.listQuery.total = 0 |
|||
} |
|||
}) |
|||
}, |
|||
// 查询按钮 |
|||
handleFilter() { |
|||
this.listQuery.current = 1 |
|||
this.getList() |
|||
}, |
|||
handleReset() { |
|||
this.listQuery = { |
|||
params: { |
|||
brandSid: '', |
|||
checkApply: '', |
|||
createOrgSid: '', |
|||
createEndTime: '', |
|||
createStartTime: '' |
|||
}, |
|||
current: 1, |
|||
size: 5, |
|||
total: 0 |
|||
} |
|||
this.init() |
|||
}, |
|||
handleClick() { |
|||
this.$parent.resetState() |
|||
}, |
|||
toEdit(row) { |
|||
this.viewState = 2 |
|||
this.$refs['divAdd'].showEdit(row) |
|||
}, |
|||
toInfo(row) { |
|||
this.viewState = 3 |
|||
this.$refs['divInfo'].showInfo(row) |
|||
}, |
|||
doDel() { |
|||
if (this.sids.length === 0) { |
|||
this.$message({ showClose: true, type: 'error', message: '请选择至少一条记录进行删除操作' }) |
|||
return |
|||
} |
|||
const tip = '请确认是否删除所选 ' + this.sids.length + ' 条记录?' |
|||
this.$confirm(tip, '提示', { |
|||
confirmButtonText: '确定', |
|||
cancelButtonText: '取消', |
|||
type: 'warning' |
|||
}).then(() => { |
|||
const loading = this.$loading({ |
|||
lock: true, |
|||
text: 'Loading', |
|||
spinner: 'el-icon-loading', |
|||
background: 'rgba(0, 0, 0, 0.7)' |
|||
}) |
|||
req.delete(this.sids).then(resp => { |
|||
if (resp.success) { |
|||
this.$message({ type: 'success', message: resp.msg, showClose: true }) |
|||
} |
|||
this.getList() |
|||
loading.close() |
|||
}).catch(e => { |
|||
loading.close() |
|||
}) |
|||
}).catch(() => { |
|||
}) |
|||
}, |
|||
resetState() { |
|||
this.viewState = 1 |
|||
}, |
|||
doClose() { |
|||
this.$store.dispatch('tagsView/delView', this.$route) |
|||
this.$router.go(-1) |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
<style scoped> |
|||
.switch_btn { |
|||
padding: 15px 0 10px 0; |
|||
} |
|||
.btn_style { |
|||
background-color: #018ad2; |
|||
color: white; |
|||
font-weight: 600; |
|||
} |
|||
</style> |
@ -0,0 +1,564 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<div v-show="viewState == 1"> |
|||
<!--标题按钮部分开始--> |
|||
<div class="tab-header webtop"> |
|||
<!--标题--> |
|||
<div>{{ viewTitle }}</div> |
|||
<!--start 添加修改按钮--> |
|||
<div> |
|||
<el-button type="primary" size="small" :disabled="submitdisabled" @click="save()">保存 |
|||
</el-button> |
|||
<el-button type="primary" size="small" :disabled="submitdisabled" @click="submit()">提交 |
|||
</el-button> |
|||
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button> |
|||
</div> |
|||
</div> |
|||
<!--标题按钮部分结束--> |
|||
<!--Start 新增修改部分--> |
|||
<div class="listconadd"> |
|||
<div class="titwu"><span>{{ formobj.checkApply }}专项返利核对审核申请</span></div> |
|||
<el-form ref="form_obj" :model="formobj" :rules="rules" class="formadd"> |
|||
<el-row class="rowStyle"> |
|||
<el-col :span="2" class="tleftb colOneStyle"> |
|||
<span>品牌:</span> |
|||
</el-col> |
|||
<el-col :span="4" class="colOneStyle"> |
|||
<el-form-item> |
|||
<el-select :disabled="dialogStatus === 'edit'" v-model="formobj.brandName" placeholder="请选择" filterable clearable @change="changeBrand"> |
|||
<el-option v-for="item in brand_list" :key="item.sid" :label="item.brandName" :value="item.brandName"/> |
|||
</el-select> |
|||
</el-form-item> |
|||
</el-col> |
|||
<el-col :span="18" class="tleftb colOneStyle"> |
|||
<el-button size="small" type="primary" @click="handleSelect()">添加</el-button> |
|||
</el-col> |
|||
</el-row> |
|||
<div class="title"> |
|||
<div>本月各项返利核对情况</div> |
|||
</div> |
|||
<el-table :key="tableKey" :data="formobj.scmWhenSpecialrebateCheckapplydetailDetails" :index="index" border style="width: 100%"> |
|||
<el-table-column fixed width="80px" label="序号" type="index" :index="index + 1" align="center"/> |
|||
<el-table-column label="返利类型" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateTypeValue }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.num }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确认金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="明细" align="center"> |
|||
<template slot-scope="scope"> |
|||
<el-button type="primary" size="mini" @click="handleLook(scope.row)">查看</el-button> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
<div class="divStyle"> |
|||
<div>预提返利本月核对情况</div> |
|||
<el-button type="primary" size="mini" class="btntopblueline" @click="handleCheck">往月核对情况</el-button> |
|||
</div> |
|||
<el-table :key="lastSpecialrebateKey" :data="formobj.scmLastSpecialrebateCheckapplydetailDetails" border style="width: 100%"> |
|||
<el-table-column label="预提年月" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withholdingDate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withholdingAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确认金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="未上传数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.notUploadedAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="未上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.notUploadedCost }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
<el-row> |
|||
<el-col :span="2" class="tleftb"> |
|||
<span>备注</span> |
|||
</el-col> |
|||
<el-col :span="22"> |
|||
<el-form-item><el-input v-model="formobj.remarks" placeholder="" class="addinputw" clearable></el-input></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
</el-form> |
|||
</div> |
|||
</div> |
|||
<!--End 添加修改部分--> |
|||
<yiheduizhuanxiangfanli v-show="viewState == 2" ref="divSelect" @backData="backData" @doback="resetState"/> |
|||
<specialrebatetobecheckedAdd v-show="viewState == 3" ref="divAdd" @backAdd="backAdd" @doback="resetState"/> |
|||
<el-dialog :visible.sync="dialogVisible" width="60%"> |
|||
<div class="titwu"><span>往月核对情况</span></div> |
|||
<el-form class="formadd"> |
|||
<el-row style="border-top: 1px solid #E0E3EB"> |
|||
<el-col :span="3" class="tleftb"> |
|||
<span>月促政策</span> |
|||
</el-col> |
|||
<el-col :span="21"> |
|||
<el-form-item><span>{{ summation }}</span></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
<el-table :key="checkKey" :data="checkList" border width="100%"> |
|||
<el-table-column label="计提月份" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.month }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="计提" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.month }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.month }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="未上传" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.month }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.month }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
</el-form> |
|||
</el-dialog> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import req from '@/api/specialrebate/specialrebatecheck' |
|||
import { fetchBySid, brandDown } from '@/api/cheliang/dictcommons' |
|||
import yiheduizhuanxiangfanli from './relation/yiheduizhuanxiangfanli' |
|||
import specialrebatetobecheckedAdd from './relation/specialrebatetobecheckedAdd' |
|||
|
|||
export default { |
|||
name: 'specialrebatecheckAdd', |
|||
components: { |
|||
yiheduizhuanxiangfanli, |
|||
specialrebatetobecheckedAdd |
|||
}, |
|||
data() { |
|||
return { |
|||
viewTitle: '', |
|||
viewState: 1, |
|||
index: 0, |
|||
tableKey: 0, |
|||
lastSpecialrebateKey: 1, |
|||
checkKey: 2, |
|||
dialogVisible: false, |
|||
summation: '', |
|||
checkList: [], |
|||
dialogStatus: '', |
|||
brand_list: [], |
|||
// 表单数据 |
|||
formobj: { |
|||
sid: '', |
|||
createByName: '', |
|||
createBySid: '', |
|||
brandName: '', |
|||
brandSid: '', |
|||
checkApply: '', |
|||
createOrgName: '', |
|||
createOrgSid: '', |
|||
useOrgName: '', |
|||
useOrgSid: '', |
|||
remarks: '', |
|||
instanceId: '', // 流程实例ID |
|||
taskId: '', // 任务ID |
|||
scmWhenSpecialrebateCheckapplydetailDetails: [], |
|||
scmLastSpecialrebateCheckapplydetailDetails: [] |
|||
}, |
|||
rules: {}, |
|||
submitdisabled: false |
|||
} |
|||
}, |
|||
methods: { |
|||
// 获取制单日期 |
|||
newDate() { |
|||
let date = new Date() |
|||
let year = date.getFullYear() // 年 |
|||
let month = date.getMonth() + 1 // 月 |
|||
this.formobj.checkApply = year + '年' + month + '月' |
|||
}, |
|||
init() { |
|||
fetchBySid(this.formobj.createOrgSid).then((res) => { |
|||
if (res.success) { |
|||
this.formobj.createOrgName = res.data.name |
|||
this.formobj.useOrgName = res.data.name |
|||
} |
|||
}) |
|||
brandDown({ useOrg: this.formobj.createOrgSid }).then((res) => { |
|||
if (res.success) { |
|||
this.brand_list = res.data |
|||
} |
|||
}) |
|||
}, |
|||
showAdd(createOrgSid) { |
|||
this.$nextTick(() => { |
|||
this.$refs['form_obj'].clearValidate() |
|||
this.init() |
|||
this.newDate() |
|||
}) |
|||
this.dialogStatus = 'add' |
|||
this.formobj.createOrgSid = createOrgSid |
|||
this.formobj.useOrgSid = createOrgSid |
|||
this.formobj.createByName = window.sessionStorage.getItem('name') |
|||
this.formobj.createBySid = window.sessionStorage.getItem('userSid') |
|||
this.viewTitle = '【新增】专项返利核对审核申请' |
|||
}, |
|||
showEdit(row) { |
|||
this.$nextTick(() => { |
|||
this.$refs['form_obj'].clearValidate() |
|||
}) |
|||
this.dialogStatus = 'edit' |
|||
this.viewTitle = '【编辑】专项返利核对审核申请' |
|||
console.log('编辑回显', row.sid) |
|||
req.fetchDetailsBySid(row.sid).then((resp) => { |
|||
this.formobj = resp.data |
|||
this.formobj.instanceId = resp.data.procInstId |
|||
}).catch((e) => { |
|||
this.formobj = row |
|||
}) |
|||
}, |
|||
changeBrand(value) { |
|||
let bb = null |
|||
this.brand_list.forEach((e) => { |
|||
if (e.brandName === value) { |
|||
bb = { |
|||
name: e.brandName, |
|||
sid: e.sid |
|||
} |
|||
} |
|||
}) |
|||
this.formobj.brandSid = bb.sid |
|||
}, |
|||
// 明细表添加一行数据 |
|||
handleSelect() { |
|||
if (this.formobj.brandName === '' || this.formobj.brandName === null || this.formobj.brandName === undefined) { |
|||
this.$message({ showClose: true, type: 'error', message: '请先选择品牌' }) |
|||
return |
|||
} |
|||
this.viewState = 2 |
|||
this.$refs['divSelect'].showData(this.formobj.scmWhenSpecialrebateCheckapplydetailDetails, this.formobj.scmLastSpecialrebateCheckapplydetailDetails, this.formobj.createOrgSid, this.formobj.brandSid) |
|||
}, |
|||
backData(value, val) { |
|||
this.viewState = 1 |
|||
if (value.length > 0) { |
|||
for (var i in value) { |
|||
let cval = value[i] |
|||
if (!this.formobj.scmWhenSpecialrebateCheckapplydetailDetails || this.formobj.scmWhenSpecialrebateCheckapplydetailDetails.length === 0) { |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails = [] |
|||
} |
|||
let v = 0 |
|||
for (var j in this.formobj.scmWhenSpecialrebateCheckapplydetailDetails) { |
|||
if (this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].rebateTypeValue === cval.rebateTypeValue) { |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].num = parseInt(this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].num) + parseInt(1) |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].withRebate = parseInt(this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].withRebate) + parseInt(cval.withRebate) |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].uploadMoney = parseInt(this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].uploadMoney) + parseInt(cval.uploadMoney) |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].stayDetermineMoney = parseInt(this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].stayDetermineMoney) + parseInt(cval.stayDetermineMoney) |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].adjustmentMoney = parseInt(this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].adjustmentMoney) + parseInt(cval.adjustmentMoney) |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].money = parseInt(this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].money) + parseInt(cval.money) |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].specialRebateSids.push(cval.sid) |
|||
v = 1 |
|||
break |
|||
} |
|||
} |
|||
if (v === 0) { |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails.push({ |
|||
rebateTypeKey: cval.rebateTypeKey, |
|||
rebateTypeValue: cval.rebateTypeValue, |
|||
num: 1, |
|||
withRebate: cval.withRebate, |
|||
brandName: cval.brandName, |
|||
brandSid: cval.brandSid, |
|||
uploadMoney: cval.uploadMoney, |
|||
stayDetermineMoney: cval.stayDetermineMoney, |
|||
adjustmentMoney: cval.adjustmentMoney, |
|||
money: cval.money, |
|||
specialRebateSids: [cval.sid], |
|||
sid: '', |
|||
mainSid: '' |
|||
}) |
|||
} |
|||
} |
|||
} |
|||
if (val.length > 0) { |
|||
for (var p in val) { |
|||
let bval = val[p] |
|||
if (!this.formobj.scmLastSpecialrebateCheckapplydetailDetails || this.formobj.scmLastSpecialrebateCheckapplydetailDetails.length === 0) { |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails = [] |
|||
} |
|||
let v = 0 |
|||
for (var l in this.formobj.scmLastSpecialrebateCheckapplydetailDetails) { |
|||
if (this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].withholdingDate === bval.withholdingDate) { |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].withholdingAmount = parseInt(this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].withholdingAmount) + parseInt(1) |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].uploadAmount = parseInt(this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].uploadAmount) + parseInt(1) |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].withRebate = parseInt(this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].withRebate) + parseInt(bval.withRebate) |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].uploadMoney = parseInt(this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].uploadMoney) + parseInt(bval.uploadMoney) |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].stayDetermineMoney = parseInt(this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].stayDetermineMoney) + parseInt(bval.stayDetermineMoney) |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].adjustmentMoney = parseInt(this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].adjustmentMoney) + parseInt(bval.adjustmentMoney) |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].money = parseInt(this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].money) + parseInt(bval.money) |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].specialRebateSids.push(bval.sid) |
|||
v = 1 |
|||
break |
|||
} |
|||
} |
|||
if (v === 0) { |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails.push({ |
|||
withholdingDate: bval.withholdingDate, |
|||
withholdingAmount: 1, |
|||
uploadAmount: 1, |
|||
withRebate: bval.withRebate, |
|||
uploadMoney: bval.uploadMoney, |
|||
stayDetermineMoney: bval.stayDetermineMoney, |
|||
adjustmentMoney: bval.adjustmentMoney, |
|||
money: bval.money, |
|||
notUploadedAmount: '', |
|||
notUploadedCost: '', |
|||
specialRebateSids: [bval.sid], |
|||
sid: '', |
|||
mainSid: '' |
|||
}) |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
// 明细表删除一行数据 |
|||
dataDelete(index) { |
|||
this.formobj.baseVehinstallModpricedetails.splice(index, 1) |
|||
}, |
|||
handleLook(row) { |
|||
this.viewState = 3 |
|||
this.$refs['divAdd'].showInfo(row) |
|||
}, |
|||
backAdd(value, rebateType) { |
|||
this.viewState = 1 |
|||
const aa = [] |
|||
if (value.length > 0) { |
|||
for (var i in value) { |
|||
let cval = value[i] |
|||
let v = 0 |
|||
for (var j in aa) { |
|||
if (aa[j].rebateTypeValue === cval.rebateTypeValue) { |
|||
aa[j].num = parseInt(aa[j].num) + parseInt(1) |
|||
aa[j].withRebate = parseInt(aa[j].withRebate) + parseInt(cval.withRebate) |
|||
aa[j].uploadMoney = parseInt(aa[j].uploadMoney) + parseInt(cval.uploadMoney) |
|||
aa[j].stayDetermineMoney = parseInt(aa[j].stayDetermineMoney) + parseInt(cval.stayDetermineMoney) |
|||
aa[j].adjustmentMoney = parseInt(aa[j].adjustmentMoney) + parseInt(cval.adjustmentMoney) |
|||
aa[j].money = parseInt(aa[j].money) + parseInt(cval.money) |
|||
aa[j].specialRebateSids.push(cval.sid) |
|||
v = 1 |
|||
break |
|||
} |
|||
} |
|||
if (v === 0) { |
|||
aa.push({ |
|||
rebateTypeKey: cval.rebateTypeKey, |
|||
rebateTypeValue: cval.rebateTypeValue, |
|||
num: 1, |
|||
withRebate: cval.withRebate, |
|||
brandName: cval.brandName, |
|||
brandSid: cval.brandSid, |
|||
uploadMoney: cval.uploadMoney, |
|||
stayDetermineMoney: cval.stayDetermineMoney, |
|||
adjustmentMoney: cval.adjustmentMoney, |
|||
money: cval.money, |
|||
specialRebateSids: [cval.sid], |
|||
sid: '', |
|||
mainSid: '' |
|||
}) |
|||
} |
|||
} |
|||
for (var k = 0; k < this.formobj.scmWhenSpecialrebateCheckapplydetailDetails.length; k++) { |
|||
if (this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].rebateTypeValue === rebateType) { |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].rebateTypeKey = aa[0].rebateTypeKey |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].rebateTypeValue = aa[0].rebateTypeValue |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].num = aa[0].num |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].withRebate = aa[0].withRebate |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].brandName = aa[0].brandName |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].brandSid = aa[0].brandSid |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].uploadMoney = aa[0].uploadMoney |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].stayDetermineMoney = aa[0].stayDetermineMoney |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].adjustmentMoney = aa[0].adjustmentMoney |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].money = aa[0].money |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].specialRebateSids = aa[0].specialRebateSids |
|||
break |
|||
} |
|||
} |
|||
} else if (value.length === 0) { |
|||
for (var l = 0; l < this.formobj.scmWhenSpecialrebateCheckapplydetailDetails.length; l++) { |
|||
if (this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[l].rebateTypeValue === rebateType) { |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails.splice(l, 1) |
|||
break |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
resetState() { |
|||
this.viewState = 1 |
|||
}, |
|||
handleCheck() { |
|||
this.dialogVisible = true |
|||
}, |
|||
save() { |
|||
console.log(this.formobj) |
|||
this.$refs['form_obj'].validate((valid) => { |
|||
if (valid) { |
|||
this.submitdisabled = true |
|||
req.save(this.formobj).then((resp) => { |
|||
this.submitdisabled = false |
|||
if (resp.success) { |
|||
this.$message({ |
|||
showClose: true, |
|||
type: 'success', |
|||
message: resp.msg |
|||
}) |
|||
this.handleReturn('true') |
|||
} |
|||
}).catch(() => { |
|||
this.submitdisabled = false |
|||
}) |
|||
} else { |
|||
return false |
|||
} |
|||
}) |
|||
}, |
|||
submit() { |
|||
this.$refs['form_obj'].validate((valid) => { |
|||
if (valid) { |
|||
this.submitdisabled = true |
|||
req.submitVehicleApply(this.formobj).then((resp) => { |
|||
this.submitdisabled = false |
|||
if (resp.success) { |
|||
this.$message({ |
|||
showClose: true, |
|||
type: 'success', |
|||
message: resp.msg |
|||
}) |
|||
this.handleReturn('true') |
|||
} |
|||
}).catch(() => { |
|||
this.submitdisabled = false |
|||
}) |
|||
} else { |
|||
return false |
|||
} |
|||
}) |
|||
}, |
|||
// 返回(===既判断) |
|||
handleReturn(isreload) { |
|||
if (isreload === 'true') this.$emit('reloadlist') |
|||
// 表单数据 |
|||
this.formobj = { |
|||
sid: '', |
|||
createByName: '', |
|||
createBySid: '', |
|||
brandName: '', |
|||
brandSid: '', |
|||
checkApply: '', |
|||
createOrgName: '', |
|||
createOrgSid: '', |
|||
useOrgName: '', |
|||
useOrgSid: '', |
|||
remarks: '', |
|||
instanceId: '', // 流程实例ID |
|||
taskId: '', // 任务ID |
|||
scmWhenSpecialrebateCheckapplydetailDetails: [], |
|||
scmLastSpecialrebateCheckapplydetailDetails: [] |
|||
} |
|||
this.$refs['form_obj'].resetFields() |
|||
this.$emit('doback') |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
<style scoped> |
|||
.divStyle { |
|||
padding: 7px; |
|||
font-weight: bold; |
|||
font-size: 16px; |
|||
background-color: #0294d7; |
|||
color: #ffffff; |
|||
text-align: left; |
|||
display: flex; |
|||
flex-direction: row; |
|||
justify-content: space-between; |
|||
align-items: center; |
|||
} |
|||
.rowStyle { |
|||
border-left: 0px; |
|||
} |
|||
.colOneStyle { |
|||
border-right: 0px !important; |
|||
border-bottom: 0px !important; |
|||
} |
|||
</style> |
|||
|
@ -0,0 +1,206 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<div v-show="viewState == 1"> |
|||
<!--标题按钮部分开始--> |
|||
<div class="tab-header webtop"> |
|||
<!--标题--> |
|||
<div>{{ viewTitle }}</div> |
|||
<!--start 添加修改按钮--> |
|||
<div> |
|||
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button> |
|||
</div> |
|||
</div> |
|||
<!--标题按钮部分结束--> |
|||
<!--Start 新增修改部分--> |
|||
<div class="listconadd"> |
|||
<div class="titwu"><span>专项返利核对审核申请</span></div> |
|||
<el-form ref="form_obj" :model="formobj" :rules="rules" class="formadd"> |
|||
<el-row class="rowStyle"> |
|||
<el-col :span="2" class="tleftb colOneStyle"> |
|||
<span>品牌:</span> |
|||
</el-col> |
|||
<el-col :span="22" class="colOneStyle"> |
|||
<el-form-item><span>{{ formobj.brandName }}</span></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
<div class="title"> |
|||
<div>本月各项返利核对情况</div> |
|||
</div> |
|||
<el-table :key="tableKey" :data="formobj.scmWhenSpecialrebateCheckapplydetailDetails" :index="index" border style="width: 100%"> |
|||
<el-table-column fixed width="80px" label="序号" type="index" :index="index + 1" align="center"/> |
|||
<el-table-column label="返利类型" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateTypeValue }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.num }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确认金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="明细" align="center"> |
|||
<template slot-scope="scope"> |
|||
<el-button type="primary" size="mini" @click="handleLook(scope.row)">查看</el-button> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
<div class="title"> |
|||
<div>预提返利本月核对情况</div> |
|||
</div> |
|||
<el-table :key="lastSpecialrebateKey" :data="formobj.scmLastSpecialrebateCheckapplydetailDetails" :index="index" border style="width: 100%"> |
|||
<el-table-column fixed width="80px" label="序号" type="index" :index="index + 1" align="center"/> |
|||
<el-table-column label="预提年月" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withholdingDate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withholdingAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确认金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="未上传数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.notUploadedAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="未上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.notUploadedCost }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
<el-row> |
|||
<el-col :span="2" class="tleftb"> |
|||
<span>备注</span> |
|||
</el-col> |
|||
<el-col :span="22"> |
|||
<el-form-item><span>{{ formobj.remarks }}</span></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
</el-form> |
|||
</div> |
|||
</div> |
|||
<!--End 添加修改部分--> |
|||
<specialrebatetobecheckedInfo v-show="viewState == 2" ref="divInfo" @doback="resetState"/> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import req from '@/api/specialrebate/specialrebatecheck' |
|||
import specialrebatetobecheckedInfo from './relation/specialrebatetobecheckedInfo' |
|||
|
|||
export default { |
|||
name: 'specialrebatecheckInfo', |
|||
components: { |
|||
specialrebatetobecheckedInfo |
|||
}, |
|||
data() { |
|||
return { |
|||
viewTitle: '', |
|||
index: 0, |
|||
tableKey: 0, |
|||
lastSpecialrebateKey: 1, |
|||
viewState: 1, |
|||
// 表单数据 |
|||
formobj: {}, |
|||
rules: {}, |
|||
submitdisabled: false |
|||
} |
|||
}, |
|||
methods: { |
|||
showInfo(row) { |
|||
this.$nextTick(() => { |
|||
this.$refs['form_obj'].clearValidate() |
|||
}) |
|||
this.viewTitle = '专项返利核对审核申请详情' |
|||
console.log('编辑回显', row.sid) |
|||
req.fetchDetailsBySid(row.sid).then((resp) => { |
|||
this.formobj = resp.data |
|||
}).catch((e) => { |
|||
this.formobj = row |
|||
}) |
|||
}, |
|||
handleLook(row) { |
|||
this.viewState = 2 |
|||
this.$refs['divInfo'].showInfo(row) |
|||
}, |
|||
resetState() { |
|||
this.viewState = 1 |
|||
}, |
|||
// 返回(===既判断) |
|||
handleReturn(isreload) { |
|||
if (isreload === 'true') this.$emit('reloadlist') |
|||
// 表单数据 |
|||
this.formobj = {} |
|||
this.$refs['form_obj'].resetFields() |
|||
this.$emit('doback') |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
<style scoped> |
|||
.rowStyle { |
|||
border-left: 0px; |
|||
} |
|||
.colOneStyle { |
|||
border-right: 0px !important; |
|||
border-bottom: 0px !important; |
|||
} |
|||
</style> |
|||
|
@ -0,0 +1,675 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<!-- Start 列表页面 --> |
|||
<div v-show="viewState == 1"> |
|||
<button-bar view-title="待核对专项返利列表" ref="btnbar" :btndisabled="btndisabled" @btnhandle="btnHandle"/> |
|||
<div class="main-content"> |
|||
<div class="switch_btn"> |
|||
<el-button :class="{btn_style:viewState === 1}">待核对</el-button> |
|||
<el-button class="" @click="handleClick">核对审核申请</el-button> |
|||
</div> |
|||
<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-select v-model="listQuery.params.brandSid" placeholder="请选择" filterable clearable> |
|||
<el-option v-for="item in brand_list" :key="item.sid" :label="item.brandName" :value="item.sid"/> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item label="创建日期"> |
|||
<el-date-picker v-model="listQuery.params.createStartTime" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/> |
|||
<span style="padding: 0 8px">至</span> |
|||
<el-date-picker v-model="listQuery.params.createEndTime" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/> |
|||
</el-form-item> |
|||
<el-form-item label="返利类型"> |
|||
<el-select v-model="listQuery.params.rebateTypeKey" placeholder="请选择" filterable clearable> |
|||
<el-option v-for="item in rebateType_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey"/> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item label="返利名称"> |
|||
<el-input v-model="listQuery.params.rebateName" placeholder="" clearable/> |
|||
</el-form-item> |
|||
<!-- <el-form-item label="上传状态">--> |
|||
<!-- <el-select v-model="listQuery.params.state" placeholder="请选择" filterable clearable>--> |
|||
<!-- <el-option v-for="item in state_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey"/>--> |
|||
<!-- </el-select>--> |
|||
<!-- </el-form-item>--> |
|||
</el-form> |
|||
<div class="btn" style="text-align: center;"> |
|||
<el-button type="primary" icon="el-icon-search" @click="handleFilter" size="small">查询</el-button> |
|||
<el-button type="primary" icon="el-icon-refresh" @click="handleReset" size="small">重置</el-button> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="listtop"> |
|||
<div class="tit">待核对专项返利列表</div> |
|||
<div> |
|||
<el-button size="mini" type="success">导入</el-button> |
|||
<el-button size="mini" type="success">导出</el-button> |
|||
</div> |
|||
</div> |
|||
<div class=""> |
|||
<el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%;" @selection-change="handleSelectionChange"> |
|||
<el-table-column fixed type="selection" align="center" width="50px"/> |
|||
<el-table-column fixed label="序号" type="index" :index="indexMethod" align="center" width="80px"/> |
|||
<el-table-column label="上传状态" align="center" width="200"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadState === '0' ? '未调整' : scope.row.uploadState === '1' ? '已调整' : scope.row.uploadState === '2' ? '未上传' : scope.row.uploadState === '3' ? '已上传' : ''}}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="品牌" align="center" width="200"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.brandName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="创建日期" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.createTime }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="返利名称" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="返利类型" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateTypeValue }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预计返利" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.estimateRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传日期" align="center" width="200"> |
|||
<template slot-scope="scope"> |
|||
<el-date-picker v-model="scope.row.uploadDate" type="date" style="width: 160px" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<el-input v-model="scope.row.uploadMoney" @keyup.native="UpNumber" @keydown.native="UpNumber" clearable placeholder=""></el-input> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="二次上传日期" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.secondaryUploadDate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="二次上传金额" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.secondaryUploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确定金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<el-input v-model="scope.row.stayDetermineMoney" @keyup.native="UpNumber" @keydown.native="UpNumber" clearable placeholder=""></el-input> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<el-input v-model="scope.row.money" @keyup.native="UpNumber" @keydown.native="UpNumber" clearable placeholder=""></el-input> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="是否调整" align="center" width="100"> |
|||
<template slot-scope="scope"><!--@change="changeIsAdjustment(scope.row)" --> |
|||
<el-select v-model="scope.row.isAdjustment" @change="changeIsAdjustment(scope.row)" placeholder="" filterable> |
|||
<el-option v-for="item in whether_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictValue"/> |
|||
</el-select> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<!-- <el-input :disabled="scope.row.isAdjustment === '' || scope.row.isAdjustment === '否'" v-model="scope.row.adjustmentMoney" clearable placeholder=""></el-input>--> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整说明" align="center" width="300"> |
|||
<template slot-scope="scope"> |
|||
<el-input :disabled="scope.row.isAdjustment === '' || scope.row.isAdjustment === '否'" v-model="scope.row.adjustmentRemarks" clearable placeholder=""></el-input> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="操作" align="center" width="180px" > |
|||
<template slot-scope="scope"> |
|||
<el-button type="primary" size="mini" @click="toSave(scope.row)">保存</el-button> |
|||
<el-button type="primary" :disabled="scope.row.isAdjustment === '' || scope.row.isAdjustment === '是'" size="mini" @click="toAdjust(scope.row)">调整</el-button> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
</div> |
|||
<div class="pages"> |
|||
<!-- 翻页 --> |
|||
<pagination v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<specialrebatecheck v-show="viewState == 2" ref="divCheck" @doback="resetState"/> |
|||
<specialrebatecheckAdd v-show="viewState == 3" ref="divCheckAdd" @doback="resetState"/> |
|||
<el-dialog center :visible.sync="dialogVisible" width="60%"> |
|||
<div class="app-container"> |
|||
<div class="tab-header webtop"> |
|||
<!--标题--> |
|||
<div>{{ viewTitle }}</div> |
|||
<!--start 添加修改按钮--> |
|||
<div> |
|||
<el-button type="primary" size="small" :disabled="submitdisabled" @click="handleSave()">保存 |
|||
</el-button> |
|||
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button> |
|||
</div> |
|||
</div> |
|||
<el-form ref="form_obj" :model="formobj" :rules="rules" class="formadd"> |
|||
<div class="title"> |
|||
<div><span>待确定金额</span></div> |
|||
</div> |
|||
<el-row style="border-top: 1px solid #E0E3EB"> |
|||
<el-col :span="4" class="tleftb"> |
|||
<span>待确定金额</span> |
|||
</el-col> |
|||
<el-col :span="4"> |
|||
<el-form-item><span>{{ formobj.stayDetermineMoney }}</span></el-form-item> |
|||
</el-col> |
|||
<el-col :span="4" class="tleftb"> |
|||
<span>其中含费用</span> |
|||
</el-col> |
|||
<el-col :span="4"> |
|||
<el-form-item><el-input v-model="formobj.firstCost" clearable placeholder=""/></el-form-item> |
|||
</el-col> |
|||
<el-col :span="4" class="tleftb"> |
|||
<span>其中含返利</span> |
|||
</el-col> |
|||
<el-col :span="4"> |
|||
<el-form-item><el-input v-model="formobj.firstRebate" clearable placeholder=""/></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
<div class="title"> |
|||
<el-checkbox v-model="checked"><span style="color: #FFFFFF">返利二次上传</span></el-checkbox> |
|||
</div> |
|||
<div v-if="checked"> |
|||
<el-row> |
|||
<el-col :span="4" class="tleftb"> |
|||
<span>剩余预计返利</span> |
|||
</el-col> |
|||
<el-col :span="4"> |
|||
<el-form-item><span>{{ formobj.surplusRebate}}</span></el-form-item> |
|||
</el-col> |
|||
<el-col :span="4"> |
|||
</el-col> |
|||
<el-col :span="4"> |
|||
</el-col> |
|||
<el-col :span="4" class="tleftb"> |
|||
<span>二次上传日期</span> |
|||
</el-col> |
|||
<el-col :span="4"> |
|||
<el-form-item><el-date-picker v-model="formobj.secondaryUploadDate" type="date" clearable value-format="yyyy-MM-dd" style="width: 100%" placeholder="选择日期"/></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
<el-row> |
|||
<el-col :span="4" class="tleftb"> |
|||
<span>二次上传金额</span> |
|||
</el-col> |
|||
<el-col :span="4"> |
|||
<el-form-item><el-input v-model="formobj.secondaryUploadMoney" clearable placeholder=""/></el-form-item> |
|||
</el-col> |
|||
<el-col :span="4" class="tleftb"> |
|||
<span>其中含费用</span> |
|||
</el-col> |
|||
<el-col :span="4"> |
|||
<el-form-item><el-input v-model="formobj.secondCost" clearable placeholder=""/></el-form-item> |
|||
</el-col> |
|||
<el-col :span="4" class="tleftb"> |
|||
<span>其中含返利</span> |
|||
</el-col> |
|||
<el-col :span="4"> |
|||
<el-form-item><el-input v-model="formobj.secondRebate" clearable placeholder=""/></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
<el-row> |
|||
<el-col :span="4" class="tleftb"> |
|||
<span>调整金额合计</span> |
|||
</el-col> |
|||
<el-col :span="20"> |
|||
<el-form-item><span>{{ adjustmentMoneyAdd() }}</span></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
</div> |
|||
</el-form> |
|||
</div> |
|||
</el-dialog> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import req from '@/api/specialrebate/specialrebatecheck' |
|||
import Pagination from '@/components/pagination' |
|||
import ButtonBar from '@/components/ButtonBar' |
|||
import specialrebatecheck from './specialrebatecheck' |
|||
import specialrebatecheckAdd from './specialrebatecheckAdd' |
|||
import { brandDown, getPathSidByUserSid, typeValues } from '@/api/cheliang/dictcommons' |
|||
|
|||
export default { |
|||
name: 'specialrebatetobechecked', |
|||
components: { |
|||
Pagination, |
|||
ButtonBar, |
|||
specialrebatecheck, |
|||
specialrebatecheckAdd |
|||
}, |
|||
data() { |
|||
return { |
|||
btndisabled: false, |
|||
dialogVisible: false, |
|||
btnList: [ |
|||
{ |
|||
type: 'primary', |
|||
size: 'small', |
|||
icon: '', |
|||
btnKey: 'toAdd', |
|||
btnLabel: '核对审核申请' |
|||
}, |
|||
{ |
|||
type: 'primary', |
|||
size: 'small', |
|||
icon: '', |
|||
btnKey: 'toClick', |
|||
btnLabel: '调整' |
|||
}, |
|||
{ |
|||
type: 'info', |
|||
size: 'small', |
|||
icon: 'cross', |
|||
btnKey: 'doClose', |
|||
btnLabel: '关闭' |
|||
} |
|||
], |
|||
isSearchShow: false, |
|||
searchxianshitit: '显示查询条件', |
|||
viewState: 1, |
|||
// 查询条件 ----------- |
|||
tableKey: 0, |
|||
list: [], |
|||
sids: [], |
|||
FormLoading: false, |
|||
brand_list: [], |
|||
rebateType_list: [], |
|||
state_list: [ |
|||
{ |
|||
dictKey: 0, |
|||
dictValue: '未上传' |
|||
}, |
|||
{ |
|||
dictKey: 1, |
|||
dictValue: '已上传' |
|||
}, |
|||
{ |
|||
dictKey: 2, |
|||
dictValue: '未调整' |
|||
}, |
|||
{ |
|||
dictKey: 3, |
|||
dictValue: '已调整' |
|||
} |
|||
], |
|||
whether_list: [ |
|||
{ |
|||
dictKey: 0, |
|||
dictValue: '否' |
|||
}, |
|||
{ |
|||
dictKey: 1, |
|||
dictValue: '是' |
|||
} |
|||
], |
|||
listLoading: false, |
|||
listQuery: { |
|||
params: { |
|||
brandSid: '', |
|||
createOrgSid: '', |
|||
rebateTypeKey: '', |
|||
rebateName: '', |
|||
state: '', |
|||
createEndTime: '', |
|||
createStartTime: '' |
|||
}, |
|||
current: 1, |
|||
size: 5, |
|||
total: 0 |
|||
}, |
|||
rules: {}, |
|||
viewTitle: '返利调整', |
|||
submitdisabled: false, |
|||
checked: false, |
|||
formobj: { |
|||
sid: '', |
|||
stayDetermineMoney: '', |
|||
firstCost: '', |
|||
firstRebate: '', |
|||
surplusRebate: '', |
|||
secondaryUploadDate: '', |
|||
secondaryUploadMoney: '', |
|||
secondCost: '', |
|||
secondRebate: '', |
|||
adjustmentMoney: '' |
|||
} |
|||
} |
|||
}, |
|||
created() { |
|||
// 加载列表 |
|||
this.init() |
|||
}, |
|||
mounted() { |
|||
this.$refs['btnbar'].setButtonList(this.btnList) |
|||
}, |
|||
methods: { |
|||
init() { |
|||
typeValues({ type: 'rebateType' }).then((res) => { |
|||
if (res.success) { |
|||
this.rebateType_list = res.data |
|||
} |
|||
}) |
|||
getPathSidByUserSid({ userSid: window.sessionStorage.getItem('userSid') }).then((resp) => { |
|||
if (resp.success) { |
|||
this.listQuery.params.createOrgSid = resp.data |
|||
brandDown({ useOrg: this.listQuery.params.createOrgSid }).then((res) => { |
|||
if (res.success) { |
|||
this.brand_list = res.data |
|||
} |
|||
}) |
|||
this.getList() |
|||
} |
|||
}) |
|||
}, |
|||
// 搜索条件效果 |
|||
clicksearchShow() { |
|||
this.isSearchShow = !this.isSearchShow |
|||
if (this.isSearchShow) { |
|||
this.searchxianshitit = '隐藏查询条件' |
|||
} else { |
|||
this.searchxianshitit = '显示查询条件' |
|||
} |
|||
}, |
|||
btnHandle(btnKey) { |
|||
console.log('XXXXXXXXXXXXXXX ' + btnKey) |
|||
switch (btnKey) { |
|||
case 'toAdd': |
|||
this.toAdd() |
|||
break |
|||
case 'doImport': |
|||
this.doImport() |
|||
break |
|||
case 'doDel': |
|||
this.doDel() |
|||
break |
|||
case 'doClose': |
|||
this.doClose() |
|||
break |
|||
default: |
|||
break |
|||
} |
|||
}, |
|||
// 序号 |
|||
indexMethod(index) { |
|||
var pagestart = (this.listQuery.current - 1) * this.listQuery.size |
|||
var pageindex = index + 1 + pagestart |
|||
return pageindex |
|||
}, |
|||
handleSelectionChange(row) { |
|||
const aa = [] |
|||
row.forEach((element) => { |
|||
aa.push(element.sid) |
|||
}) |
|||
this.sids = aa |
|||
console.log('sids', this.sids) |
|||
}, |
|||
// 查询列表信息 |
|||
getList() { |
|||
this.listLoading = true |
|||
req.listPage(this.listQuery).then((response) => { |
|||
console.log('列表查询结果:', response) |
|||
this.listLoading = false |
|||
if (response.success && response.data && response.data.total > 0) { |
|||
this.list = response.data.records |
|||
this.listQuery.total = response.data.total |
|||
} else { |
|||
this.list = [] |
|||
this.listQuery.total = 0 |
|||
} |
|||
}) |
|||
}, |
|||
// 查询按钮 |
|||
handleFilter() { |
|||
this.listQuery.current = 1 |
|||
this.getList() |
|||
}, |
|||
handleReset() { |
|||
this.listQuery = { |
|||
params: { |
|||
brandSid: '', |
|||
createOrgSid: '', |
|||
rebateTypeKey: '', |
|||
rebateName: '', |
|||
state: '', |
|||
createEndTime: '', |
|||
createStartTime: '' |
|||
}, |
|||
current: 1, |
|||
size: 5, |
|||
total: 0 |
|||
} |
|||
this.init() |
|||
}, |
|||
UpNumber(e) { |
|||
e.target.value = e.target.value.replace(/[^\d]/g, '') // 清除“数字”和“.”"-"以外的字符 |
|||
e.target.value = e.target.value.replace(/^00/, '0') // 开头不能有两个0 |
|||
if (e.target.value.indexOf('.') < 0 && e.target.value !== '' && e.target.value !== '-') { |
|||
// 以上已经过滤,此处控制的是如果没有小数点,首位不能为类似于 01、02的金额 |
|||
console.log(e.target.value) |
|||
e.target.value = parseFloat(e.target.value) |
|||
} |
|||
}, |
|||
changeIsAdjustment(row) { |
|||
if (row.isAdjustment === '是') { |
|||
if (row.uploadMoney === '') { |
|||
row.isAdjustment = '' |
|||
this.$message({ showClose: true, type: 'error', message: '上传金额不能为空' }) |
|||
return |
|||
} |
|||
if (row.money === '') { |
|||
row.isAdjustment = '' |
|||
this.$message({ showClose: true, type: 'error', message: '费用不能为空' }) |
|||
return |
|||
} |
|||
if (row.stayDetermineMoney === '') { |
|||
row.isAdjustment = '' |
|||
this.$message({ showClose: true, type: 'error', message: '待确定金额不能为空' }) |
|||
return |
|||
} |
|||
if (row.uploadMoney !== '' && row.money !== '' && row.stayDetermineMoney !== '') { |
|||
row.adjustmentMoney = parseInt(row.uploadMoney) - parseInt(row.money) - parseInt(row.stayDetermineMoney) - parseInt(row.estimateRebate) |
|||
} |
|||
} else if (row.isAdjustment === '否') { |
|||
row.adjustmentMoney = 0 |
|||
row.adjustmentRemarks = '' |
|||
} |
|||
}, |
|||
adjustmentMoneyAdd() { |
|||
this.formobj.adjustmentMoney = parseInt(this.formobj.firstRebate - 0) + parseInt(this.formobj.secondRebate - 0) - parseInt(this.formobj.surplusRebate - 0) |
|||
return this.formobj.adjustmentMoney |
|||
}, |
|||
handleSave() { |
|||
let aa = null |
|||
if (!this.checked) { |
|||
aa = { |
|||
sid: this.formobj.sid, |
|||
stayDetermineMoney: 0, |
|||
cost: this.formobj.firstCost, |
|||
secondaryUploadDate: '', |
|||
secondaryUploadMoney: 0, |
|||
adjustmentMoney: this.formobj.firstRebate |
|||
} |
|||
} else { |
|||
aa = { |
|||
sid: this.formobj.sid, |
|||
stayDetermineMoney: 0, |
|||
cost: parseInt(this.formobj.firstCost) + parseInt(this.formobj.secondCost), |
|||
secondaryUploadDate: this.formobj.secondaryUploadDate, |
|||
secondaryUploadMoney: this.formobj.secondaryUploadMoney, |
|||
adjustmentMoney: this.formobj.adjustmentMoney |
|||
} |
|||
} |
|||
req.adjustment(aa).then((resp) => { |
|||
if (resp.success) { |
|||
this.$message({ showClose: true, type: 'success', message: '保存成功' }) |
|||
this.getList() |
|||
this.handleReturn() |
|||
} |
|||
}) |
|||
}, |
|||
handleReturn() { |
|||
this.dialogVisible = false |
|||
this.formobj = { |
|||
sid: '', |
|||
stayDetermineMoney: '', |
|||
firstCost: '', |
|||
firstRebate: '', |
|||
surplusRebate: '', |
|||
secondaryUploadDate: '', |
|||
secondaryUploadMoney: '', |
|||
secondCost: '', |
|||
secondRebate: '', |
|||
adjustmentMoney: '' |
|||
} |
|||
this.checked = false |
|||
}, |
|||
handleClick() { |
|||
this.viewState = 2 |
|||
this.$refs['divCheck'].init() |
|||
}, |
|||
toAdd() { |
|||
this.viewState = 3 |
|||
this.$refs['divCheckAdd'].showAdd(this.listQuery.params.createOrgSid) |
|||
}, |
|||
toSave(row) { |
|||
if (row.uploadDate === '') { |
|||
this.$message({ showClose: true, type: 'error', message: '上传日期不能为空' }) |
|||
return |
|||
} |
|||
if (row.uploadMoney === '') { |
|||
this.$message({ showClose: true, type: 'error', message: '上传金额不能为空' }) |
|||
return |
|||
} |
|||
if (row.stayDetermineMoney === '') { |
|||
this.$message({ showClose: true, type: 'error', message: '待确定金额不能为空' }) |
|||
return |
|||
} |
|||
if (row.money === '') { |
|||
this.$message({ showClose: true, type: 'error', message: '费用不能为空' }) |
|||
return |
|||
} |
|||
if (row.stayDetermineMoney !== '0') { |
|||
if (row.isAdjustment === '是') { |
|||
this.$message({ showClose: true, type: 'error', message: '因待确定金额大于0,是否调整选项需选择否' }) |
|||
return |
|||
} |
|||
} else if (row.stayDetermineMoney === '0') { |
|||
if (row.adjustmentMoney.toString().indexOf('-') !== -1) { |
|||
if (row.isAdjustment === '是') { |
|||
this.$message({ showClose: true, type: 'error', message: '因待确定金额等于0且调整金额小于0,是否调整选项需选择否' }) |
|||
return |
|||
} |
|||
} else if (row.adjustmentMoney !== '0') { |
|||
if (row.isAdjustment === '否') { |
|||
if ((parseInt(row.uploadMoney) - parseInt(row.estimateRebate)) > 0) { |
|||
this.$message({ showClose: true, type: 'error', message: '因待确定金额等于0且调整金额大于0,是否调整选项需选择是' }) |
|||
return |
|||
} |
|||
} |
|||
} else if (row.adjustmentMoney === '0') { |
|||
if (row.isAdjustment === '否') { |
|||
this.$message({ showClose: true, type: 'error', message: '因待确定金额等于0且调整金额等于0,是否调整选项需选择是' }) |
|||
return |
|||
} |
|||
} |
|||
} |
|||
if (row.isAdjustment === '是') { |
|||
if (row.adjustmentMoney === '') { |
|||
this.$message({ showClose: true, type: 'error', message: '调整金额不能为空' }) |
|||
return |
|||
} |
|||
if (row.adjustmentRemarks === '') { |
|||
this.$message({ showClose: true, type: 'error', message: '调整说明不能为空' }) |
|||
return |
|||
} |
|||
} |
|||
req.updateDate(row).then((resp) => { |
|||
if (resp.success) { |
|||
this.$message({ showClose: true, type: 'success', message: '保存成功' }) |
|||
this.getList() |
|||
} |
|||
}) |
|||
}, |
|||
toInfo(row) { |
|||
this.viewState = 4 |
|||
this.$refs['divInfo'].showInfo(row) |
|||
}, |
|||
toAdjust(row) { |
|||
this.dialogVisible = true |
|||
this.formobj.stayDetermineMoney = row.stayDetermineMoney |
|||
this.formobj.sid = row.sid |
|||
this.formobj.firstCost = 0 |
|||
this.formobj.firstRebate = 0 |
|||
this.formobj.secondCost = 0 |
|||
this.formobj.secondRebate = 0 |
|||
this.formobj.secondaryUploadMoney = 0 |
|||
this.formobj.surplusRebate = parseInt(row.estimateRebate) - parseInt(row.uploadMoney) |
|||
}, |
|||
doDel() { |
|||
if (this.sids.length === 0) { |
|||
this.$message({ showClose: true, type: 'error', message: '请选择至少一条记录进行删除操作' }) |
|||
return |
|||
} |
|||
const tip = '请确认是否删除所选 ' + this.sids.length + ' 条记录?' |
|||
this.$confirm(tip, '提示', { |
|||
confirmButtonText: '确定', |
|||
cancelButtonText: '取消', |
|||
type: 'warning' |
|||
}).then(() => { |
|||
const loading = this.$loading({ |
|||
lock: true, |
|||
text: 'Loading', |
|||
spinner: 'el-icon-loading', |
|||
background: 'rgba(0, 0, 0, 0.7)' |
|||
}) |
|||
req.delete(this.sids).then(resp => { |
|||
if (resp.success) { |
|||
this.$message({ type: 'success', message: resp.msg, showClose: true }) |
|||
} |
|||
this.getList() |
|||
loading.close() |
|||
}).catch(e => { |
|||
loading.close() |
|||
}) |
|||
}).catch(() => { |
|||
}) |
|||
}, |
|||
resetState() { |
|||
this.viewState = 1 |
|||
}, |
|||
doClose() { |
|||
this.$store.dispatch('tagsView/delView', this.$route) |
|||
this.$router.go(-1) |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
<style scoped> |
|||
.switch_btn { |
|||
padding: 15px 0 10px 0; |
|||
} |
|||
.btn_style { |
|||
background-color: #018ad2; |
|||
color: white; |
|||
font-weight: 600; |
|||
} |
|||
</style> |
@ -0,0 +1,172 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<div v-show="viewState == 1"> |
|||
<!--标题按钮部分开始--> |
|||
<div class="tab-header webtop"> |
|||
<!--标题--> |
|||
<div>{{ viewTitle }}</div> |
|||
<!--start 添加修改按钮--> |
|||
<div> |
|||
<el-button type="danger" size="small" @click="handleDelete">删除</el-button> |
|||
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button> |
|||
</div> |
|||
</div> |
|||
<!--标题按钮部分结束--> |
|||
<!--Start 新增修改部分--> |
|||
<div class=""> |
|||
<el-form ref="form_obj" class="formadd"> |
|||
<el-table :key="tableKey" :data="list" :index="index" border style="width: 100%" @selection-change="handleSelectionChange"> |
|||
<el-table-column fixed type="selection" align="center" width="50px"/> |
|||
<el-table-column fixed width="80px" label="序号" type="index" :index="index + 1" align="center"/> |
|||
<el-table-column label="品牌" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.brandName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="创建日期" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.createTime }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="返利类型" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateTypeValue }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="返利名称" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预计返利" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.estimateRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传日期" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadDate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确定金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="是否调整" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.isAdjustment }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整说明" align="center" width="300"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentRemarks }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
</el-form> |
|||
</div> |
|||
</div> |
|||
<!--End 添加修改部分--> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import req from '@/api/specialrebate/specialrebatecheck' |
|||
|
|||
export default { |
|||
name: 'specialrebatetobecheckedAdd', |
|||
data() { |
|||
return { |
|||
viewTitle: '', |
|||
index: 0, |
|||
tableKey: 0, |
|||
viewState: 1, |
|||
rebateType: '', |
|||
sids: [], |
|||
// 表单数据 |
|||
list: [], |
|||
rules: {}, |
|||
submitdisabled: false |
|||
} |
|||
}, |
|||
methods: { |
|||
handleSelectionChange(row) { |
|||
const aa = [] |
|||
row.forEach((element) => { |
|||
aa.push(element.sid) |
|||
}) |
|||
this.sids = aa |
|||
console.log('sids', this.sids) |
|||
}, |
|||
showInfo(row) { |
|||
this.$nextTick(() => { |
|||
this.$refs['form_obj'].clearValidate() |
|||
}) |
|||
this.viewTitle = '专项返利核对审核申请明细' |
|||
this.rebateType = row.rebateTypeValue |
|||
console.log('编辑回显', row) |
|||
req.vehRebateWithDetails(row.specialRebateSids).then((resp) => { |
|||
this.list = resp.data |
|||
}).catch((e) => { |
|||
this.list = [] |
|||
}) |
|||
}, |
|||
handleDelete() { |
|||
if (this.sids.length === 0) { |
|||
this.$message({ |
|||
showClose: true, |
|||
type: 'error', |
|||
message: '请选择至少一条记录进行删除操作' |
|||
}) |
|||
return |
|||
} |
|||
for (var i = 0; i < this.list.length; i++) { |
|||
for (var j = 0; j < this.sids.length; j++) { |
|||
if (this.list[i].sid === this.sids[j]) { |
|||
this.list.splice(i, 1) |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
// 返回(===既判断) |
|||
handleReturn() { |
|||
// 表单数据 |
|||
const data_list = [] |
|||
for (var i = 0; i < this.list.length; i++) { |
|||
data_list.push({ |
|||
sid: this.list[i].sid, |
|||
rebateTypeValue: this.list[i].rebateTypeValue, |
|||
rebateTypeKey: this.list[i].rebateTypeKey, |
|||
withRebate: this.list[i].estimateRebate, |
|||
brandName: this.list[i].brandName, |
|||
brandSid: this.list[i].brandSid, |
|||
uploadMoney: this.list[i].uploadMoney, |
|||
stayDetermineMoney: this.list[i].stayDetermineMoney, |
|||
adjustmentMoney: this.list[i].adjustmentMoney, |
|||
money: this.list[i].money |
|||
}) |
|||
} |
|||
this.$emit('backAdd', data_list, this.rebateType) |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
<style scoped> |
|||
</style> |
|||
|
@ -0,0 +1,130 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<div> |
|||
<!--标题按钮部分开始--> |
|||
<div class="tab-header webtop"> |
|||
<!--标题--> |
|||
<div>{{ viewTitle }}</div> |
|||
<!--start 添加修改按钮--> |
|||
<div> |
|||
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button> |
|||
</div> |
|||
</div> |
|||
<!--标题按钮部分结束--> |
|||
<!--Start 新增修改部分--> |
|||
<div class=""> |
|||
<el-form ref="form_obj" class="formadd"> |
|||
<el-table :key="tableKey" :data="list" :index="index" border style="width: 100%"> |
|||
<el-table-column fixed width="60px" label="序号" type="index" :index="index + 1" align="center"/> |
|||
<el-table-column label="品牌" align="center" width="200"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.brandName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="创建日期" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.createTime }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="返利类型" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateTypeValue }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="返利名称" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预计返利" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.estimateRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传日期" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadDate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确定金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="是否调整" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.isAdjustment }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整说明" align="center" width="300"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentRemarks }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
</el-form> |
|||
</div> |
|||
</div> |
|||
<!--End 添加修改部分--> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import req from '@/api/specialrebate/specialrebatecheck' |
|||
|
|||
export default { |
|||
name: 'sepcialrebatetobecheckedInfo', |
|||
data() { |
|||
return { |
|||
viewTitle: '', |
|||
index: 0, |
|||
tableKey: 0, |
|||
viewState: 1, |
|||
sids: [], |
|||
// 表单数据 |
|||
list: [], |
|||
rules: {}, |
|||
submitdisabled: false |
|||
} |
|||
}, |
|||
methods: { |
|||
showInfo(row) { |
|||
this.$nextTick(() => { |
|||
this.$refs['form_obj'].clearValidate() |
|||
}) |
|||
this.viewTitle = '专项返利核对审核申请明细' |
|||
console.log('编辑回显', row) |
|||
req.vehRebateWithDetails(row.specialRebateSids).then((resp) => { |
|||
this.list = resp.data |
|||
}).catch((e) => { |
|||
this.list = [] |
|||
}) |
|||
}, |
|||
// 返回(===既判断) |
|||
handleReturn() { |
|||
// 表单数据 |
|||
this.list = [] |
|||
this.$refs['form_obj'].resetFields() |
|||
this.$emit('doback') |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
<style scoped> |
|||
</style> |
|||
|
@ -0,0 +1,330 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<!-- Start 列表页面 --> |
|||
<div> |
|||
<button-bar view-title="已上传专项返利列表" ref="btnbar" :btndisabled="btndisabled" @btnhandle="btnHandle"/> |
|||
<div class=""> |
|||
<!-- <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-input v-model="listQuery.params.mainSid" placeholder="请输入车架号" clearable/>--> |
|||
<!-- </el-form-item>--> |
|||
<!-- <el-form-item label="车型">--> |
|||
<!-- <el-input v-model="listQuery.params.mainSid" placeholder="请输入车架号" clearable/>--> |
|||
<!-- </el-form-item>--> |
|||
<!-- <el-form-item label="车架号">--> |
|||
<!-- <el-input v-model="listQuery.params.mainSid" placeholder="请输入车架号" clearable/>--> |
|||
<!-- </el-form-item>--> |
|||
<!-- <el-form-item label="创建日期">--> |
|||
<!-- <el-date-picker v-model="listQuery.params.createStartTime" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/>--> |
|||
<!-- <span style="padding: 0 8px">至</span>--> |
|||
<!-- <el-date-picker v-model="listQuery.params.createEndTime" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/>--> |
|||
<!-- </el-form-item>--> |
|||
<!-- <el-form-item label="返利类型">--> |
|||
<!-- <el-input v-model="listQuery.params.mainSid" placeholder="请输入车架号" clearable/>--> |
|||
<!-- </el-form-item>--> |
|||
<!-- <el-form-item label="返利名称">--> |
|||
<!-- <el-input v-model="listQuery.params.mainSid" placeholder="请输入车架号" clearable/>--> |
|||
<!-- </el-form-item>--> |
|||
<!-- <el-form-item label="状态">--> |
|||
<!-- <el-input v-model="listQuery.params.mainSid" placeholder="请输入车架号" clearable/>--> |
|||
<!-- </el-form-item>--> |
|||
<!-- </el-form>--> |
|||
<!-- <div class="btn" style="text-align: center;">--> |
|||
<!-- <el-button type="primary" icon="el-icon-search" @click="handleFilter" size="small">查询</el-button>--> |
|||
<!-- <el-button type="primary" icon="el-icon-refresh" @click="handleReset" size="small">重置</el-button>--> |
|||
<!-- </div>--> |
|||
<!-- </div>--> |
|||
<!-- </div>--> |
|||
<div class="listtop"> |
|||
<div class="tit">已上传专项返利列表</div> |
|||
</div> |
|||
<div class=""> |
|||
<el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%;" @selection-change="handleSelectionChange"> |
|||
<el-table-column fixed type="selection" align="center" width="50px"/> |
|||
<el-table-column fixed label="序号" type="index" :index="indexMethod" align="center" width="80px"/> |
|||
<el-table-column label="品牌" align="center" width="200"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.brandName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="创建日期" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.createTime }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="返利类型" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateTypeValue }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="返利名称" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateName }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预计返利" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.estimateRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传日期" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadDate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确定金额" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="是否调整" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.isAdjustment }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整说明" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentRemarks }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
</div> |
|||
<div class="pages"> |
|||
<!-- 翻页 --> |
|||
<pagination v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import req from '@/api/specialrebate/specialrebatecheck' |
|||
import Pagination from '@/components/pagination' |
|||
import ButtonBar from '@/components/ButtonBar' |
|||
|
|||
export default { |
|||
name: 'yiheduizhuanxiangfanli', |
|||
components: { |
|||
Pagination, |
|||
ButtonBar |
|||
}, |
|||
data() { |
|||
return { |
|||
btndisabled: false, |
|||
btnList: [ |
|||
{ |
|||
type: 'primary', |
|||
size: 'small', |
|||
icon: '', |
|||
btnKey: 'doConfirm', |
|||
btnLabel: '确定' |
|||
}, |
|||
{ |
|||
type: 'info', |
|||
size: 'small', |
|||
icon: 'cross', |
|||
btnKey: 'doClose', |
|||
btnLabel: '关闭' |
|||
} |
|||
], |
|||
isSearchShow: false, |
|||
searchxianshitit: '显示查询条件', |
|||
// 查询条件 ----------- |
|||
tableKey: 0, |
|||
list: [], |
|||
sids: [], |
|||
sids_list: [], |
|||
FormLoading: false, |
|||
listLoading: false, |
|||
listQuery: { |
|||
params: { |
|||
brandSid: '', |
|||
createOrgSid: '', |
|||
sidList: [] |
|||
}, |
|||
current: 1, |
|||
size: 5, |
|||
total: 0 |
|||
}, |
|||
rules: {} |
|||
} |
|||
}, |
|||
created() { |
|||
// 加载列表 |
|||
this.getList() |
|||
}, |
|||
mounted() { |
|||
this.$refs['btnbar'].setButtonList(this.btnList) |
|||
}, |
|||
methods: { |
|||
// 搜索条件效果 |
|||
clicksearchShow() { |
|||
this.isSearchShow = !this.isSearchShow |
|||
if (this.isSearchShow) { |
|||
this.searchxianshitit = '隐藏查询条件' |
|||
} else { |
|||
this.searchxianshitit = '显示查询条件' |
|||
} |
|||
}, |
|||
btnHandle(btnKey) { |
|||
console.log('XXXXXXXXXXXXXXX ' + btnKey) |
|||
switch (btnKey) { |
|||
case 'doConfirm': |
|||
this.doConfirm() |
|||
break |
|||
case 'doClose': |
|||
this.doClose() |
|||
break |
|||
default: |
|||
break |
|||
} |
|||
}, |
|||
// 序号 |
|||
indexMethod(index) { |
|||
var pagestart = (this.listQuery.current - 1) * this.listQuery.size |
|||
var pageindex = index + 1 + pagestart |
|||
return pageindex |
|||
}, |
|||
handleSelectionChange(row) { |
|||
var dateTime = '' |
|||
let date = new Date() |
|||
let year = date.getFullYear() // 年 |
|||
let month = date.getMonth() + 1 // 月 |
|||
dateTime = year + '年' + month + '月' |
|||
const aa = [] |
|||
const bb = [] |
|||
row.forEach((element) => { |
|||
if (element.withholdingDateCopy === dateTime) { |
|||
aa.push({ |
|||
sid: element.sid, |
|||
rebateTypeValue: element.rebateTypeValue, |
|||
rebateTypeKey: element.rebateTypeKey, |
|||
withRebate: element.estimateRebate, |
|||
brandName: element.brandName, |
|||
brandSid: element.brandSid, |
|||
uploadMoney: element.uploadMoney, |
|||
stayDetermineMoney: element.stayDetermineMoney, |
|||
adjustmentMoney: element.adjustmentMoney, |
|||
money: element.money |
|||
}) |
|||
} else { |
|||
bb.push({ |
|||
sid: element.sid, |
|||
withholdingDate: element.withholdingDateCopy, |
|||
withRebate: element.estimateRebate, |
|||
uploadMoney: element.uploadMoney, |
|||
stayDetermineMoney: element.stayDetermineMoney, |
|||
adjustmentMoney: element.adjustmentMoney, |
|||
money: element.money |
|||
}) |
|||
} |
|||
}) |
|||
this.sids = aa |
|||
this.sids_list = bb |
|||
console.log('sids', this.sids, bb, 99999999) |
|||
}, |
|||
// 查询列表信息 |
|||
getList() { |
|||
this.listLoading = true |
|||
req.checkApplyGetAlreadyUploadVehRebate(this.listQuery).then((response) => { |
|||
console.log('列表查询结果:', response) |
|||
this.listLoading = false |
|||
if (response.success && response.data && response.data.total > 0) { |
|||
this.list = response.data.records |
|||
this.listQuery.total = response.data.total |
|||
} else { |
|||
this.list = [] |
|||
this.listQuery.total = 0 |
|||
} |
|||
}) |
|||
}, |
|||
showData(value, val, createOrgSid, brandSid) { |
|||
this.listQuery.params.createOrgSid = createOrgSid |
|||
this.listQuery.params.brandSid = brandSid |
|||
const aa = [] |
|||
if (value.length > 0) { |
|||
for (var i = 0; i < value.length; i++) { |
|||
for (var j = 0; j < value[i].specialRebateSids.length; j++) { |
|||
aa.push(value[i].specialRebateSids[j]) |
|||
} |
|||
} |
|||
} |
|||
const bb = [] |
|||
if (val.length > 0) { |
|||
for (var k = 0; k < val.length; k++) { |
|||
for (var l = 0; l < val[k].specialRebateSids.length; l++) { |
|||
bb.push(val[k].specialRebateSids[l]) |
|||
} |
|||
} |
|||
} |
|||
if (aa.length > 0 && bb.length > 0) { |
|||
this.listQuery.params.sidList = aa |
|||
for (var p = 0; p < bb.length; p++) { |
|||
this.listQuery.params.sidList.push(bb[p]) |
|||
} |
|||
} else if (aa.length > 0 && bb.length === 0) { |
|||
this.listQuery.params.sidList = aa |
|||
} else if (aa.length === 0 && bb.length > 0) { |
|||
this.listQuery.params.sidList = bb |
|||
} else if (aa.length === 0 && bb.length === 0) { |
|||
this.listQuery.params.sidList = [] |
|||
} |
|||
this.getList() |
|||
}, |
|||
// 查询按钮 |
|||
handleFilter() { |
|||
this.listQuery.current = 1 |
|||
this.getList() |
|||
}, |
|||
handleReset() { |
|||
this.listQuery = { |
|||
params: { |
|||
createBySid: '', |
|||
createEndTime: '', |
|||
createStartTime: '' |
|||
}, |
|||
current: 1, |
|||
size: 5, |
|||
total: 0 |
|||
} |
|||
this.getList() |
|||
}, |
|||
doConfirm() { |
|||
if (this.sids.length > 0 || this.sids_list.length > 0) { |
|||
this.$emit('backData', this.sids, this.sids_list) |
|||
} else { |
|||
this.$notify({ |
|||
title: '提示', |
|||
message: '请选择至少一条记录!', |
|||
type: 'error', |
|||
duration: 2000 |
|||
}) |
|||
} |
|||
}, |
|||
doClose() { |
|||
this.$emit('doback') |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
<style scoped> |
|||
</style> |
@ -0,0 +1,400 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<div v-show="viewState == 1"> |
|||
<!--标题按钮部分开始--> |
|||
<div class="tab-header webtop"> |
|||
<!--标题--> |
|||
<div>{{ viewTitle }}</div> |
|||
<!--start 添加修改按钮--> |
|||
<div> |
|||
<el-button type="primary" size="small" @click="openAgree('同意')">同 意</el-button> |
|||
<el-button type="danger" size="small" @click="openReject('驳回')">驳 回</el-button> |
|||
<el-button type="danger" size="small" @click="openStop('终止')">终 止</el-button> |
|||
</div> |
|||
</div> |
|||
<!--标题按钮部分结束--> |
|||
<!--Start 新增修改部分--> |
|||
<div class=""> |
|||
<div class="titwu"><span>专项返利核对审核申请</span></div> |
|||
<el-form ref="form_obj" :model="formobj" :rules="rules" class="formadd"> |
|||
<el-row class="rowStyle"> |
|||
<el-col :span="2" class="tleftb colOneStyle"> |
|||
<span>品牌:</span> |
|||
</el-col> |
|||
<el-col :span="22" class="colOneStyle"> |
|||
<el-form-item><span>{{ formobj.brandName }}</span></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
<div class="title"> |
|||
<div>本月各项返利核对情况</div> |
|||
</div> |
|||
<el-table :key="tableKey" :data="formobj.scmWhenSpecialrebateCheckapplydetailDetails" :index="index" border style="width: 100%"> |
|||
<el-table-column fixed width="80px" label="序号" type="index" :index="index + 1" align="center"/> |
|||
<el-table-column label="返利类型" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateTypeValue }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.num }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确认金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="明细" align="center"> |
|||
<template slot-scope="scope"> |
|||
<el-button type="primary" size="mini" @click="handleLook(scope.row)">查看</el-button> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
<div class="title"> |
|||
<div>预提返利本月核对情况</div> |
|||
</div> |
|||
<el-table :key="lastSpecialrebateKey" :data="formobj.scmLastSpecialrebateCheckapplydetailDetails" :index="index" border style="width: 100%"> |
|||
<el-table-column fixed width="80px" label="序号" type="index" :index="index + 1" align="center"/> |
|||
<el-table-column label="预提年月" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withholdingDate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withholdingAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确认金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="未上传数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.notUploadedAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="未上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.notUploadedCost }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
<el-row> |
|||
<el-col :span="2" class="tleftb"> |
|||
<span>备注</span> |
|||
</el-col> |
|||
<el-col :span="22"> |
|||
<el-form-item><span>{{ formobj.remarks }}</span></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
</el-form> |
|||
</div> |
|||
</div> |
|||
<!--End 添加修改部分--> |
|||
<specialrebatetobecheckedInfo v-show="viewState == 2" ref="divInfo" @doback="resetState"/> |
|||
<!-- 选择待办人 的弹出框--> |
|||
<el-dialog title="填写审批意见" :visible.sync="nodeDialogVisible" width="80%"> |
|||
<el-form class="formaddcopy02" > |
|||
<el-row v-show="currentLink" style="border-top: 1px solid #e0e3eb"> |
|||
<el-col :span="24"> |
|||
<div class="span-sty spanTwoWidth"><span>当前环节:</span></div> |
|||
<el-form-item><span class="addinputInfo addinputOne">{{ current.taskName }}->{{ nextNode.name }}</span></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
<el-row :class="{ rowClass:!currentLink }"> |
|||
<el-col :span="24"> |
|||
<div class="span-sty spanTwoWidth"><span>意见:</span></div> |
|||
<el-form-item><el-input size="small" v-model="dialogList.comment" placeholder="审批意见" class="addinputw addinputOne" clearable ></el-input></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
<div style="text-align:center;margin-top: 20px;"> |
|||
<el-button type="primary" size="mini" @click="reject">确 定</el-button> |
|||
<el-button type="info " size="mini" @click="nodeDialogVisible = false">取 消</el-button> |
|||
</div> |
|||
</el-form> |
|||
</el-dialog> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import req from '@/api/specialrebate/specialrebatecheck' |
|||
import specialrebatetobecheckedInfo from './relation/specialrebatetobecheckedInfo' |
|||
|
|||
export default { |
|||
name: 'specialrebatecheckInfo', |
|||
components: { |
|||
specialrebatetobecheckedInfo |
|||
}, |
|||
data() { |
|||
return { |
|||
viewTitle: '', |
|||
index: 0, |
|||
tableKey: 0, |
|||
lastSpecialrebateKey: 1, |
|||
viewState: 1, |
|||
operation: '', // 点击操作按钮 |
|||
dialogList: { |
|||
comment: '' |
|||
}, |
|||
startTask: true, |
|||
current: { |
|||
taskDefKey: '', |
|||
taskName: '' // 当前环节名称 |
|||
}, |
|||
nextNode: {}, // 下一环节 |
|||
nodeDialogVisible: false, |
|||
currentLink: true, |
|||
// 表单数据 |
|||
formobj: {}, |
|||
rules: {}, |
|||
submitdisabled: false, |
|||
// 环节所需参数 |
|||
linkByParameter: { |
|||
businessSid: '', |
|||
comment: '', |
|||
instanceId: '', |
|||
taskId: '', |
|||
orgSidPath: '', |
|||
taskDefKey: '', |
|||
userSid: '' |
|||
} |
|||
} |
|||
}, |
|||
created() { |
|||
console.log('url:' + window.location.href) |
|||
var one = window.location.href.indexOf('&data') + 6 |
|||
const data = window.location.href.substr(one) // url解码unescape()已从web中移除,尽量不使用 |
|||
const obj = JSON.parse(decodeURIComponent(data)) |
|||
console.log('iframe页面获取的obj:', obj) |
|||
// 点击(同意、终止、驳回、驳回)操作时所需的参数 |
|||
this.linkByParameter.businessSid = obj.businessSid |
|||
this.linkByParameter.instanceId = obj.instanceId |
|||
this.linkByParameter.taskId = obj.taskId |
|||
this.linkByParameter.taskDefKey = obj.taskDefKey |
|||
this.linkByParameter.orgSidPath = window.sessionStorage.getItem('orgSidPath') |
|||
this.linkByParameter.userSid = window.sessionStorage.getItem('userSid') |
|||
this.current.taskDefKey = obj.taskDefKey |
|||
this.current.taskName = obj.taskName |
|||
// 加载表单数据 |
|||
this.showInfo(obj.businessSid) |
|||
}, |
|||
mounted() { |
|||
window.parent.postMessage({ |
|||
cmd: 'returnHeight', |
|||
params: { |
|||
// 告诉父级页面,子页面的弹框高度。 |
|||
code: 2, |
|||
data: 450 + 'px' |
|||
} |
|||
}, '*') |
|||
}, |
|||
methods: { |
|||
showInfo(sid) { |
|||
this.$nextTick(() => { |
|||
this.$refs['form_obj'].clearValidate() |
|||
}) |
|||
this.viewTitle = '专项返利核对审核申请详情' |
|||
console.log('编辑回显', sid) |
|||
req.fetchDetailsBySid(sid).then((resp) => { |
|||
this.formobj = resp.data |
|||
}).catch((e) => { |
|||
this.formobj = {} |
|||
}) |
|||
}, |
|||
handleLook(row) { |
|||
this.viewState = 2 |
|||
this.$refs['divInfo'].showInfo(row) |
|||
}, |
|||
resetState() { |
|||
this.viewState = 1 |
|||
}, |
|||
// 同意 |
|||
openAgree(val) { |
|||
this.operation = val |
|||
this.currentLink = true |
|||
this.dialogList.comment = '同意' |
|||
req.getNextNodesForSubmit({ taskDefKey: this.current.taskDefKey }).then((resp) => { |
|||
if (resp.success) { |
|||
var arr = resp.data |
|||
this.nextNode = arr[0] |
|||
this.nodeDialogVisible = true |
|||
} |
|||
this.submitdisabled = false |
|||
}) |
|||
}, |
|||
// 驳回 |
|||
openReject(val) { |
|||
this.operation = val |
|||
this.currentLink = true |
|||
this.dialogList.comment = '' |
|||
req.getPreviousNodesForReject({ taskDefKey: this.current.taskDefKey }).then((resp) => { |
|||
if (resp.success) { |
|||
var arr = resp.data |
|||
this.nextNode = arr[0] |
|||
this.nodeDialogVisible = true |
|||
} |
|||
this.submitdisabled = false |
|||
}) |
|||
}, |
|||
// 终止 |
|||
openStop(val) { |
|||
this.operation = val |
|||
this.currentLink = false |
|||
this.dialogList.comment = '' |
|||
this.nodeDialogVisible = true |
|||
}, |
|||
reject() { |
|||
if (this.operation === '同意') { |
|||
this.handleAgree() |
|||
} else if (this.operation === '驳回') { |
|||
if (this.dialogList.comment === '') { |
|||
this.$message({ showClose: true, type: 'error', message: '请填写审批意见' }) |
|||
} else { |
|||
this.handleReject() |
|||
} |
|||
} else if (this.operation === '终止') { |
|||
if (this.dialogList.comment === '') { |
|||
this.$message({ showClose: true, type: 'error', message: '请填写审批意见' }) |
|||
} else { |
|||
this.handleStop() |
|||
} |
|||
} |
|||
}, |
|||
/** 同意任务 */ |
|||
handleAgree() { |
|||
this.linkByParameter.comment = this.dialogList.comment |
|||
req.complete(this.linkByParameter).then((response) => { |
|||
if (response.success) { |
|||
this.$notify({ |
|||
title: '提示', |
|||
message: '执行成功', |
|||
type: 'success', |
|||
duration: 2000 |
|||
}) |
|||
this.nodeDialogVisible = false |
|||
// 子页面向父级页面传递值 |
|||
window.parent.postMessage({ |
|||
cmd: 'returnHeight', |
|||
params: { |
|||
// 操作成功,告诉父级页面关闭弹框 |
|||
code: 1 |
|||
} |
|||
}, '*') |
|||
} |
|||
}) |
|||
}, |
|||
/** 驳回任务 */ |
|||
handleReject() { |
|||
this.linkByParameter.comment = this.dialogList.comment |
|||
req.reject(this.linkByParameter).then((response) => { |
|||
if (response.success) { |
|||
this.$notify({ |
|||
title: '提示', |
|||
message: '执行成功', |
|||
type: 'success', |
|||
duration: 2000 |
|||
}) |
|||
this.nodeDialogVisible = false |
|||
// 子页面向父级页面传递值 |
|||
window.parent.postMessage({ |
|||
cmd: 'returnHeight', |
|||
params: { |
|||
// 操作成功,告诉父级页面关闭弹框 |
|||
code: 1 |
|||
} |
|||
}, '*') |
|||
} |
|||
}) |
|||
}, |
|||
/** 终止任务 */ |
|||
handleStop() { |
|||
this.linkByParameter.comment = this.dialogList.comment |
|||
req.breakProcess(this.linkByParameter).then((response) => { |
|||
if (response.success) { |
|||
this.$notify({ |
|||
title: '提示', |
|||
message: '执行成功', |
|||
type: 'success', |
|||
duration: 2000 |
|||
}) |
|||
this.nodeDialogVisible = false |
|||
// 子页面向父级页面传递值 |
|||
window.parent.postMessage({ |
|||
cmd: 'returnHeight', |
|||
params: { |
|||
// 操作成功,告诉父级页面关闭弹框 |
|||
code: 1 |
|||
} |
|||
}, '*') |
|||
} |
|||
}) |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
<style scoped> |
|||
.titwu { |
|||
font-size: 28px; |
|||
text-align: center; |
|||
padding: 30px 0 20px 0; |
|||
} |
|||
.rowStyle { |
|||
border-left: 0px; |
|||
} |
|||
.colOneStyle { |
|||
border-right: 0px !important; |
|||
border-bottom: 0px !important; |
|||
} |
|||
.rowClass { |
|||
border-top: 1px solid #E0E3EB; |
|||
} |
|||
</style> |
|||
|
@ -0,0 +1,546 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<div v-show="viewState == 1"> |
|||
<!--标题按钮部分开始--> |
|||
<div class="tab-header webtop"> |
|||
<!--标题--> |
|||
<div>{{ viewTitle }}</div> |
|||
<!--start 添加修改按钮--> |
|||
<div> |
|||
<el-button type="primary" size="small" :disabled="submitdisabled" @click="save()">保存 |
|||
</el-button> |
|||
<el-button type="primary" size="small" :disabled="submitdisabled" @click="submit()">提交 |
|||
</el-button> |
|||
</div> |
|||
</div> |
|||
<!--标题按钮部分结束--> |
|||
<!--Start 新增修改部分--> |
|||
<div class=""> |
|||
<div class="titwu"><span>{{ formobj.checkApply }}专项返利核对审核申请</span></div> |
|||
<el-form ref="form_obj" :model="formobj" :rules="rules" class="formadd"> |
|||
<el-row class="rowStyle"> |
|||
<el-col :span="2" class="tleftb colOneStyle"> |
|||
<span>品牌:</span> |
|||
</el-col> |
|||
<el-col :span="4" class="colOneStyle"> |
|||
<el-form-item> |
|||
<el-select :disabled="dialogStatus === 'edit'" v-model="formobj.brandName" placeholder="请选择" filterable clearable @change="changeBrand"> |
|||
<el-option v-for="item in brand_list" :key="item.sid" :label="item.brandName" :value="item.brandName"/> |
|||
</el-select> |
|||
</el-form-item> |
|||
</el-col> |
|||
<el-col :span="18" class="tleftb colOneStyle"> |
|||
<el-button size="small" type="primary" @click="handleSelect()">添加</el-button> |
|||
</el-col> |
|||
</el-row> |
|||
<div class="title"> |
|||
<div>本月各项返利核对情况</div> |
|||
</div> |
|||
<el-table :key="tableKey" :data="formobj.scmWhenSpecialrebateCheckapplydetailDetails" :index="index" border style="width: 100%"> |
|||
<el-table-column fixed width="80px" label="序号" type="index" :index="index + 1" align="center"/> |
|||
<el-table-column label="返利类型" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateTypeValue }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.num }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确认金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="明细" align="center"> |
|||
<template slot-scope="scope"> |
|||
<el-button type="primary" size="mini" @click="handleLook(scope.row)">查看</el-button> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
<div class="divStyle"> |
|||
<div>预提返利本月核对情况</div> |
|||
<el-button type="primary" size="mini" class="btntopblueline" @click="handleCheck">往月核对情况</el-button> |
|||
</div> |
|||
<el-table :key="lastSpecialrebateKey" :data="formobj.scmLastSpecialrebateCheckapplydetailDetails" border style="width: 100%"> |
|||
<el-table-column label="预提年月" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withholdingDate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withholdingAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确认金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="未上传数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.notUploadedAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="未上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.notUploadedCost }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
<el-row> |
|||
<el-col :span="2" class="tleftb"> |
|||
<span>备注</span> |
|||
</el-col> |
|||
<el-col :span="22"> |
|||
<el-form-item><el-input v-model="formobj.remarks" placeholder="" class="addinputw" clearable></el-input></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
</el-form> |
|||
</div> |
|||
</div> |
|||
<!--End 添加修改部分--> |
|||
<yiheduizhuanxiangfanli v-show="viewState == 2" ref="divSelect" @backData="backData" @doback="resetState"/> |
|||
<specialrebatetobecheckedAdd v-show="viewState == 3" ref="divAdd" @backAdd="backAdd" @doback="resetState"/> |
|||
<el-dialog :visible.sync="dialogVisible" width="60%"> |
|||
<div class="titwu"><span>往月核对情况</span></div> |
|||
<el-form class="formadd"> |
|||
<el-row style="border-top: 1px solid #E0E3EB"> |
|||
<el-col :span="3" class="tleftb"> |
|||
<span>月促政策</span> |
|||
</el-col> |
|||
<el-col :span="21"> |
|||
<el-form-item><span>{{ summation }}</span></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
<el-table :key="checkKey" :data="checkList" border width="100%"> |
|||
<el-table-column label="计提月份" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.month }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="计提" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.month }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.month }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="未上传" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.month }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.month }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
</el-form> |
|||
</el-dialog> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import req from '@/api/specialrebate/specialrebatecheck' |
|||
import { fetchBySid, brandDown } from '@/api/cheliang/dictcommons' |
|||
import yiheduizhuanxiangfanli from './relation/yiheduizhuanxiangfanli' |
|||
import specialrebatetobecheckedAdd from './relation/specialrebatetobecheckedAdd' |
|||
|
|||
export default { |
|||
name: 'zhuanxiangfanliheduiEdit', |
|||
components: { |
|||
yiheduizhuanxiangfanli, |
|||
specialrebatetobecheckedAdd |
|||
}, |
|||
data() { |
|||
return { |
|||
viewTitle: '', |
|||
viewState: 1, |
|||
index: 0, |
|||
tableKey: 0, |
|||
lastSpecialrebateKey: 1, |
|||
checkKey: 2, |
|||
dialogVisible: false, |
|||
summation: '', |
|||
checkList: [], |
|||
dialogStatus: '', |
|||
brand_list: [], |
|||
// 表单数据 |
|||
formobj: { |
|||
sid: '', |
|||
createByName: '', |
|||
createBySid: '', |
|||
brandName: '', |
|||
brandSid: '', |
|||
checkApply: '', |
|||
createOrgName: '', |
|||
createOrgSid: '', |
|||
useOrgName: '', |
|||
useOrgSid: '', |
|||
remarks: '', |
|||
instanceId: '', // 流程实例ID |
|||
taskId: '', // 任务ID |
|||
scmWhenSpecialrebateCheckapplydetailDetails: [], |
|||
scmLastSpecialrebateCheckapplydetailDetails: [] |
|||
}, |
|||
rules: {}, |
|||
submitdisabled: false |
|||
} |
|||
}, |
|||
created() { |
|||
console.log('url:' + window.location.href) |
|||
var one = window.location.href.indexOf('&data') + 6 |
|||
const data = window.location.href.substr(one) // url解码unescape()已从web中移除,尽量不使用 |
|||
const obj = JSON.parse(decodeURIComponent(data)) |
|||
this.showInfo(obj.businessSid) |
|||
}, |
|||
mounted() { |
|||
window.parent.postMessage({ |
|||
cmd: 'returnHeight', |
|||
params: { |
|||
// 告诉父级页面,子页面的弹框高度。 |
|||
code: 2, |
|||
data: 450 + 'px' |
|||
} |
|||
}, '*') |
|||
}, |
|||
methods: { |
|||
showInfo(sid) { |
|||
this.$nextTick(() => { |
|||
this.$refs['form_obj'].clearValidate() |
|||
}) |
|||
this.dialogStatus = 'edit' |
|||
this.viewTitle = '【编辑】专项返利核对审核申请' |
|||
console.log('编辑回显', sid) |
|||
req.fetchDetailsBySid(sid).then((resp) => { |
|||
this.formobj = resp.data |
|||
this.formobj.instanceId = resp.data.procInstId |
|||
}).catch((e) => { |
|||
this.formobj = {} |
|||
}) |
|||
}, |
|||
changeBrand(value) { |
|||
let bb = null |
|||
this.brand_list.forEach((e) => { |
|||
if (e.brandName === value) { |
|||
bb = { |
|||
name: e.brandName, |
|||
sid: e.sid |
|||
} |
|||
} |
|||
}) |
|||
this.formobj.brandSid = bb.sid |
|||
}, |
|||
// 明细表添加一行数据 |
|||
handleSelect() { |
|||
if (this.formobj.brandName === '' || this.formobj.brandName === null || this.formobj.brandName === undefined) { |
|||
this.$message({ showClose: true, type: 'error', message: '请先选择品牌' }) |
|||
return |
|||
} |
|||
this.viewState = 2 |
|||
this.$refs['divSelect'].showData(this.formobj.scmWhenSpecialrebateCheckapplydetailDetails, this.formobj.scmLastSpecialrebateCheckapplydetailDetails, this.formobj.createOrgSid, this.formobj.brandSid) |
|||
}, |
|||
backData(value, val) { |
|||
this.viewState = 1 |
|||
if (value.length > 0) { |
|||
for (var i in value) { |
|||
let cval = value[i] |
|||
if (!this.formobj.scmWhenSpecialrebateCheckapplydetailDetails || this.formobj.scmWhenSpecialrebateCheckapplydetailDetails.length === 0) { |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails = [] |
|||
} |
|||
let v = 0 |
|||
for (var j in this.formobj.scmWhenSpecialrebateCheckapplydetailDetails) { |
|||
if (this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].rebateTypeValue === cval.rebateTypeValue) { |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].num = parseInt(this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].num) + parseInt(1) |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].withRebate = parseInt(this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].withRebate) + parseInt(cval.withRebate) |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].uploadMoney = parseInt(this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].uploadMoney) + parseInt(cval.uploadMoney) |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].stayDetermineMoney = parseInt(this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].stayDetermineMoney) + parseInt(cval.stayDetermineMoney) |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].adjustmentMoney = parseInt(this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].adjustmentMoney) + parseInt(cval.adjustmentMoney) |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].money = parseInt(this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].money) + parseInt(cval.money) |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[j].specialRebateSids.push(cval.sid) |
|||
v = 1 |
|||
break |
|||
} |
|||
} |
|||
if (v === 0) { |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails.push({ |
|||
rebateTypeKey: cval.rebateTypeKey, |
|||
rebateTypeValue: cval.rebateTypeValue, |
|||
num: 1, |
|||
withRebate: cval.withRebate, |
|||
brandName: cval.brandName, |
|||
brandSid: cval.brandSid, |
|||
uploadMoney: cval.uploadMoney, |
|||
stayDetermineMoney: cval.stayDetermineMoney, |
|||
adjustmentMoney: cval.adjustmentMoney, |
|||
money: cval.money, |
|||
specialRebateSids: [cval.sid], |
|||
sid: '', |
|||
mainSid: '' |
|||
}) |
|||
} |
|||
} |
|||
} else { |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails = [] |
|||
} |
|||
if (val.length > 0) { |
|||
for (var p in val) { |
|||
let bval = val[p] |
|||
if (!this.formobj.scmLastSpecialrebateCheckapplydetailDetails || this.formobj.scmLastSpecialrebateCheckapplydetailDetails.length === 0) { |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails = [] |
|||
} |
|||
let v = 0 |
|||
for (var l in this.formobj.scmLastSpecialrebateCheckapplydetailDetails) { |
|||
if (this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].withholdingDate === bval.withholdingDate) { |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].withholdingAmount = parseInt(this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].withholdingAmount) + parseInt(1) |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].uploadAmount = parseInt(this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].uploadAmount) + parseInt(1) |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].withRebate = parseInt(this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].withRebate) + parseInt(bval.withRebate) |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].uploadMoney = parseInt(this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].uploadMoney) + parseInt(bval.uploadMoney) |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].stayDetermineMoney = parseInt(this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].stayDetermineMoney) + parseInt(bval.stayDetermineMoney) |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].adjustmentMoney = parseInt(this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].adjustmentMoney) + parseInt(bval.adjustmentMoney) |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].money = parseInt(this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].money) + parseInt(bval.money) |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails[l].specialRebateSids.push(bval.sid) |
|||
v = 1 |
|||
break |
|||
} |
|||
} |
|||
if (v === 0) { |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails.push({ |
|||
withholdingDate: bval.withholdingDate, |
|||
withholdingAmount: 1, |
|||
uploadAmount: 1, |
|||
withRebate: bval.withRebate, |
|||
uploadMoney: bval.uploadMoney, |
|||
stayDetermineMoney: bval.stayDetermineMoney, |
|||
adjustmentMoney: bval.adjustmentMoney, |
|||
money: bval.money, |
|||
notUploadedAmount: '', |
|||
notUploadedCost: '', |
|||
specialRebateSids: [bval.sid], |
|||
sid: '', |
|||
mainSid: '' |
|||
}) |
|||
} |
|||
} |
|||
} else { |
|||
this.formobj.scmLastSpecialrebateCheckapplydetailDetails = [] |
|||
} |
|||
}, |
|||
// 明细表删除一行数据 |
|||
dataDelete(index) { |
|||
this.formobj.baseVehinstallModpricedetails.splice(index, 1) |
|||
}, |
|||
handleLook(row) { |
|||
this.viewState = 3 |
|||
this.$refs['divAdd'].showInfo(row) |
|||
}, |
|||
backAdd(value, rebateType) { |
|||
this.viewState = 1 |
|||
const aa = [] |
|||
if (value.length > 0) { |
|||
for (var i in value) { |
|||
let cval = value[i] |
|||
let v = 0 |
|||
for (var j in aa) { |
|||
if (aa[j].rebateTypeValue === cval.rebateTypeValue) { |
|||
aa[j].num = parseInt(aa[j].num) + parseInt(1) |
|||
aa[j].withRebate = parseInt(aa[j].withRebate) + parseInt(cval.withRebate) |
|||
aa[j].uploadMoney = parseInt(aa[j].uploadMoney) + parseInt(cval.uploadMoney) |
|||
aa[j].stayDetermineMoney = parseInt(aa[j].stayDetermineMoney) + parseInt(cval.stayDetermineMoney) |
|||
aa[j].adjustmentMoney = parseInt(aa[j].adjustmentMoney) + parseInt(cval.adjustmentMoney) |
|||
aa[j].money = parseInt(aa[j].money) + parseInt(cval.money) |
|||
aa[j].specialRebateSids.push(cval.sid) |
|||
v = 1 |
|||
break |
|||
} |
|||
} |
|||
if (v === 0) { |
|||
aa.push({ |
|||
rebateTypeKey: cval.rebateTypeKey, |
|||
rebateTypeValue: cval.rebateTypeValue, |
|||
num: 1, |
|||
withRebate: cval.withRebate, |
|||
brandName: cval.brandName, |
|||
brandSid: cval.brandSid, |
|||
uploadMoney: cval.uploadMoney, |
|||
stayDetermineMoney: cval.stayDetermineMoney, |
|||
adjustmentMoney: cval.adjustmentMoney, |
|||
money: cval.money, |
|||
specialRebateSids: [cval.sid], |
|||
sid: '', |
|||
mainSid: '' |
|||
}) |
|||
} |
|||
} |
|||
for (var k = 0; k < this.formobj.scmWhenSpecialrebateCheckapplydetailDetails.length; k++) { |
|||
if (this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].rebateTypeValue === rebateType) { |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].rebateTypeKey = aa[0].rebateTypeKey |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].rebateTypeValue = aa[0].rebateTypeValue |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].num = aa[0].num |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].withRebate = aa[0].withRebate |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].brandName = aa[0].brandName |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].brandSid = aa[0].brandSid |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].uploadMoney = aa[0].uploadMoney |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].stayDetermineMoney = aa[0].stayDetermineMoney |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].adjustmentMoney = aa[0].adjustmentMoney |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].money = aa[0].money |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[k].specialRebateSids = aa[0].specialRebateSids |
|||
break |
|||
} |
|||
} |
|||
} else if (value.length === 0) { |
|||
for (var l = 0; l < this.formobj.scmWhenSpecialrebateCheckapplydetailDetails.length; l++) { |
|||
if (this.formobj.scmWhenSpecialrebateCheckapplydetailDetails[l].rebateTypeValue === rebateType) { |
|||
this.formobj.scmWhenSpecialrebateCheckapplydetailDetails.splice(l, 1) |
|||
break |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
resetState() { |
|||
this.viewState = 1 |
|||
}, |
|||
handleCheck() { |
|||
this.dialogVisible = true |
|||
}, |
|||
save() { |
|||
console.log(this.formobj) |
|||
this.$refs['form_obj'].validate((valid) => { |
|||
if (valid) { |
|||
this.submitdisabled = true |
|||
req.save(this.formobj).then((resp) => { |
|||
this.submitdisabled = false |
|||
if (resp.success) { |
|||
this.$message({ |
|||
showClose: true, |
|||
type: 'success', |
|||
message: resp.msg |
|||
}) |
|||
// 子页面向父级页面传递值(关闭弹框) |
|||
window.parent.postMessage({ |
|||
cmd: 'returnHeight', |
|||
params: { |
|||
// 操作成功,告诉父级页面关闭弹框 |
|||
code: 1 |
|||
} |
|||
}, '*') |
|||
} |
|||
}).catch(() => { |
|||
this.submitdisabled = false |
|||
}) |
|||
} else { |
|||
return false |
|||
} |
|||
}) |
|||
}, |
|||
submit() { |
|||
this.$refs['form_obj'].validate((valid) => { |
|||
if (valid) { |
|||
this.submitdisabled = true |
|||
req.submitVehicleApply(this.formobj).then((resp) => { |
|||
this.submitdisabled = false |
|||
if (resp.success) { |
|||
this.$message({ |
|||
showClose: true, |
|||
type: 'success', |
|||
message: resp.msg |
|||
}) |
|||
// 子页面向父级页面传递值(关闭弹框) |
|||
window.parent.postMessage({ |
|||
cmd: 'returnHeight', |
|||
params: { |
|||
// 操作成功,告诉父级页面关闭弹框 |
|||
code: 1 |
|||
} |
|||
}, '*') |
|||
} |
|||
}).catch(() => { |
|||
this.submitdisabled = false |
|||
}) |
|||
} else { |
|||
return false |
|||
} |
|||
}) |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
<style scoped> |
|||
.divStyle { |
|||
padding: 7px; |
|||
font-weight: bold; |
|||
font-size: 16px; |
|||
background-color: #0294d7; |
|||
color: #ffffff; |
|||
text-align: left; |
|||
display: flex; |
|||
flex-direction: row; |
|||
justify-content: space-between; |
|||
align-items: center; |
|||
} |
|||
.titwu { |
|||
font-size: 28px; |
|||
text-align: center; |
|||
padding: 30px 0 20px 0; |
|||
} |
|||
.rowStyle { |
|||
border-left: 0px; |
|||
} |
|||
.colOneStyle { |
|||
border-right: 0px !important; |
|||
border-bottom: 0px !important; |
|||
} |
|||
</style> |
|||
|
@ -0,0 +1,276 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<div v-show="viewState == 1"> |
|||
<!--标题按钮部分开始--> |
|||
<div class="tab-header webtop"> |
|||
<!--标题--> |
|||
<div>{{ viewTitle }}</div> |
|||
<!--start 添加修改按钮--> |
|||
<div> |
|||
<el-button type="danger" size="small" @click="openRevoke()">撤回</el-button> |
|||
</div> |
|||
</div> |
|||
<!--标题按钮部分结束--> |
|||
<!--Start 新增修改部分--> |
|||
<div class=""> |
|||
<div class="titwu"><span>专项返利核对审核申请</span></div> |
|||
<el-form ref="form_obj" :model="formobj" :rules="rules" class="formadd"> |
|||
<el-row class="rowStyle"> |
|||
<el-col :span="2" class="tleftb colOneStyle"> |
|||
<span>品牌:</span> |
|||
</el-col> |
|||
<el-col :span="22" class="colOneStyle"> |
|||
<el-form-item><span>{{ formobj.brandName }}</span></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
<div class="title"> |
|||
<div>本月各项返利核对情况</div> |
|||
</div> |
|||
<el-table :key="tableKey" :data="formobj.scmWhenSpecialrebateCheckapplydetailDetails" :index="index" border style="width: 100%"> |
|||
<el-table-column fixed width="80px" label="序号" type="index" :index="index + 1" align="center"/> |
|||
<el-table-column label="返利类型" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.rebateTypeValue }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.num }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确认金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="明细" align="center"> |
|||
<template slot-scope="scope"> |
|||
<el-button type="primary" size="mini" @click="handleLook(scope.row)">查看</el-button> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
<div class="title"> |
|||
<div>预提返利本月核对情况</div> |
|||
</div> |
|||
<el-table :key="lastSpecialrebateKey" :data="formobj.scmLastSpecialrebateCheckapplydetailDetails" :index="index" border style="width: 100%"> |
|||
<el-table-column fixed width="80px" label="序号" type="index" :index="index + 1" align="center"/> |
|||
<el-table-column label="预提年月" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withholdingDate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withholdingAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="预提金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.withRebate }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.uploadMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="待确认金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.stayDetermineMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="调整金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.adjustmentMoney }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="费用" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.money }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="未上传数量" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.notUploadedAmount }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column label="未上传金额" align="center"> |
|||
<template slot-scope="scope"> |
|||
<span>{{ scope.row.notUploadedCost }}</span> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
<el-row> |
|||
<el-col :span="2" class="tleftb"> |
|||
<span>备注</span> |
|||
</el-col> |
|||
<el-col :span="22"> |
|||
<el-form-item><span>{{ formobj.remarks }}</span></el-form-item> |
|||
</el-col> |
|||
</el-row> |
|||
</el-form> |
|||
</div> |
|||
</div> |
|||
<!--End 添加修改部分--> |
|||
<specialrebatetobecheckedInfo v-show="viewState == 2" ref="divInfo" @doback="resetState"/> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import req from '@/api/specialrebate/specialrebatecheck' |
|||
import specialrebatetobecheckedInfo from './relation/specialrebatetobecheckedInfo' |
|||
|
|||
export default { |
|||
name: 'zhuanxiangfanliheduiYiBanInfo', |
|||
components: { |
|||
specialrebatetobecheckedInfo |
|||
}, |
|||
data() { |
|||
return { |
|||
viewTitle: '', |
|||
index: 0, |
|||
tableKey: 0, |
|||
lastSpecialrebateKey: 1, |
|||
viewState: 1, |
|||
// 表单数据 |
|||
formobj: {}, |
|||
rules: {}, |
|||
submitdisabled: false, |
|||
// 环节所需参数 |
|||
linkByParameter: { |
|||
businessSid: '', |
|||
comment: '', |
|||
instanceId: '', |
|||
taskId: '', |
|||
orgSidPath: '', |
|||
taskDefKey: '', |
|||
userSid: '' |
|||
} |
|||
} |
|||
}, |
|||
created() { |
|||
console.log('url:' + window.location.href) |
|||
var one = window.location.href.indexOf('&data') + 6 |
|||
const data = window.location.href.substr(one) // url解码unescape()已从web中移除,尽量不使用 |
|||
const obj = JSON.parse(decodeURIComponent(data)) |
|||
console.log('iframe页面获取的obj:', obj) |
|||
// 点击(同意、终止、驳回、驳回)操作时所需的参数 |
|||
this.linkByParameter.businessSid = obj.businessSid |
|||
this.linkByParameter.instanceId = obj.instanceId |
|||
this.linkByParameter.taskId = obj.taskId |
|||
this.linkByParameter.taskDefKey = obj.taskDefKey |
|||
this.linkByParameter.orgSidPath = window.sessionStorage.getItem('orgSidPath') |
|||
this.linkByParameter.userSid = window.sessionStorage.getItem('userSid') |
|||
// 加载表单数据 |
|||
this.showInfo(obj.businessSid) |
|||
}, |
|||
mounted() { |
|||
window.parent.postMessage({ |
|||
cmd: 'returnHeight', |
|||
params: { |
|||
// 告诉父级页面,子页面的弹框高度。 |
|||
code: 2, |
|||
data: 450 + 'px' |
|||
} |
|||
}, '*') |
|||
}, |
|||
methods: { |
|||
showInfo(sid) { |
|||
this.$nextTick(() => { |
|||
this.$refs['form_obj'].clearValidate() |
|||
}) |
|||
this.viewTitle = '专项返利核对审核申请详情' |
|||
console.log('编辑回显', sid) |
|||
req.fetchDetailsBySid(sid).then((resp) => { |
|||
this.formobj = resp.data |
|||
}).catch((e) => { |
|||
this.formobj = {} |
|||
}) |
|||
}, |
|||
handleLook(row) { |
|||
this.viewState = 2 |
|||
this.$refs['divInfo'].showInfo(row) |
|||
}, |
|||
resetState() { |
|||
this.viewState = 1 |
|||
}, |
|||
/** 确认撤回任务 */ |
|||
openRevoke() { |
|||
this.$confirm('是否确认执行撤回操作', '提示', { |
|||
confirmButtonText: '确定', |
|||
cancelButtonText: '取消', |
|||
type: 'warning' |
|||
}).then(() => { |
|||
this.handleRevoke() |
|||
}).catch(() => { |
|||
this.$message({ |
|||
type: 'info', |
|||
message: '已取消撤回' |
|||
}) |
|||
}) |
|||
}, |
|||
/** 撤回任务 */ |
|||
handleRevoke() { |
|||
req.revokeProcess(this.linkByParameter).then((response) => { |
|||
if (response.success) { |
|||
this.$notify({ |
|||
title: '提示', |
|||
message: '执行成功', |
|||
type: 'success', |
|||
duration: 2000 |
|||
}) |
|||
this.nodeDialogVisible = false |
|||
// 子页面向父级页面传递值 |
|||
window.parent.postMessage({ |
|||
cmd: 'returnHeight', |
|||
params: { |
|||
// 操作成功,告诉父级页面关闭弹框 |
|||
code: 1 |
|||
} |
|||
}, '*') |
|||
} |
|||
}) |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
<style scoped> |
|||
.titwu { |
|||
font-size: 28px; |
|||
text-align: center; |
|||
padding: 30px 0 20px 0; |
|||
} |
|||
.rowStyle { |
|||
border-left: 0px; |
|||
} |
|||
.colOneStyle { |
|||
border-right: 0px !important; |
|||
border-bottom: 0px !important; |
|||
} |
|||
</style> |
|||
|
Loading…
Reference in new issue