Commit d848c764 by chenwenbin

// 表外记账,费用账务,会计分录前后端联调优化

parent 1c1355da
...@@ -194,9 +194,10 @@ export default { ...@@ -194,9 +194,10 @@ export default {
this.calcPayDetail(reqParams) this.calcPayDetail(reqParams)
break break
case 'changeDsp': case 'changeDsp':
this.model.setmod.setglg.setgll = emitParams.list; let setglgRequest = buildFn.buildSetglg(this.model, this.trnName);
reqParams = buildFn.buildSetgllAccts(this.model, this.trnName, emitParams.list); setglgRequest.setglg = {setgll: emitParams.list};
this.setgllAccts(reqParams, emitParams.index) this.setgllAccts(setglgRequest, emitParams.index)
emitParams.list = this.model.setmod.setglg.setgll;
break break
default: default:
return return
......
...@@ -507,7 +507,7 @@ ...@@ -507,7 +507,7 @@
<template #default="scope"> <template #default="scope">
<c-select <c-select
v-model="scope.row.dsp" v-model="scope.row.dsp"
@change="dspChange(scope.$index)" @change="changeDsp(scope.$index, 'changeDsp')"
v-if="scope.row.debcdtflg == 'D'" v-if="scope.row.debcdtflg == 'D'"
> >
<el-option <el-option
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment