结算修改
This commit is contained in:
parent
4e058ebb9f
commit
7e0f30a66e
|
|
@ -398,7 +398,8 @@ export default {
|
|||
/** 导出按钮操作 */
|
||||
//租赁
|
||||
handleExport1() {
|
||||
const params = this.rowData
|
||||
let data = _.cloneDeep(this.rowData);
|
||||
const params = {params:JSON.stringify(data)}
|
||||
this.download(
|
||||
'material/slt_agreement_info/exportLease',
|
||||
{...params,},
|
||||
|
|
@ -407,7 +408,8 @@ export default {
|
|||
},
|
||||
//丢失
|
||||
handleExport2() {
|
||||
const params = this.rowData
|
||||
let data = _.cloneDeep(this.rowData);
|
||||
const params = {params:JSON.stringify(data)}
|
||||
this.download(
|
||||
'material/slt_agreement_info/exportLose',
|
||||
{...params,},
|
||||
|
|
@ -416,7 +418,8 @@ export default {
|
|||
},
|
||||
// 维修
|
||||
handleExport3() {
|
||||
const params = this.rowData
|
||||
let data = _.cloneDeep(this.rowData);
|
||||
const params = {params:JSON.stringify(data)}
|
||||
this.download(
|
||||
'material/slt_agreement_info/exportRepair',
|
||||
{...params,},
|
||||
|
|
@ -425,7 +428,8 @@ export default {
|
|||
},
|
||||
//报废
|
||||
handleExport4() {
|
||||
const params = this.rowData
|
||||
let data = _.cloneDeep(this.rowData);
|
||||
const params = {params:JSON.stringify(data)}
|
||||
this.download(
|
||||
'material/slt_agreement_info/exportScrap',
|
||||
{...params,},
|
||||
|
|
@ -438,7 +442,8 @@ export default {
|
|||
// )
|
||||
},
|
||||
handleExport5() {
|
||||
const params = this.rowData
|
||||
let data = _.cloneDeep(this.rowData);
|
||||
const params = {params:JSON.stringify(data)}
|
||||
this.download(
|
||||
'material/slt_agreement_info/exportReduction',
|
||||
{...params,},
|
||||
|
|
@ -447,7 +452,8 @@ export default {
|
|||
},
|
||||
|
||||
handleExportAll() {
|
||||
const params = this.rowData
|
||||
let data = _.cloneDeep(this.rowData);
|
||||
const params = {params:JSON.stringify(data)}
|
||||
this.download(
|
||||
'material/slt_agreement_info/exportAll',
|
||||
{...params,},
|
||||
|
|
|
|||
|
|
@ -442,7 +442,8 @@ export default {
|
|||
},
|
||||
//结算申请
|
||||
handleApply(row) {
|
||||
let arr = row
|
||||
let arr = [];
|
||||
arr.push(row);
|
||||
// console.log(arr)
|
||||
// console.log(this.ids)
|
||||
// console.log(JSON.stringify(arr))
|
||||
|
|
|
|||
Loading…
Reference in New Issue