Commit 589e3d41 by liuxin

账务Settlement表check添加

parent e7b4b2a4
......@@ -276,15 +276,11 @@ export default {
* @param {String} isCover 非机构双击后需要回填的字段值是覆盖还是叠加,部分覆盖值为对象,false为叠加,如{TXT:false},k值为modelUrl的k,如全部覆盖则isCover='T',如全部叠加则isCover='',默认全部覆盖
*/
showGridPromptDialog(rulePath, columns, shadow, modelUrl, isCover = "T",Dialog='etyDialog') {
this.executeRule(rulePath).then((res) => {
this.executeRule(rulePath, {'EventType' : 4}).then((res) => {
if (res.respCode == SUCCESS) {
if (res.data.params) {
Utils.copyValueFromVO(this.model, res.data);
} else {
console.log("in if")
console.log(this.root.$ref)
console.log(this.root.$refs)
console.log(this.root.$refs[Dialog]);
this.root.$refs[Dialog].show = true
this.root.promptData = {
title: res.data.title,
......
......@@ -296,11 +296,13 @@
</el-table-column>
<el-table-column label="Account" prop="act" width="auto">
<template slot-scope="scope">
<c-select v-model="scope.row.act">
<el-option v-for="item in scope.act" :key="item.value" :label="item.label"
:value="item.value">
</el-option>
</c-select>
<el-form-item label="0" :prop="'setglg.setgll.' + scope.$index + '.act'" >
<c-select v-model="scope.row.act">
<el-option v-for="item in scope.act" :key="item.value" :label="item.label"
:value="item.value">
</el-option>
</c-select>
</el-form-item>
</template>
</el-table-column>
<el-table-column label="C" prop="debcdtflg" width="45px">
......
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