Commit 1bfa6213 by hulei
parents 9e534cb4 2391426c
...@@ -199,7 +199,8 @@ export default { ...@@ -199,7 +199,8 @@ export default {
obj[position].push({ obj[position].push({
idx:index, idx:index,
prop:label, prop:label,
width:width+'px', // width:width+'px',
width:width === 'auto' ? width : width +'px',
pattern, pattern,
render, render,
...rest ...rest
...@@ -218,7 +219,8 @@ export default { ...@@ -218,7 +219,8 @@ export default {
obj[positionArr[0]].push({ obj[positionArr[0]].push({
idx: colPropArr[0], idx: colPropArr[0],
prop: columnName, prop: columnName,
width: colPropArr[3] + 'px', // width: colPropArr[3] + 'px',
width: colPropArr[3] === 'auto' ? colPropArr[3] : colPropArr[3] + 'px',
}); });
} }
} }
......
...@@ -258,7 +258,7 @@ export default { ...@@ -258,7 +258,7 @@ export default {
position: relative; position: relative;
} }
.search-wrapper >>> .el-input { .search-wrapper >>> .el-input {
/* z-index: 2001; */ z-index: 101;
} }
.search-wrapper >>> .el-input .el-input__inner { .search-wrapper >>> .el-input .el-input__inner {
height: 30px; height: 30px;
...@@ -273,7 +273,7 @@ export default { ...@@ -273,7 +273,7 @@ export default {
border: 2px solid #4e71f2; border: 2px solid #4e71f2;
box-shadow: none; box-shadow: none;
font-family: "Microsoft YaHei", Arial, sans-serif; font-family: "Microsoft YaHei", Arial, sans-serif;
z-index: 2000; z-index: 100;
background: #fff; background: #fff;
} }
.search-sug ul { .search-sug ul {
......
...@@ -178,7 +178,7 @@ export default { ...@@ -178,7 +178,7 @@ export default {
*/ */
showGridPromptDialog(rulePath, columns, shadow, modelUrl, isCover = "T",Dialog='etyDialog') { showGridPromptDialog(rulePath, columns, shadow, modelUrl, isCover = "T",Dialog='etyDialog') {
this.executeRule(rulePath).then((res) => { this.executeRule(rulePath).then((res) => {
if (res.respCode = SUCCESS) { if (res.respCode == SUCCESS) {
if (res.data.params) { if (res.data.params) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} else { } else {
...@@ -207,7 +207,7 @@ export default { ...@@ -207,7 +207,7 @@ export default {
obj[props] = val; obj[props] = val;
Utils.copyValueFromVO(this.model, obj); Utils.copyValueFromVO(this.model, obj);
this.executeRule(rulePath).then((res) => { this.executeRule(rulePath).then((res) => {
if (res.respCode = SUCCESS) { if (res.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
}); });
......
...@@ -17,7 +17,7 @@ export default { ...@@ -17,7 +17,7 @@ export default {
], ],
"didgrp.cbs.nom1.amt":[ "didgrp.cbs.nom1.amt":[
{required: true, message: "必输项", trigger: 'blur'}, {required: false, message: "必输项", trigger: 'blur'},
{max: 18,message:"整数位不能超过14位"}, {max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
], ],
...@@ -30,7 +30,7 @@ export default { ...@@ -30,7 +30,7 @@ export default {
{max: 3,message:"长度不能超过3"} {max: 3,message:"长度不能超过3"}
], ],
"didgrp.cbs.opn1.amt":[ "didgrp.cbs.opn1.amt":[
{required: true, message: "必输项", trigger: 'blur'}, {required: false, message: "必输项", trigger: 'blur'},
{max: 18,message:"整数位不能超过14位"}, {max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
], ],
...@@ -58,15 +58,15 @@ export default { ...@@ -58,15 +58,15 @@ export default {
"didgrp.rec.opndat":[ "didgrp.rec.opndat":[
{type: "date", required: false, message: "输入正确的日期"} {type: "date", required: false, message: "输入正确的日期"}
], ],
"bddgrp.prb.pts.ref":[ // "bddgrp.prb.pts.ref":[
{type: "string", required: false, message: "必输项"}, // {type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"} // {max: 16,message:"长度不能超过16"}
], // ],
"didgrp.rec.expdat":[ "didgrp.rec.expdat":[
{type: "date", required: false, message: "输入正确的日期"} {type: "date", required: false, message: "输入正确的日期"}
], ],
"didgrp.rec.expplc":[ "didgrp.rec.expplc":[
{type: "string", required: true, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 35,message:"长度不能超过35"} {max: 35,message:"长度不能超过35"}
], ],
"bddgrp.prb.pts.nam":[ "bddgrp.prb.pts.nam":[
...@@ -99,8 +99,12 @@ export default { ...@@ -99,8 +99,12 @@ export default {
{max: 18,message:"整数位不能超过14位"}, {max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
], ],
"bddgrp.rec.docprbrol": [
{ type: "string", required: true, message: "必输项" },
{ max: 60, message: "长度不能超过60" }
],
"bddgrp.prb.pts.ref":[ "bddgrp.prb.pts.ref":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: true, message: "必输项"},
{max: 16,message:"长度不能超过16"} {max: 16,message:"长度不能超过16"}
], ],
"trnmod.swiadd.oriinstgagt":[ "trnmod.swiadd.oriinstgagt":[
...@@ -112,21 +116,21 @@ export default { ...@@ -112,21 +116,21 @@ export default {
// {max: 3,message:"长度不能超过3"} // {max: 3,message:"长度不能超过3"}
], ],
"bddgrp.prb.pts.extkey":[ "bddgrp.prb.pts.extkey":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: true, message: "必输项"},
{max: 16,message:"长度不能超过16"} {max: 16,message:"长度不能超过16"}
], ],
"bddgrp.rec.rcvdat":[ "bddgrp.rec.rcvdat":[
{type: "date", required: false, message: "输入正确的日期"} {type: "date", required: true, message: "输入正确的日期"}
], ],
"bddgrp.rec.predat":[ "bddgrp.rec.predat":[
{type: "date", required: false, message: "输入正确的日期"} {type: "date", required: true, message: "输入正确的日期"}
], ],
"bddgrp.prb.pts.bankno":[ "bddgrp.prb.pts.bankno":[
{type: "string", required: false, message: "必输项"}, {type: "string", required: true, message: "必输项"},
{max: 20,message:"长度不能超过20"} {max: 20,message:"长度不能超过20"}
], ],
"bddgrp.rec.orddat":[ "bddgrp.rec.orddat":[
{type: "date", required: false, message: "输入正确的日期"} {type: "date", required: true, message: "输入正确的日期"}
], ],
"bddgrp.rec.shpdat":[ "bddgrp.rec.shpdat":[
...@@ -160,7 +164,7 @@ export default { ...@@ -160,7 +164,7 @@ export default {
{max: 35,message:"长度不能超过35"} {max: 35,message:"长度不能超过35"}
], ],
"bddgrp.skh.pts.jigomc":[ "bddgrp.skh.pts.jigomc":[
{type: "string", required: true, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 35,message:"长度不能超过35"} {max: 35,message:"长度不能超过35"}
], ],
"bddgrp.rec.docsta":[ "bddgrp.rec.docsta":[
...@@ -183,9 +187,9 @@ export default { ...@@ -183,9 +187,9 @@ export default {
{max: 18,message:"整数位不能超过14位"}, {max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" } {pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
], ],
"bddgrp.rec.rcvdat":[ // "bddgrp.rec.rcvdat":[
{type: "date", required: false, message: "输入正确的日期"} // {type: "date", required: false, message: "输入正确的日期"}
], // ],
"bddgrp.rec.stadat":[ "bddgrp.rec.stadat":[
{type: "date", required: false, message: "输入正确的日期"} {type: "date", required: false, message: "输入正确的日期"}
], ],
......
...@@ -105,7 +105,7 @@ export default { ...@@ -105,7 +105,7 @@ export default {
const selDst = "trncorco.trnstm" //列表对应后台模型中的stream const selDst = "trncorco.trnstm" //列表对应后台模型中的stream
let params = { selDst, selIds }; let params = { selDst, selIds };
this.executeRule("dsp,reldsp",params).then((res) => { this.executeRule("dsp,reldsp",params).then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
sessionStorage.setItem('InftrnpsDetail', JSON.stringify(this.model)); sessionStorage.setItem('InftrnpsDetail', JSON.stringify(this.model));
// this.$router.push({ path: "business/inftrnpsDetail", query: { idx: idx}}); // this.$router.push({ path: "business/inftrnpsDetail", query: { idx: idx}});
...@@ -120,7 +120,7 @@ export default { ...@@ -120,7 +120,7 @@ export default {
const selDst = "trncorco.trnstm" //列表对应后台模型中的stream const selDst = "trncorco.trnstm" //列表对应后台模型中的stream
let params = { selDst, selIds }; let params = { selDst, selIds };
this.executeRule("dsp,reldsp",params).then((res) => { this.executeRule("dsp,reldsp",params).then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
sessionStorage.setItem('InftrnpsDetail', JSON.stringify(this.model)); sessionStorage.setItem('InftrnpsDetail', JSON.stringify(this.model));
// this.$router.push({ path: "business/inftrnpsDetail", query: { idx: idx}}); // this.$router.push({ path: "business/inftrnpsDetail", query: { idx: idx}});
......
...@@ -492,7 +492,7 @@ export default { ...@@ -492,7 +492,7 @@ export default {
...Event, ...Event,
opn1CurEvent() { opn1CurEvent() {
this.executeDefault("didgrp.cbs.opn1.cur").then((res) => { this.executeDefault("didgrp.cbs.opn1.cur").then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
}); });
......
...@@ -745,14 +745,14 @@ export default { ...@@ -745,14 +745,14 @@ export default {
methods: { ...Event, methods: { ...Event,
docprbrolChange(){ docprbrolChange(){
this.executeRule("bddgrp.rec.docprbrol").then((res) => { this.executeRule("bddgrp.rec.docprbrol").then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
}); });
}, },
commonExecuteRule(ruleName){ commonExecuteRule(ruleName){
this.executeRule(ruleName).then((res) => { this.executeRule(ruleName).then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
}); });
......
...@@ -291,7 +291,7 @@ export default { ...@@ -291,7 +291,7 @@ export default {
...Event, ...Event,
nom1CurEvent() { nom1CurEvent() {
this.executeDefault("didgrp.cbs.opn1.cur").then((res) => { this.executeDefault("didgrp.cbs.opn1.cur").then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
}); });
......
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-list-search @form-reset="selpHandleReset" @form-search="selpHandleSearch"> <!-- <c-list-search @form-reset="selpHandleReset" @form-search="selpHandleSearch">
<template v-slot="searchSlot"> <template v-slot="searchSlot"> -->
<el-form <el-form
class="m-table-search-form" class="m-table-search-form"
ref="paramsForm" ref="paramsForm"
...@@ -66,11 +66,25 @@ ...@@ -66,11 +66,25 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
<c-col :span="23" style="text-align: right;height:36.8px" v-if="!searchToggle">
<el-button size="small" @click="selpHandleReset">重置</el-button>
<el-button
type="primary"
icon="el-icon-search"
size="small"
@click="selpHandleSearch"
>查询</el-button
>
<el-button type="text" @click="searchToggle=true">
展开
<i class="el-icon-arrow-down"></i>
</el-button>
</c-col>
</el-row> </el-row>
<el-row v-show="searchSlot.searchToggle"> <el-row v-show="searchToggle">
<c-col :span="23" style="margin-left: 9px;"> <c-col :span="23" style="margin-left: 9px;">
<c-col :span="8"> <c-col :span="8">
<el-form-item label="申报号码" prop="bopquep.rptno" style="width: 100%"> <el-form-item label="申报号码" prop="bopquep.rptno" style="width: 100%">
...@@ -186,11 +200,25 @@ ...@@ -186,11 +200,25 @@
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="8" style="text-align: right;height:36.8px" v-if="searchToggle">
<el-button size="small" @click="selpHandleReset">重置</el-button>
<el-button
type="primary"
icon="el-icon-search"
size="small"
@click="selpHandleSearch"
>查询</el-button
>
<el-button type="text" @click="searchToggle=false">
展开
<i class="el-icon-arrow-up"></i>
</el-button>
</c-col>
</c-col> </c-col>
</el-row> </el-row>
</el-form> </el-form>
</template> <!-- </template>
</c-list-search> </c-list-search> -->
<c-col :span="23" style="margin-left: 9px;"> <c-col :span="23" style="margin-left: 9px;">
<div style="border-bottom: 10px solid rgb(232, 232, 232)"> <div style="border-bottom: 10px solid rgb(232, 232, 232)">
...@@ -377,6 +405,7 @@ export default { ...@@ -377,6 +405,7 @@ export default {
mixins: [CommonProcess], mixins: [CommonProcess],
data() { data() {
return { return {
searchToggle:false,
stmData: { stmData: {
columns: [ columns: [
'4 1 "申报号码" 0 ', '4 1 "申报号码" 0 ',
......
...@@ -13,10 +13,9 @@ ...@@ -13,10 +13,9 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="特殊规定" prop="litameadv"> <el-form-item label="特殊规定" prop="litameadv">
<c-col :span="8">
<c-select <c-select
v-model="model.litameadv" v-model="model.litameadv"
style="width: 150%" style="width: 50%"
placeholder="请选择特殊规定" placeholder="请选择特殊规定"
> >
<el-option <el-option
...@@ -27,7 +26,6 @@ ...@@ -27,7 +26,6 @@
> >
</el-option> </el-option>
</c-select> </c-select>
</c-col>
</el-form-item> </el-form-item>
</c-col> </c-col>
......
...@@ -160,7 +160,7 @@ export default { ...@@ -160,7 +160,7 @@ export default {
recTenmaxdayEvent(){ recTenmaxdayEvent(){
this.executeDefault("didgrp.rec.tenmaxday").then( this.executeDefault("didgrp.rec.tenmaxday").then(
(res) => { (res) => {
if (res.respCode = SUCCESS){ if (res.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
} }
......
...@@ -157,13 +157,13 @@ export default { ...@@ -157,13 +157,13 @@ export default {
methods:{...Event, methods:{...Event,
async onDefdetButtxmsel(){ async onDefdetButtxmsel(){
let rtnmsg = await this.executeRule("txmmod.buttxmsel"); //BUTTXMSEL let rtnmsg = await this.executeRule("txmmod.buttxmsel"); //BUTTXMSEL
if(rtnmsg.respCode = SUCCESS){ if(rtnmsg.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, rtnmsg.data); Utils.copyValueFromVO(this.model, rtnmsg.data);
} }
}, },
async onPreperButtxmsel(){ async onPreperButtxmsel(){
let rtnmsg = await this.executeRule("txmmod.buttxmsel"); //BUTTXMSEL let rtnmsg = await this.executeRule("txmmod.buttxmsel"); //BUTTXMSEL
if(rtnmsg.respCode = SUCCESS){ if(rtnmsg.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, rtnmsg.data); Utils.copyValueFromVO(this.model, rtnmsg.data);
} }
}, },
...@@ -189,7 +189,7 @@ export default { ...@@ -189,7 +189,7 @@ export default {
recTenmaxdayEvent(){ recTenmaxdayEvent(){
this.executeDefault("didgrp.rec.tenmaxday").then( this.executeDefault("didgrp.rec.tenmaxday").then(
(res) => { (res) => {
if (res.respCode = SUCCESS){ if (res.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
} }
......
...@@ -451,7 +451,7 @@ export default { ...@@ -451,7 +451,7 @@ export default {
...Event, ...Event,
async chooseBank(){ async chooseBank(){
let rtnmsg = await this.executeRule("didgrp.rec.avbwth"); //DIDGRP\REC\AVBWTH let rtnmsg = await this.executeRule("didgrp.rec.avbwth"); //DIDGRP\REC\AVBWTH
if(rtnmsg.respCode = SUCCESS){ if(rtnmsg.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, rtnmsg.data); Utils.copyValueFromVO(this.model, rtnmsg.data);
} }
}, },
......
...@@ -740,7 +740,7 @@ export default { ...@@ -740,7 +740,7 @@ export default {
nom1CurEvent(){ nom1CurEvent(){
this.executeDefault("didgrp.cbs.nom1.cur").then( this.executeDefault("didgrp.cbs.nom1.cur").then(
(res) => { (res) => {
if (res.respCode = SUCCESS){ if (res.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
} }
......
...@@ -826,7 +826,7 @@ export default { ...@@ -826,7 +826,7 @@ export default {
}, },
nom1CurEvent() { nom1CurEvent() {
this.executeDefault("didgrp.cbs.nom1.cur").then((res) => { this.executeDefault("didgrp.cbs.nom1.cur").then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
}); });
......
...@@ -291,7 +291,7 @@ ...@@ -291,7 +291,7 @@
</c-col> </c-col>
</c-col> </c-col>
<c-col :span="24" style="height: 20px"> <c-col :span="23" style="height: 20px;margin-left:20px">
<el-divider></el-divider> <el-divider></el-divider>
</c-col> </c-col>
...@@ -416,7 +416,7 @@ ...@@ -416,7 +416,7 @@
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="到单日期"> <el-form-item label="到单日期" prop="bddgrp.rec.rcvdat">
<c-date-picker <c-date-picker
type="date" type="date"
v-model="model.bddgrp.rec.rcvdat" v-model="model.bddgrp.rec.rcvdat"
...@@ -428,7 +428,7 @@ ...@@ -428,7 +428,7 @@
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="交单日期"> <el-form-item label="交单日期" prop="bddgrp.rec.predat">
<c-date-picker <c-date-picker
type="date" type="date"
v-model="model.bddgrp.rec.predat" v-model="model.bddgrp.rec.predat"
...@@ -440,7 +440,7 @@ ...@@ -440,7 +440,7 @@
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="通知日期"> <el-form-item label="通知日期" prop="bddgrp.rec.orddat">
<c-date-picker <c-date-picker
type="date" type="date"
v-model="model.bddgrp.rec.orddat" v-model="model.bddgrp.rec.orddat"
...@@ -560,7 +560,7 @@ ...@@ -560,7 +560,7 @@
<!-- =================右边====================== --> <!-- =================右边====================== -->
<c-col :span="11" :offset="1"> <c-col :span="11" :offset="1">
<c-col :span="24"> <c-col :span="24">
<el-form-item label="交单行"> <el-form-item label="交单行" prop="bddgrp.rec.docprbrol">
<c-select <c-select
v-model="model.bddgrp.rec.docprbrol" v-model="model.bddgrp.rec.docprbrol"
:code="getValues('bddgrp.rec.docprbrol')" :code="getValues('bddgrp.rec.docprbrol')"
...@@ -705,21 +705,21 @@ export default { ...@@ -705,21 +705,21 @@ export default {
...Event, ...Event,
didCurEvent() { didCurEvent() {
this.executeDefault("didgrp.cbs.nom1.cur").then((res) => { this.executeDefault("didgrp.cbs.nom1.cur").then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
}); });
}, },
bddCurEvent() { bddCurEvent() {
this.executeDefault("bddgrp.cbs.max.cur").then((res) => { this.executeDefault("bddgrp.cbs.max.cur").then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
}); });
}, },
docprbrolChange(){ docprbrolChange(){
this.executeRule("bddgrp.rec.docprbrol").then((res) => { this.executeRule("bddgrp.rec.docprbrol").then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
debugger; debugger;
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
...@@ -727,7 +727,7 @@ export default { ...@@ -727,7 +727,7 @@ export default {
}, },
ptsRefEvent(){ ptsRefEvent(){
this.executeRule("trnmod.ptsmod.wrkptspta.pts.ref").then((res) => { this.executeRule("trnmod.ptsmod.wrkptspta.pts.ref").then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
debugger; debugger;
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
...@@ -735,7 +735,7 @@ export default { ...@@ -735,7 +735,7 @@ export default {
}, },
ptsBanknoEvent(){ ptsBanknoEvent(){
this.executeRule("bddgrp.skh.pts.bankno").then((res) => { this.executeRule("bddgrp.skh.pts.bankno").then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
debugger; debugger;
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
......
...@@ -170,7 +170,7 @@ export default { ...@@ -170,7 +170,7 @@ export default {
recTenmaxdayEvent(){ recTenmaxdayEvent(){
this.executeDefault("didgrp.rec.tenmaxday").then( this.executeDefault("didgrp.rec.tenmaxday").then(
(res) => { (res) => {
if (res.respCode = SUCCESS){ if (res.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
} }
......
...@@ -799,7 +799,7 @@ export default { ...@@ -799,7 +799,7 @@ export default {
}, },
nom1CurEvent() { nom1CurEvent() {
this.executeDefault("didgrp.cbs.nom1.cur").then((res) => { this.executeDefault("didgrp.cbs.nom1.cur").then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
}); });
......
...@@ -183,7 +183,7 @@ export default { ...@@ -183,7 +183,7 @@ export default {
recTenmaxdayEvent(){ recTenmaxdayEvent(){
this.executeDefault("didgrp.rec.tenmaxday").then( this.executeDefault("didgrp.rec.tenmaxday").then(
(res) => { (res) => {
if (res.respCode = SUCCESS){ if (res.respCode == SUCCESS){
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
} }
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
type="primary" type="primary"
@click="onSeainf" @click="onSeainf"
> >
<span style="font-size:15px;font-family:'宋体';font-weight:bold">i</span> <span style="font-family:'宋体';font-weight:bold">i</span>
</c-button> </c-button>
<c-button <c-button
style="margin:0 0" style="margin:0 0"
...@@ -779,7 +779,7 @@ export default { ...@@ -779,7 +779,7 @@ export default {
}, },
nom1CurEvent() { nom1CurEvent() {
this.executeDefault("didgrp.cbs.nom1.cur").then((res) => { this.executeDefault("didgrp.cbs.nom1.cur").then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
}); });
......
...@@ -191,7 +191,13 @@ export default { ...@@ -191,7 +191,13 @@ export default {
defaultRules: Default, defaultRules: Default,
pattern: Pattern, pattern: Pattern,
rules: null, rules: null,
codes: { ...CodeTable }, codes: {
...CodeTable,
avbby0: [
{ label: "即期付款", value: "P" },
{ label: "远期付款", value: "D" },
],
},
}; };
}, },
methods: {}, methods: {},
......
...@@ -33,7 +33,7 @@ export default { ...@@ -33,7 +33,7 @@ export default {
this.model.cfgfil.subtrn1= code this.model.cfgfil.subtrn1= code
let rtnmsg = await this.executeRule("cfgfil.hotsub3") let rtnmsg = await this.executeRule("cfgfil.hotsub3")
console.log("cfgfil.code:" + this.model.cfgfil.subtrn1); console.log("cfgfil.code:" + this.model.cfgfil.subtrn1);
if(rtnmsg.respCode = SUCCESS){ if(rtnmsg.respCode == SUCCESS){
this.navcode = [] this.navcode = []
this.$emit("onChoose",code.toLowerCase()); this.$emit("onChoose",code.toLowerCase());
}else{ }else{
...@@ -76,10 +76,10 @@ export default { ...@@ -76,10 +76,10 @@ export default {
// let rtnmsg = await this.executeRule("didgrp.rec.ownref");//didgrp_rec_ownref // let rtnmsg = await this.executeRule("didgrp.rec.ownref");//didgrp_rec_ownref
let rtnmsg0 = await this.executeRule("bddgrp.rec.ownref");//cfgfil.hotreg3 let rtnmsg0 = await this.executeRule("bddgrp.rec.ownref");//cfgfil.hotreg3
if(rtnmsg0.respCode = SUCCESS){ if(rtnmsg0.respCode == SUCCESS){
this.updateModel(rtnmsg0.data) this.updateModel(rtnmsg0.data)
let rtnmsg = await this.executeRule("cfgfil.hotreg3");//cfgfil.hotreg3 let rtnmsg = await this.executeRule("cfgfil.hotreg3");//cfgfil.hotreg3
if(rtnmsg.respCode = SUCCESS){ if(rtnmsg.respCode == SUCCESS){
//重置数组 //重置数组
this.navcode = [] this.navcode = []
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
...@@ -265,10 +265,9 @@ ...@@ -265,10 +265,9 @@
<c-button <c-button
style="margin-left: 0" style="margin-left: 0"
size="small" size="small"
type="primary"
@click="display(scope.$index, scope.row)" @click="display(scope.$index, scope.row)"
> >
查看详情 详情
</c-button> </c-button>
</template> </template>
</el-table-column> </el-table-column>
...@@ -396,7 +395,7 @@ export default { ...@@ -396,7 +395,7 @@ export default {
this.dialogTableVisible = true; this.dialogTableVisible = true;
let rtnmsg = await this.executeDefault("infcon.chksubcon"); let rtnmsg = await this.executeDefault("infcon.chksubcon");
if ((rtnmsg.respCode = SUCCESS)) { if ((rtnmsg.respCode == SUCCESS)) {
this.trnData.data = rtnmsg.data.infcon_trnstm.rows; this.trnData.data = rtnmsg.data.infcon_trnstm.rows;
} }
}, },
......
...@@ -33,7 +33,7 @@ export default { ...@@ -33,7 +33,7 @@ export default {
this.model.cfgfil.subtrn1= code this.model.cfgfil.subtrn1= code
let rtnmsg = await this.executeRule("cfgfil.hotsub1") let rtnmsg = await this.executeRule("cfgfil.hotsub1")
console.log("cfgfil.code:" + this.model.cfgfil.subtrn1); console.log("cfgfil.code:" + this.model.cfgfil.subtrn1);
if(rtnmsg.respCode = SUCCESS){ if(rtnmsg.respCode == SUCCESS){
this.navcode = [] this.navcode = []
this.$emit("onChoose",code.toLowerCase()); this.$emit("onChoose",code.toLowerCase());
}else{ }else{
...@@ -74,7 +74,7 @@ export default { ...@@ -74,7 +74,7 @@ export default {
console.log("ownref:" + this.ownref ); console.log("ownref:" + this.ownref );
let rtnmsg = await this.executeRule("didgrp.rec.ownref");//didgrp_rec_ownref let rtnmsg = await this.executeRule("didgrp.rec.ownref");//didgrp_rec_ownref
if(rtnmsg.respCode = SUCCESS){ if(rtnmsg.respCode == SUCCESS){
//重置数组 //重置数组
this.navcode = [] this.navcode = []
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
...@@ -144,15 +144,15 @@ ...@@ -144,15 +144,15 @@
<c-input <c-input
v-model="model.didgrp.rec.nomtop" v-model="model.didgrp.rec.nomtop"
maxlength="9" maxlength="9"
style="width: 40%" style="width: 48%"
placeholder="请输入Amount Tolerance - Positive" placeholder="请输入Amount Tolerance - Positive"
disabled disabled
></c-input> ></c-input>
<label style="display:inline-block;width:10%;text-align:center;">-</label> <label style="display:inline-block;width:calc(3% - 4px);text-align:center;">-</label>
<c-input <c-input
v-model="model.didgrp.rec.nomton" v-model="model.didgrp.rec.nomton"
maxlength="9" maxlength="9"
style="width: 40%" style="width: 48%"
placeholder="请输入Amount Tolerance - Negative" placeholder="请输入Amount Tolerance - Negative"
disabled disabled
></c-input> ></c-input>
...@@ -820,7 +820,7 @@ export default { ...@@ -820,7 +820,7 @@ export default {
}, },
nom1CurEvent() { nom1CurEvent() {
this.executeDefault("didgrp.cbs.nom1.cur").then((res) => { this.executeDefault("didgrp.cbs.nom1.cur").then((res) => {
if ((res.respCode = SUCCESS)) { if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data); Utils.copyValueFromVO(this.model, res.data);
} }
}); });
......
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
size="small" size="small"
type="primary" type="primary"
icon="el-icon-search" icon="el-icon-search"
disabled
@click="onSeainf(`${argadr.grp}.${argadr.rol}.pts.extkey`)" @click="onSeainf(`${argadr.grp}.${argadr.rol}.pts.extkey`)"
> >
</c-button> </c-button>
...@@ -50,6 +51,7 @@ ...@@ -50,6 +51,7 @@
class="detailsButton" class="detailsButton"
size="small" size="small"
type="primary" type="primary"
disabled
@click="onAplpDet" @click="onAplpDet"
> >
{{ $t('buttons.details') }} {{ $t('buttons.details') }}
......
...@@ -33,7 +33,7 @@ export default { ...@@ -33,7 +33,7 @@ export default {
this.model.cfgfil.subtrn1= code this.model.cfgfil.subtrn1= code
let rtnmsg = await this.executeRule("cfgfil.hotsub1") let rtnmsg = await this.executeRule("cfgfil.hotsub1")
console.log("cfgfil.code:" + this.model.cfgfil.subtrn1); console.log("cfgfil.code:" + this.model.cfgfil.subtrn1);
if(rtnmsg.respCode = SUCCESS){ if(rtnmsg.respCode == SUCCESS){
this.$emit("onChoose",code.toLowerCase()); this.$emit("onChoose",code.toLowerCase());
}else{ }else{
...@@ -70,7 +70,7 @@ export default { ...@@ -70,7 +70,7 @@ export default {
this.model.lidgrp.rec.ownref = this.ownref this.model.lidgrp.rec.ownref = this.ownref
console.log("ownref:" + this.ownref ); console.log("ownref:" + this.ownref );
let rtnmsg = await this.executeRule("lidgrp.rec.ownref") let rtnmsg = await this.executeRule("lidgrp.rec.ownref")
if(rtnmsg.respCode = SUCCESS){ if(rtnmsg.respCode == SUCCESS){
//重置数组 //重置数组
this.navcode.length = 0 this.navcode.length = 0
this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows
......
...@@ -33,7 +33,7 @@ export default { ...@@ -33,7 +33,7 @@ export default {
this.model.cfgfil.subtrn1= code this.model.cfgfil.subtrn1= code
let rtnmsg = await this.executeRule("cfgfil.hotsub1") let rtnmsg = await this.executeRule("cfgfil.hotsub1")
console.log("cfgfil.code:" + this.model.cfgfil.subtrn1); console.log("cfgfil.code:" + this.model.cfgfil.subtrn1);
if(rtnmsg.respCode = SUCCESS){ if(rtnmsg.respCode == SUCCESS){
this.$emit("onChoose",code.toLowerCase()); this.$emit("onChoose",code.toLowerCase());
}else{ }else{
...@@ -70,7 +70,7 @@ export default { ...@@ -70,7 +70,7 @@ export default {
this.model.lidgrp.rec.ownref = this.ownref this.model.lidgrp.rec.ownref = this.ownref
console.log("ownref:" + this.ownref ); console.log("ownref:" + this.ownref );
let rtnmsg = await this.executeRule("lidgrp.rec.ownref") let rtnmsg = await this.executeRule("lidgrp.rec.ownref")
if(rtnmsg.respCode = SUCCESS){ if(rtnmsg.respCode == SUCCESS){
//重置数组 //重置数组
this.navcode.length = 0 this.navcode.length = 0
this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows
......
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
this.model.cfgfil.subtrn1= code this.model.cfgfil.subtrn1= code
let rtnmsg = await this.executeRule("cfgfil.hotsub1") let rtnmsg = await this.executeRule("cfgfil.hotsub1")
console.log("cfgfil.code:" + this.model.cfgfil.subtrn1); console.log("cfgfil.code:" + this.model.cfgfil.subtrn1);
if(rtnmsg.respCode = SUCCESS){ if(rtnmsg.respCode == SUCCESS){
this.$emit("onChoose",code.toLowerCase()); this.$emit("onChoose",code.toLowerCase());
}else{ }else{
...@@ -70,7 +70,7 @@ export default { ...@@ -70,7 +70,7 @@ export default {
//请求按钮数据 //请求按钮数据
this.model.trdgrp.rec.ownref = this.ownref this.model.trdgrp.rec.ownref = this.ownref
let rtnmsg = await this.executeRule("trdgrp.rec.ownref") let rtnmsg = await this.executeRule("trdgrp.rec.ownref")
if(rtnmsg.respCode = SUCCESS){ if(rtnmsg.respCode == SUCCESS){
//重置数组 //重置数组
this.navcode.length = 0 this.navcode.length = 0
this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows this.model.cfgfil.btnstm = rtnmsg.data.cfgfil_btnstm.rows
......
...@@ -405,7 +405,7 @@ export default { ...@@ -405,7 +405,7 @@ export default {
this.hotreg = "1"; this.hotreg = "1";
} }
let rtnmsg = await this.executeRule(`cfgfil.hotreg${this.hotreg}`); let rtnmsg = await this.executeRule(`cfgfil.hotreg${this.hotreg}`);
if ((rtnmsg.respCode = SUCCESS)) { if ((rtnmsg.respCode == SUCCESS)) {
this.updateModel(rtnmsg.data); this.updateModel(rtnmsg.data);
} else { } else {
this.$notify.error({ title: "错误", message: "服务请求失败!" }); this.$notify.error({ title: "错误", message: "服务请求失败!" });
......
...@@ -41,7 +41,7 @@ export default { ...@@ -41,7 +41,7 @@ export default {
async onNarBtnClick(href, hotsubx) { async onNarBtnClick(href, hotsubx) {
let rtnmsg = await this.executeRule(`cfgfil.hotsub${hotsubx}`); let rtnmsg = await this.executeRule(`cfgfil.hotsub${hotsubx}`);
console.log("cfgfil.code:" + this.model.cfgfil[`subtrn${hotsubx}`]); console.log("cfgfil.code:" + this.model.cfgfil[`subtrn${hotsubx}`]);
if ((rtnmsg.respCode = SUCCESS)) { if ((rtnmsg.respCode == SUCCESS)) {
this.$router.history.push(href); this.$router.history.push(href);
} else { } else {
this.$notify.error({ title: "错误", message: "服务请求失败!" }); this.$notify.error({ title: "错误", message: "服务请求失败!" });
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
> >
<c-input <c-input
v-model="model.liaall.limmod.limpts.wrk.pts.extkey" v-model="model.liaall.limmod.limpts.wrk.pts.extkey"
:disabled="true" disabled
maxlength="16" maxlength="16"
placeholder="请输入External Key of Address" placeholder="请输入External Key of Address"
style="width: 95%" style="width: 95%"
......
...@@ -109,3 +109,12 @@ export default { ...@@ -109,3 +109,12 @@ export default {
padding: 3px 15px; padding: 3px 15px;
} }
</style> </style>
<style>
.m-table-search-form {
position: flex;
flex-direction: row;
}
.m-table-search-form .el-form-item__content {
width: calc(100% - 110px);
}
</style>
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