Commit e35a72cc by zhengxiaokui

zxk

parent a474ef64
......@@ -76,11 +76,11 @@ export default {
],
"ledgrp.rec.nomtop": [
{ type: "string", required: false, message: "必输项" },
{ required: false, message: "必输项" },
{ max: 2, message: "长度不能超过2" }
],
"ledgrp.rec.nomton": [
{ type: "string", required: false, message: "必输项" },
{ required: false, message: "必输项" },
{ max: 2, message: "长度不能超过2" }
],
"ledgrp.ben.adrelc": [
......@@ -103,7 +103,7 @@ export default {
{ max: 16, message: "长度不能超过16" }
],
"ledgrp.rec.opndat": [
{ required: false, message: "输入正确的日期" }
{ required: true, message: "输入正确的日期" }
],
"ledgrp.rec.preadvdt": [
{ required: false, message: "输入正确的日期" }
......@@ -137,7 +137,7 @@ export default {
{ max: 140, message: "长度不能超过140" }
],
"ledgrp.rec.expdat": [
{ required: false, message: "输入正确的日期" }
{ required: true, message: "输入正确的日期" }
],
"ledgrp.iss.adrelc": [
{ type: "string", required: true, message: "必输项" },
......
......@@ -9,6 +9,7 @@
v-model="model.ledgrp.rec.avbwth"
style="width: 100%"
placeholder="请选择指定银行"
:code="codes.avbwth"
>
</c-select>
</el-form-item>
......
......@@ -255,13 +255,13 @@ export default {
{
title: "Pre-Advising/Notifying",
url: "/business/letrsv",
disabled: false,
disabled: this.model.ledgrp.rec.ownref ? true : false,
},
{
title: "Advising/Confirming",
url: "/business/letopn",
hotsubx: "6",
disabled: false,
disabled: this.model.ledgrp.rec.ownref ? true : false,
},
{ title: "Reservation", url: "#", disabled: false },
{ title: "Resevation & Receving Docs", url: "#", disabled: false },
......@@ -270,7 +270,7 @@ export default {
title: "Amending Issuing Bank",
url: "/business/letame",
hotsubx: "6",
disabled: false,
disabled: this.model.ledgrp.rec.ownref ? false : true,
},
{
title: "Changing Issuing Bank",
......
......@@ -9,6 +9,7 @@
<el-table-column prop="title" align="center">
<template slot-scope="scope">
<c-button
class="c_button_style"
@click.native="onNarBtnClick(scope.row.url, scope.row.hotsubx)"
:title="scope.row.title"
:disabled="scope.row.disabled"
......@@ -52,11 +53,8 @@ export default {
</script>
<style>
a {
text-decoration-line: none;
color: #606266;
}
a:hover {
color: blue;
.c_button_style {
border: 0px;
border-radius: 5px;
}
</style>
\ No newline at end of file
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