Commit b138eb2a by liyixun

bttrcl 交易快照和复核处理

parent 92bf3c8b
......@@ -107,12 +107,12 @@ export default {
],
"btdgrp.blk.setinsbt":[
{type: "string", required: true, message: "必输项"},
{max: 65,message:"长度不能超过65"}
{max: 1300,message:"长度不能超过1300"}
],
"trnmod.trndoc.nar754":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
{max: 700,message:"长度不能超过700"}
],
"btdgrp.rec.lescom":[
{type: "string", required: false, message: "必输项"},
......@@ -142,7 +142,7 @@ export default {
],
"rmbclm.rmbrmb.pts.adrblk":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
{max: 140,message:"长度不能超过140"}
],
"rmbclm.rmbrmb.dbfadrblkcn":[
{type: "string", required: true, message: "必输项"},
......@@ -175,7 +175,7 @@ export default {
],
"rmbclm.acwacw.pts.adrblk":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
{max: 140,message:"长度不能超过140"}
],
"rmbclm.acwacw.dbfadrblkcn":[
{type: "string", required: true, message: "必输项"},
......@@ -208,7 +208,7 @@ export default {
],
"rmbclm.bebbeb.pts.adrblk":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
{max: 140,message:"长度不能超过140"}
],
"rmbclm.bebbeb.dbfadrblkcn":[
{type: "string", required: true, message: "必输项"},
......
......@@ -5,6 +5,7 @@ import Pub from "../Public"
export default class Bttrcl{
constructor () {
this.data = {
bttissl1blk:"",
bttp0:{
ltdget:{
sdamod:{
......
......@@ -270,7 +270,7 @@
<c-input
type="textarea"
v-model="model.btdgrp.blk.setinsbt"
maxlength="65"
maxlength="1300"
show-word-limit
placeholder="请输入Settlement Instructions transaction field"
rows="8"
......@@ -369,7 +369,7 @@
<c-input
type="textarea"
v-model="model.trnmod.trndoc.nar754"
maxlength="35"
maxlength="700"
show-word-limit
placeholder="请输入Narrative :77A:"
rows="8"
......
......@@ -146,6 +146,9 @@ export default {
if (rtnmsg.respCode == SUCCESS) {
this.updateModel(rtnmsg.data);
//TODO 处理数据逻辑
if (this.isInDisplay) {
this.restoreDisplay();
}
} else {
this.$notify.error({ title: "错误", message: "服务请求失败!" });
}
......
<template>
<ReviewWrapper>
<Bttrcl></Bttrcl>
</ReviewWrapper>
</template>
<script>
import Bttrcl from "~/views/Business/Bttrcl";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewBttrcl",
components: { ReviewWrapper, Bttrcl },
created() {},
mounted() {},
};
</script>
<style></style>
\ No newline at end of file
......@@ -108,6 +108,8 @@ import ReviewGitcrj from "./Business/ReviewGitcrj.vue";
import ReviewGitset from "./Business/ReviewGitset.vue";
import ReviewGctcan from "./Business/ReviewGctcan.vue";
import ReviewBttrcl from "./Business/ReviewBttrcl.vue";
......@@ -232,6 +234,9 @@ const ReviewRouter = [
{ path: "gitset", component: ReviewBctdor, name: "ReviewGitset", meta: { title: "复核-Gitset" } },
{ path: "gitcrj", component: ReviewBctrad, name: "ReviewGitcrj", meta: { title: "复核-Gitcrj" } },
{ path: "gctcan", component: ReviewBctsel, name: "ReviewGctcan", meta: { title: "复核-Gctcan" } },
{ path: "bttrcl", component: ReviewBttrcl, name: "ReviewBttrcl", meta: { title: "复核-Bttrcl" } },
];
......
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