Commit d8abe43e by 潘际乾
parents 839b2d5c d0cb5c37
...@@ -180,4 +180,7 @@ export default { ...@@ -180,4 +180,7 @@ export default {
.el-table .success-row { .el-table .success-row {
background: #f0f9eb; background: #f0f9eb;
} }
.eContainer-table thead tr th.is-leaf{
border-bottom: transparent;
}
</style> </style>
\ No newline at end of file
...@@ -5778,7 +5778,18 @@ const CodeTable = { ...@@ -5778,7 +5778,18 @@ const CodeTable = {
payee: [ payee: [
{ label: "OWN Ourselves", value: "OWN" }, { label: "OWN Ourselves", value: "OWN" },
{ label: "ISS issuing Bank", value: "ISS" } { label: "ISS issuing Bank", value: "ISS" }
] ],
acccur:[
{ label: `CNY-人民币`, value: `CNY` },
{ label: `USD-美元`, value: `USD` },
{ label: `HKD-港币`, value: `HKD` },
{ label: `GBP-英镑`, value: `GBP` },
{ label: `EUR-欧元`, value: `EUR` },
{ label: `CAD-加元`, value: `CAD` },
{ label: `JPY-日元`, value: `JPY` },
{ label: `AUD-澳元`, value: `AUD` },
{ label: `CHF-瑞朗`, value: `CHF` },
],
} }
export default CodeTable; export default CodeTable;
\ No newline at end of file
...@@ -959,6 +959,7 @@ function checkDidgrpRecTenmaxdayN1000(rule, value, callback) { ...@@ -959,6 +959,7 @@ function checkDidgrpRecTenmaxdayN1000(rule, value, callback) {
const that = this; const that = this;
that.exeuteCheck("didgrp.rec.tenmaxday").then(res => { that.exeuteCheck("didgrp.rec.tenmaxday").then(res => {
//TODO //TODO
Utils.copyValueFromVO(this.model, res.data)
callback() callback()
}) })
} }
......
...@@ -347,7 +347,7 @@ function defaultDidgrpRecTenmaxday(rule, value, callback) { ...@@ -347,7 +347,7 @@ function defaultDidgrpRecTenmaxday(rule, value, callback) {
const that = this; const that = this;
that.executeDefault("didgrp.blk.defdet").then(res => { that.executeDefault("didgrp.blk.defdet").then(res => {
//TODO //TODO
that.model.didgrp.blk.defdet = res.data.didgrp_blk_defdet; Utils.copyValueFromVO(this.model, res.data)
callback() callback()
}) })
} }
......
...@@ -284,8 +284,8 @@ export default { ...@@ -284,8 +284,8 @@ export default {
"didgrp.rec.tenmaxday": [ "didgrp.rec.tenmaxday": [
{ type: "string", required: true, message: "必输项", trigger: "blur" }, { type: 'number', required: true, message: "必输项", trigger: "blur" },
{ max: 3, message: "长度不能超过3", trigger: "blur" } // { max: 3, message: "长度不能超过3", trigger: "blur" },
], ],
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
</el-form-item> </el-form-item>
<el-form-item label="付款期限" prop="didgrp.rec.tenmaxday" @keyup.enter.native="recTenmaxdayEvent"> <el-form-item label="付款期限" prop="didgrp.rec.tenmaxday" @keyup.enter.native="recTenmaxdayEvent">
<c-input :disabled="model.didgrp.rec.avbby == 'P'" v-model="model.didgrp.rec.tenmaxday" placeholder="请输入" style="width:15%"></c-input> <c-input :disabled="model.didgrp.rec.avbby == 'P'" v-model.number="model.didgrp.rec.tenmaxday" placeholder="请输入" style="width:15%" maxlength="3"></c-input>
</el-form-item> </el-form-item>
<el-form-item label="远期付款指示" prop="didgrp.blk.defdet"> <el-form-item label="远期付款指示" prop="didgrp.blk.defdet">
......
...@@ -310,9 +310,9 @@ ...@@ -310,9 +310,9 @@
</el-table-column> </el-table-column>
<el-table-column label="in" prop="acccur" width="auto"> <el-table-column label="in" prop="acccur" width="auto">
<template slot-scope="scope"> <template slot-scope="scope">
<el-select v-model="scope.acccur"> <el-select v-model="scope.row.acccur">
<el-option <el-option
v-for="item in scope.acccur" v-for="item in codes.acccur"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value" :value="item.value"
...@@ -342,7 +342,7 @@ ...@@ -342,7 +342,7 @@
</el-table-column> </el-table-column>
<el-table-column label="Account" prop="act" width="auto"> <el-table-column label="Account" prop="act" width="auto">
<template slot-scope="scope"> <template slot-scope="scope">
<el-select v-model="scope.act"> <el-select v-model="scope.row.act">
<el-option <el-option
v-for="item in scope.act" v-for="item in scope.act"
:key="item.value" :key="item.value"
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
{{ item[1] }} {{ item[1] }}
</el-col> <el-divider></el-divider> </el-col>
</el-col> </el-col>
</el-row> </el-row>
......
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