Commit 7450b666 by weiguanying

Merge remote-tracking branch 'origin/develop' into develop

# Conflicts:
#	src/page/Frontend/Dblkpm/model/index.js
#	src/page/Frontend/Dblkpm/views/Mainp.vue
#	src/page/Frontend/Dblkpm/views/index.vue
parents 00506f63 5317b66a
...@@ -44,6 +44,7 @@ if (process.env.NODE_ENV === 'production') {//生产模式 ...@@ -44,6 +44,7 @@ if (process.env.NODE_ENV === 'production') {//生产模式
"hostDerivative": "15.52.176.251:22002", "hostDerivative": "15.52.176.251:22002",
"hostPublic": "15.52.176.251:8081", "hostPublic": "15.52.176.251:8081",
"hostReport": "127.0.0.1:8090", "hostReport": "127.0.0.1:8090",
"hostGjzf": "127.0.0.1:8096",
"basePath": "/webapi", "basePath": "/webapi",
"schemes": "http", "schemes": "http",
"message": { "message": {
......
...@@ -268,6 +268,9 @@ const Rmbmod2135 = () => import("./Rmb/2135/Tcpame/views"); ...@@ -268,6 +268,9 @@ const Rmbmod2135 = () => import("./Rmb/2135/Tcpame/views");
const Rmbinf2135 = () => import("./Rmb/2135/Tcpinf/views"); const Rmbinf2135 = () => import("./Rmb/2135/Tcpinf/views");
const Rmbdel2135 = () => import("./Rmb/2135/Tcpdel/views"); const Rmbdel2135 = () => import("./Rmb/2135/Tcpdel/views");
// const Rcvsel = () => import('./Rcvsel/views');
// const Sndsel = () => import('./Sndsel/views');
// const Dbdinf = () => import("./Bop/Dbdinf/views") // const Dbdinf = () => import("./Bop/Dbdinf/views")
// const Dbdadd = () => import("./Bop/Dbdadd/views") // const Dbdadd = () => import("./Bop/Dbdadd/views")
// const Dbddel = () => import("./Bop/Dbddel/views") // const Dbddel = () => import("./Bop/Dbddel/views")
...@@ -641,5 +644,7 @@ const BusRouter = [ ...@@ -641,5 +644,7 @@ const BusRouter = [
{ path: 'inftrnpsDetail', component: () => import('./Quesel/views/InftrnpsDetail.vue'), name: 'inftrnpsDetail', meta: { keepAlive: true, title: '待复核详情' } }, { path: 'inftrnpsDetail', component: () => import('./Quesel/views/InftrnpsDetail.vue'), name: 'inftrnpsDetail', meta: { keepAlive: true, title: '待复核详情' } },
{ path: 'trnselDetail', component: () => import('./Quesel/views/InftrnpsDetail.vue'), name: 'trnselDetail', meta: { keepAlive: true, title: '未完成列表详情' } }, { path: 'trnselDetail', component: () => import('./Quesel/views/InftrnpsDetail.vue'), name: 'trnselDetail', meta: { keepAlive: true, title: '未完成列表详情' } },
{ path: 'trnrelDetail', component: () => import('./Quesel/views/InftrnpsDetail.vue'), name: 'trnrelDetail', meta: { keepAlive: true, title: '已完成列表详情' } }, { path: 'trnrelDetail', component: () => import('./Quesel/views/InftrnpsDetail.vue'), name: 'trnrelDetail', meta: { keepAlive: true, title: '已完成列表详情' } },
]; ];
export default BusRouter export default BusRouter
\ No newline at end of file
import Api from "~/service/Api";
import moment from "moment";
export default {
methods: {
async handleSearch() {
let rcvdatsta = this.model.rcvp.rcvdatsta;
if (!rcvdatsta || rcvdatsta == "") {
this.$notify.error({
title: this.$t("financing.错误"),
message: this.$t("financing.查询开始日期必输!"),
});
return;
}
let rcvdatend = this.model.rcvp.rcvdatend;
if (!rcvdatend || rcvdatend == "") {
this.$notify.error({
title: this.$t("financing.错误"),
message: this.$t("financing.查询结束日期必输!"),
});
return;
}
this.load = true;
let rtnmsg = await Api.post("/webapi/gjzf/msgsel/query", {
...this.model.rcvp,
dir: "<",
pageNum: this.pagination.pageNum,
pageSize: this.pagination.pageSize,
rcvdatsta: moment(rcvdatsta).format("YYYY-MM-DD"),
rcvdatend: moment(rcvdatend).format("YYYY-MM-DD"),
});
if (rtnmsg.respCode == SUCCESS) {
this.load = false;
this.stmData.data = [];
const {list} = rtnmsg.data;
const {codes:{sta1}} = this;
list.forEach(v=>{
for(let i in sta1){
if(sta1[i].value == v.sta){
v.sta = sta1[i].label;
}
}
})
this.stmData.data = list;
this.pagination = {
pageNum: rtnmsg.data.pageNum || 1,
pageSize: rtnmsg.data.pageSize || 10,
total: parseInt(rtnmsg.data.total),
};
} else {
this.$notify.error({
title: this.$t("financing.错误"),
message: this.$t("financing.服务请求失败!"),
});
}
this.load = false;
},
async handleReset() {
this.model.rcvp.msgtyp = "";
this.model.rcvp.rcvdatsta = new Date();
this.model.rcvp.rcvdatend = new Date();
this.model.rcvp.subtyp = "";
this.model.rcvp.sndbak = "";
this.model.rcvp.revbak = "";
this.model.rcvp.actbic = "";
this.model.rcvp.othref = "";
this.model.rcvp.ownref = "";
this.model.rcvp.cur = "";
this.model.rcvp.act = "";
this.model.rcvp.amtmin = "";
this.model.rcvp.amtmax = "";
this.model.rcvp.chnipt = "";
this.model.rcvp.rspsta = "";
this.model.rcvp.dtlchg = "";
this.model.rcvp.sta = "";
this.model.rcvp.gpi="";
},
// pageSize改变
handleSizeChange(val) {
this.pagination.pageNum = 1;
this.pagination.pageSize = val;
this.handleSearch();
},
// 页码改变
handleCurrentChange(val) {
this.pagination.pageNum = val;
this.handleSearch();
},
handleSelectionChange(val){
this.multipleSelection = val;
}
},
};
import Utils from "~/utils" import Utils from "~/utils"
/** /**
* Fxtsqo Check规则 * Rcvsel Check规则
*/ */
let checkObj = { let checkObj = {
"fxdgrp.apl.pts.adrblk" :null, "rcvp.sndbak" :null,
"fxdgrp.cbs.max.cur" :null, "rcvp.actbic" :null,
"fxtp.cnychk" :null, "rcvp.revbak" :null,
"fxdgrp.rec.setdatfrm" :null, "rcvp.msgtyp" :null,
"fxdgrp.rec.setdatto" :null, "rcvp.othref" :null,
"fxdgrp.apl.pts.extkey" :null, "rcvp.rcvdatend" :null,
"mtabut.clsflg" :null, "rcvp.ownref" :null,
"rcvp.amtmax" :null,
"rcvp.amtmin" :null,
"rcvp.rcvdatsta" :null,
} }
for (const key in checkObj) { for (const key in checkObj) {
......
/**
* Rcvsel Default规则
*/
import Api from "~/service/Api";
import Utils from "~/utils/index"
export default {
}
//你可以添加自动default处理
export default {
"rcvp.rcvdatsta":[
{type: "date", required: false, message: "输入正确的日期"}
],
"rcvp.rcvdatend":[
{type: "date", required: false, message: "输入正确的日期"}
],
"rcvp.sndbak":[
{type: "string", required: false, message: "必输项"},
{max: 0,message:"长度不能超过0"}
],
"rcvp.revbak":[
{type: "string", required: false, message: "必输项"},
{max: 0,message:"长度不能超过0"}
],
"rcvp.actbic":[
{type: "string", required: false, message: "必输项"},
{max: 0,message:"长度不能超过0"}
],
"rcvp.othref":[
{type: "string", required: false, message: "必输项"},
{max: 0,message:"长度不能超过0"}
],
"rcvp.ownref":[
{type: "string", required: false, message: "必输项"},
{max: 0,message:"长度不能超过0"}
],
"rcvp.act":[
{type: "string", required: false, message: "必输项"},
{max: 0,message:"长度不能超过0"}
],
"rcvp.amtmin":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"长度不能超过18"}
],
"rcvp.amtmax":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"长度不能超过18"}
],
}
\ No newline at end of file
export default class Rcvsel{
constructor () {
this.data = {
rcvp:{
rcvdatsta:"", // : 起始日期 .rcvp.rcvdatsta
rcvdatend:"", // : 终止日期 .rcvp.rcvdatend
msgtyp:"", // : 报文标准 .rcvp.msgtyp
subtyp:"", // : 报文类型 .rcvp.subtyp
sndbak:"", // : 发报行BIC .rcvp.sndbak
revbak:"", // : 收报行BIC .rcvp.revbak
actbic:"", // : 账户行BIC .rcvp.actbic
othref:"", // : 20域编号 .rcvp.othref
ownref:"", // : 21域编号 .rcvp.ownref
cur:"", // : 币种 .rcvp.cur
act:"", // : 账号 .rcvp.act
amtmin:"", // : 金额下限 .rcvp.amtmin
amtmax:"", // : 金额上限 .rcvp.amtmax
chnipt:"", // 行内系统 .rcvp.chnipt
tblvis:"", // 行内系统标签 .rcvp.tblvis
tblvim:"", // 活动标签 .rcvp.tblvim
blksta:"", // 黑名单状态 .rcvp.blksta
dtlchg:"", // : 费用明细 .rcvp.dtlchg
sta:"", // : 处理状态 .rcvp.sta
gpi:"", // GPI标识 .rcvp.gpi
expexl:"", // 导出 .rcvp.expexl
},
msggrp:{
rcvlst:[], // .msggrp.rcvlst
},
pageId: "" // ctx的key
}
}
}
\ No newline at end of file
<template>
<div class="eContainer-search">
<el-form
:model="model"
:rules="rules"
ref="modelForm"
label-width="120px"
label-position="right"
size="small"
:validate-on-rule-change="false"
>
<c-content>
<m-schpnl :model="model" :codes="codes" ref="schpnl"/>
</c-content>
</el-form>
</div>
</template>
<script>
import CodeTable from "~/config/CodeTable";
import Sndsel from "../model";
import event from "../event"
import Schpnl from "./Schpnl.vue"
export default {
name: "Sndsel",
components:{
"m-schpnl" : Schpnl,
},
provide() {
return {
root: this
}
},
mixins: [event], // 里面包含了Default、Check等的公共处理
data(){
return {
tabVal: "schpnl",
trnName: "sndsel",
model: new Sndsel().data,
rules: null,
codes:{...CodeTable},
};
},
methods:{},
created:async function() {},
};
</script>
<style scoped>
</style>
import Api from "~/service/Api";
import moment from "moment";
export default {
methods: {
async handleSearch() {
let rcvdatsta = this.model.sndp.rcvdatsta;
if (!rcvdatsta || rcvdatsta == "") {
this.$notify.error({
title: this.$t("financing.错误"),
message: this.$t("financing.查询开始日期必输!"),
});
return;
}
let rcvdatend = this.model.sndp.rcvdatend;
if (!rcvdatend || rcvdatend == "") {
this.$notify.error({
title: this.$t("financing.错误"),
message: this.$t("financing.查询结束日期必输!"),
});
return;
}
this.load = true;
let rtnmsg = await Api.post("/webapi/gjzf/msgsel/query", {
...this.model.sndp,
dir: ">",
pageNum: this.pagination.pageNum,
pageSize: this.pagination.pageSize,
rcvdatsta: moment(rcvdatsta).format("YYYY-MM-DD"),
rcvdatend: moment(rcvdatend).format("YYYY-MM-DD"),
});
if (rtnmsg.respCode == SUCCESS) {
this.load = false;
this.stmData.data = [];
const {list} = rtnmsg.data;
const {codes:{sta1}} = this;
list.forEach(v=>{
for(let i in sta1){
if(sta1[i].value == v.sta){
v.sta = sta1[i].label;
}
}
})
this.stmData.data = list;
this.pagination = {
pageNum: rtnmsg.data.pageNum || 1,
pageSize: rtnmsg.data.pageSize || 10,
total: parseInt(rtnmsg.data.total),
};
} else {
this.$notify.error({
title: this.$t("financing.错误"),
message: this.$t("financing.服务请求失败!"),
});
}
this.load = false;
},
async handleReset() {
this.model.sndp.msgtyp = "";
this.model.sndp.rcvdatsta = new Date();
this.model.sndp.rcvdatend = new Date();
this.model.sndp.subtyp = "";
this.model.sndp.sndbak = "";
this.model.sndp.revbak = "";
this.model.sndp.actbic = "";
this.model.sndp.othref = "";
this.model.sndp.ownref = "";
this.model.sndp.cur = "";
this.model.sndp.act = "";
this.model.sndp.amtmin = "";
this.model.sndp.amtmax = "";
this.model.sndp.chnipt = "";
this.model.sndp.rspsta = "";
this.model.sndp.dtlchg = "";
this.model.sndp.sta = "";
},
// pageSize改变
handleSizeChange(val) {
this.pagination.pageNum = 1;
this.pagination.pageSize = val;
this.handleSearch();
},
// 页码改变
handleCurrentChange(val) {
this.pagination.pageNum = val;
this.handleSearch();
},
handleSelectionChange(val){
this.multipleSelection = val;
}
},
};
import Utils from "~/utils" import Utils from "~/utils"
/** /**
* Fxtlop Check规则 * Sndsel Check规则
*/ */
let checkObj = { let checkObj = {
"fxdgrp.apl.pts.adrblk" :null, "sndp.rcvdatend" :null,
"fxdgrp.rec.rat" :null, "sndp.othref" :null,
"fxtp.usr.extkey" :null, "sndp.amtmax" :null,
"fxdgrp.cbs.max.cur" :null, "sndp.msgtyp" :null,
"fxdgrp.rec.opndat" :null, "sndp.ownref" :null,
"fxtp.cnychk" :null, "sndp.revbak" :null,
"fxdgrp.rec.valdat" :null, "sndp.sndbak" :null,
"fxdgrp.apl.pts.extkey" :null, "sndp.actbic" :null,
"sndp.amtmin" :null,
"sndp.rcvdatsta" :null,
} }
for (const key in checkObj) { for (const key in checkObj) {
......
/**
* Sndsel Default规则
*/
import Api from "~/service/Api";
import Utils from "~/utils/index"
export default {
}
//你可以添加自动default处理
export default {
"sndp.rcvdatsta":[
{type: "date", required: false, message: "输入正确的日期"}
],
"sndp.rcvdatend":[
{type: "date", required: false, message: "输入正确的日期"}
],
"sndp.sndbak":[
{type: "string", required: false, message: "必输项"},
{max: 0,message:"长度不能超过0"}
],
"sndp.revbak":[
{type: "string", required: false, message: "必输项"},
{max: 0,message:"长度不能超过0"}
],
"sndp.actbic":[
{type: "string", required: false, message: "必输项"},
{max: 0,message:"长度不能超过0"}
],
"sndp.ownref":[
{type: "string", required: false, message: "必输项"},
{max: 0,message:"长度不能超过0"}
],
"sndp.othref":[
{type: "string", required: false, message: "必输项"},
{max: 0,message:"长度不能超过0"}
],
"sndp.act":[
{type: "string", required: false, message: "必输项"},
{max: 0,message:"长度不能超过0"}
],
"sndp.amtmin":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"长度不能超过18"}
],
"sndp.amtmax":[
{type: "string", required: false, message: "必输项"},
{max: 18,message:"长度不能超过18"}
],
"sndp.usrnam":[
{type: "string", required: false, message: "必输项"},
{max: 0,message:"长度不能超过0"}
],
}
\ No newline at end of file
import Api from "~/service/Api"
export default class Sndsel{
constructor () {
this.data = {
sndp:{
rcvdatsta:"", // : 起始日期
rcvdatend:"", // : 截止日期
msgtyp:"", // : 报文标准
subtyp:"", // : 报文类型
sndbak:"", // : 发报行BIC
revbak:"", // : 收报行BIC
actbic:"", // : 账户行
othref:"", // : 21域编号
ownref:"", // : 20域编
cur:"", // : 币种
act:"", // : 账号
amtmin:"", // : 金额下限
amtmax:"", // : 金额上限
chnipt:"", // 行内系统 .sndp.chnipt
rspsta:"", // 回执状态 .sndp.rspsta
tblrsp:"", // 回执状态标签 .sndp.tblrsp
tblrsm:"", // 回执状态标签 .sndp.tblrsm
usrnam:"", // 操作员 .sndp.usrnam
starsp:"", // 处理状态标签 .sndp.starsp
starsm:"", // 处理状态标签 .sndp.starsm
sta:"", // 处理状态 .sndp.sta
dtlchg:"", // : 费用明细
starsp1:"", // 处理状态标签1 .sndp.starsp1
starsm1:"", // 处理状态标签1 .sndp.starsm1
sta1:"", // 处理状态1 .sndp.sta1
expexl:"", // 导出 .sndp.expexl
expexl2:"", // 3910导出 .sndp.expexl2
},
msggrp:{
rcvlst:[], // .msggrp.rcvlst
},
pageId: "" // ctx的key
}
}
}
\ No newline at end of file
<template>
<div class="eContainer-search">
<el-form
:model="model"
:rules="rules"
ref="modelForm"
label-width="120px"
label-position="right"
size="small"
:validate-on-rule-change="false"
>
<c-content>
<m-schpnl :model="model" :codes="codes" ref="schpnl"/>
</c-content>
</el-form>
</div>
</template>
<script>
import CodeTable from "~/config/CodeTable";
import Sndsel from "../model";
import event from "../event"
import Schpnl from "./Schpnl.vue"
export default {
name: "Sndsel",
components:{
"m-schpnl" : Schpnl,
},
provide() {
return {
root: this
}
},
mixins: [event], // 里面包含了Default、Check等的公共处理
data(){
return {
tabVal: "schpnl",
trnName: "sndsel",
model: new Sndsel().data,
rules: null,
codes:{...CodeTable},
};
},
methods:{},
created:async function() {},
};
</script>
<style scoped>
</style>
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Batchg{ export default class Batchg{
constructor () { constructor () {
......
...@@ -122,7 +122,7 @@ ...@@ -122,7 +122,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.batgrp_dotlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -282,7 +282,7 @@ ...@@ -282,7 +282,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Batchg/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Batchg from "../model/Batchg" import Batchg from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Batchg/Check" import Check from "../model/Check"
import Default from "../model/Batchg/Default" import Default from "../model/Default"
import Pattern from "../model/Batchg/Pattern" import Pattern from "../model/Pattern"
import Batmainp from "./Batmainp" import Batmainp from "./Batmainp"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "batmainp",
trnName: "batchg", trnName: "batchg",
trnType: "", trnType: "",
model: new Batchg().data, model: new Batchg().data,
...@@ -61,7 +61,7 @@ export default { ...@@ -61,7 +61,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入batchg交易"); console.log("进入batchg交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Cpsmsg{ export default class Cpsmsg{
constructor () { constructor () {
......
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.usrmsggrp_usrlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -250,7 +250,7 @@ ...@@ -250,7 +250,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Cpsmsg/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Cpsmsg from "../model/Cpsmsg" import Cpsmsg from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Cpsmsg/Check" import Check from "../model/Check"
import Default from "../model/Cpsmsg/Default" import Default from "../model/Default"
import Pattern from "../model/Cpsmsg/Pattern" import Pattern from "../model/Pattern"
import Mainpnl from "./Mainpnl" import Mainpnl from "./Mainpnl"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "mainpnl",
trnName: "cpsmsg", trnName: "cpsmsg",
trnType: "", trnType: "",
model: new Cpsmsg().data, model: new Cpsmsg().data,
...@@ -62,7 +62,7 @@ export default { ...@@ -62,7 +62,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入cpsmsg交易"); console.log("进入cpsmsg交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Cpssxf{ export default class Cpssxf{
constructor () { constructor () {
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.sxfgrp_sxflst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -95,7 +95,7 @@ ...@@ -95,7 +95,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Cpssxf/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Cpssxf from "../model/Cpssxf" import Cpssxf from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Cpssxf/Check" import Check from "../model/Check"
import Default from "../model/Cpssxf/Default" import Default from "../model/Default"
import Pattern from "../model/Cpssxf/Pattern" import Pattern from "../model/Pattern"
import Mainpl from "./Mainpl" import Mainpl from "./Mainpl"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "mainpl",
trnName: "cpssxf", trnName: "cpssxf",
trnType: "", trnType: "",
model: new Cpssxf().data, model: new Cpssxf().data,
...@@ -62,7 +62,7 @@ export default { ...@@ -62,7 +62,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入cpssxf交易"); console.log("进入cpssxf交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Cpysel{ export default class Cpysel{
constructor () { constructor () {
......
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.cpygrp_cpylst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -148,7 +148,7 @@ ...@@ -148,7 +148,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Cpysel/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Cpysel from "../model/Cpysel" import Cpysel from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Cpysel/Check" import Check from "../model/Check"
import Default from "../model/Cpysel/Default" import Default from "../model/Default"
import Pattern from "../model/Cpysel/Pattern" import Pattern from "../model/Pattern"
import Mainp from "./Mainp" import Mainp from "./Mainp"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "mainp",
trnName: "cpysel", trnName: "cpysel",
trnType: "", trnType: "",
model: new Cpysel().data, model: new Cpysel().data,
...@@ -64,7 +64,7 @@ export default { ...@@ -64,7 +64,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入cpysel交易"); console.log("进入cpysel交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Cpzsel{ export default class Cpzsel{
constructor () { constructor () {
......
...@@ -76,7 +76,7 @@ ...@@ -76,7 +76,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.cpzgrp_cpzlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -159,7 +159,7 @@ ...@@ -159,7 +159,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Cpzsel/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Cpzsel from "../model/Cpzsel" import Cpzsel from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Cpzsel/Check" import Check from "../model/Check"
import Default from "../model/Cpzsel/Default" import Default from "../model/Default"
import Pattern from "../model/Cpzsel/Pattern" import Pattern from "../model/Pattern"
import Mainp from "./Mainp" import Mainp from "./Mainp"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "mainp",
trnName: "cpzsel", trnName: "cpzsel",
trnType: "", trnType: "",
model: new Cpzsel().data, model: new Cpzsel().data,
...@@ -65,7 +65,7 @@ export default { ...@@ -65,7 +65,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入cpzsel交易"); console.log("进入cpzsel交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Ctmsel{ export default class Ctmsel{
constructor () { constructor () {
......
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.cpstimgrp_cpstimlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -133,7 +133,7 @@ ...@@ -133,7 +133,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Ctmsel/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Ctmsel from "../model/Ctmsel" import Ctmsel from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Ctmsel/Check" import Check from "../model/Check"
import Default from "../model/Ctmsel/Default" import Default from "../model/Default"
import Pattern from "../model/Ctmsel/Pattern" import Pattern from "../model/Pattern"
import Mainpl from "./Mainpl" import Mainpl from "./Mainpl"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "mainpl",
trnName: "ctmsel", trnName: "ctmsel",
trnType: "", trnType: "",
model: new Ctmsel().data, model: new Ctmsel().data,
...@@ -65,7 +65,7 @@ export default { ...@@ -65,7 +65,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入ctmsel交易"); console.log("进入ctmsel交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Dblabk{ export default class Dblabk{
constructor () { constructor () {
......
...@@ -100,7 +100,7 @@ ...@@ -100,7 +100,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.abkp_ptyshwlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -243,7 +243,7 @@ ...@@ -243,7 +243,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Dblabk/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Dblabk from "../model/Dblabk" import Dblabk from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Dblabk/Check" import Check from "../model/Check"
import Default from "../model/Dblabk/Default" import Default from "../model/Default"
import Pattern from "../model/Dblabk/Pattern" import Pattern from "../model/Pattern"
import Abkp10 from "./Abkp10" import Abkp10 from "./Abkp10"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "abkp10",
trnName: "dblabk", trnName: "dblabk",
trnType: "", trnType: "",
model: new Dblabk().data, model: new Dblabk().data,
...@@ -66,7 +66,7 @@ export default { ...@@ -66,7 +66,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入dblabk交易"); console.log("进入dblabk交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Dblatt{ export default class Dblatt{
constructor () { constructor () {
......
...@@ -94,7 +94,7 @@ ...@@ -94,7 +94,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.pttgrp_pttlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -229,7 +229,7 @@ ...@@ -229,7 +229,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Dblatt/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Dblatt from "../model/Dblatt" import Dblatt from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Dblatt/Check" import Check from "../model/Check"
import Default from "../model/Dblatt/Default" import Default from "../model/Default"
import Pattern from "../model/Dblatt/Pattern" import Pattern from "../model/Pattern"
import Attlpn from "./Attlpn" import Attlpn from "./Attlpn"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "attlpn",
trnName: "dblatt", trnName: "dblatt",
trnType: "", trnType: "",
model: new Dblatt().data, model: new Dblatt().data,
...@@ -68,7 +68,7 @@ export default { ...@@ -68,7 +68,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入dblatt交易"); console.log("进入dblatt交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Dblfxd{ export default class Dblfxd{
constructor () { constructor () {
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.fxdgrp_fxdlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -106,7 +106,7 @@ ...@@ -106,7 +106,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Dblfxd/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Dblfxd from "../model/Dblfxd" import Dblfxd from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Dblfxd/Check" import Check from "../model/Check"
import Default from "../model/Dblfxd/Default" import Default from "../model/Default"
import Pattern from "../model/Dblfxd/Pattern" import Pattern from "../model/Pattern"
import Selmainp from "./Selmainp" import Selmainp from "./Selmainp"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "selmainp",
trnName: "dblfxd", trnName: "dblfxd",
trnType: "", trnType: "",
model: new Dblfxd().data, model: new Dblfxd().data,
...@@ -69,7 +69,7 @@ export default { ...@@ -69,7 +69,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入dblfxd交易"); console.log("进入dblfxd交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Dblian{ export default class Dblian{
constructor () { constructor () {
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.ianp_lst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Dblian/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Dblian from "../model/Dblian" import Dblian from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Dblian/Check" import Check from "../model/Check"
import Default from "../model/Dblian/Default" import Default from "../model/Default"
import Pattern from "../model/Dblian/Pattern" import Pattern from "../model/Pattern"
import Selp from "./Selp" import Selp from "./Selp"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "selp",
trnName: "dblian", trnName: "dblian",
trnType: "", trnType: "",
model: new Dblian().data, model: new Dblian().data,
...@@ -69,7 +69,7 @@ export default { ...@@ -69,7 +69,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入dblian交易"); console.log("进入dblian交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Dblinn{ export default class Dblinn{
constructor () { constructor () {
......
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.innp_lst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -125,7 +125,7 @@ ...@@ -125,7 +125,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Dblinn/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Dblinn from "../model/Dblinn" import Dblinn from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Dblinn/Check" import Check from "../model/Check"
import Default from "../model/Dblinn/Default" import Default from "../model/Default"
import Pattern from "../model/Dblinn/Pattern" import Pattern from "../model/Pattern"
import Innp0 from "./Innp0" import Innp0 from "./Innp0"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "innp0",
trnName: "dblinn", trnName: "dblinn",
trnType: "", trnType: "",
model: new Dblinn().data, model: new Dblinn().data,
...@@ -69,7 +69,7 @@ export default { ...@@ -69,7 +69,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入dblinn交易"); console.log("进入dblinn交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
// import Api from "~/service/Api" import Api from "~/service/Api"
// import Pts from "../Common/Pts" import Pts from "../Common/Pts"
//
// export default class DblkpmModel{ export default class Dblkpm{
// constructor () { constructor () {
// this.data = { this.data = {
// kpmp:{ kpmp:{
// frmdat:"", // : .kpmp.frmdat frmdat:"", // : .kpmp.frmdat
// todat:"", // : .kpmp.todat todat:"", // : .kpmp.todat
// actbic:"", // : .kpmp.actbic actbic:"", // : .kpmp.actbic
// cur:"", // : .kpmp.cur cur:"", // : .kpmp.cur
// frmamt:"", // : .kpmp.frmamt frmamt:"", // : .kpmp.frmamt
// toamt:"", // : .kpmp.toamt toamt:"", // : .kpmp.toamt
// sta:"", // : .kpmp.sta sta:"", // : .kpmp.sta
// accdat:"", // : .kpmp.accdat accdat:"", // : .kpmp.accdat
// accdatto:"", // : .kpmp.accdatto accdatto:"", // : .kpmp.accdatto
// frmvludat:"", // : .kpmp.frmvludat frmvludat:"", // : .kpmp.frmvludat
// tovludat:"", // : .kpmp.tovludat tovludat:"", // : .kpmp.tovludat
// }, },
// kpmgrp:{ kpmgrp:{
// kpmlst:[], // .kpmgrp.kpmlst kpmlst:[], // .kpmgrp.kpmlst
// }, },
// pageId: "" // ctx的key pageId: "" // ctx的key
// } }
// } }
// } }
\ No newline at end of file \ No newline at end of file
<template>
<div class="eibs-tab">
<c-col :span="24">
<div class="e-table-wrapper">
<el-table
:data="model.kpmgrp.kpmlst"
style="width: 100%"
>
<el-table-column
prop="sta"
label="记账状态"
sortable
width="80">
<template slot-scope="scope">
<span>{{ this.codes.kpstyp.find(item=>item.value==scope.row.sta).label }}</span>
</template>
</el-table-column>
<el-table-column
prop="actbic"
label="账户行BIC码"
sortable
width="100">
</el-table-column>
<el-table-column
prop="cdtact"
label="贷方账号"
sortable
width="120">
</el-table-column>
<el-table-column
prop="cdtcur"
label="贷方币种"
sortable
width="80">
</el-table-column>
<el-table-column
prop="cdtamt"
label="贷方金额"
sortable
width="160">
</el-table-column>
<el-table-column
prop="debact"
label="借方账号"
sortable
width="120">
</el-table-column>
<el-table-column
prop="debcur"
label="借方币种"
sortable
width="80">
</el-table-column>
<el-table-column
prop="debamt"
label="借方金额"
sortable
width="160">
</el-table-column>
<el-table-column
prop="crpdat"
label="创建日期"
sortable
width="90">
</el-table-column>
<el-table-column
prop="accdat"
label="记账日期"
sortable
width="90">
</el-table-column>
<el-table-column
prop="vludat"
label="起息日"
sortable
width="90">
</el-table-column>
<el-table-column
prop="adc"
label="附言"
sortable
width="160">
</el-table-column>
<el-table-column
prop="typ"
label="记账类型"
sortable
width="120">
<template slot-scope="scope">
<span>{{ this.codes.kpatyp.find(item=>item.value==scope.row.typ).label }}</span>
</template>
</el-table-column>
</el-table>
<el-pagination
layout="prev, pager, next"
:total="pager.kpmgrp_kpmlst.total">
</el-pagination>
</div>
</c-col>
<c-col :span="12">
<el-form-item :label="$t('kpmp.LT000022')" prop="kpmp.frmdat">
<c-date-picker type="date" v-model="model.kpmp.frmdat" style="width:100%" :placeholder="$t('other.please_enter')+$t('kpmp.LT000022')"></c-date-picker>
</el-form-item>
</c-col>
<!-- LT000001 : 生成日期从 -->
<!-- LT000022 : : -->
<c-col :span="12">
<el-form-item :label="$t('kpmp.LT000023')" prop="kpmp.todat">
<c-date-picker type="date" v-model="model.kpmp.todat" style="width:100%" :placeholder="$t('other.please_enter')+$t('kpmp.LT000023')"></c-date-picker>
</el-form-item>
</c-col>
<!-- LT000002 : 生成日期至 -->
<!-- LT000023 : : -->
<c-col :span="12">
<c-form-item :label="$t('kpmp.LT000024')" prop="kpmp.actbic">
<c-input v-model="model.kpmp.actbic" maxlength="11" :placeholder="$t('other.please_enter')+$t('kpmp.LT000024')"></c-input>
</c-form-item>
</c-col>
<!-- LT000003 : 账户行BIC -->
<!-- LT000024 : : -->
<c-col :span="12">
<el-form-item :label="$t('kpmp.LT000025')" prop="kpmp.cur">
<c-select v-model="model.kpmp.cur" style="width:100%" :placeholder="$t('other.please_enter')+$t('kpmp.LT000025')">
<el-option
v-for="item in codes.cur"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<!-- LT000004 : 币种 -->
<!-- LT000025 : : -->
<c-col :span="12">
<c-form-item :label="$t('kpmp.LT000026')" prop="kpmp.frmamt">
<c-input v-model="model.kpmp.frmamt" :placeholder="$t('other.please_enter')+$t('kpmp.LT000026')"></c-input>
</c-form-item>
</c-col>
<!-- LT000005 : 金额下限 -->
<!-- LT000026 : : -->
<c-col :span="12">
<c-form-item :label="$t('kpmp.LT000027')" prop="kpmp.toamt">
<c-input v-model="model.kpmp.toamt" :placeholder="$t('other.please_enter')+$t('kpmp.LT000027')"></c-input>
</c-form-item>
</c-col>
<!-- LT000006 : 金额上限 -->
<!-- LT000027 : : -->
<c-col :span="12">
<el-form-item :label="$t('kpmp.LT000028')" prop="kpmp.sta">
<c-select v-model="model.kpmp.sta" style="width:100%" :placeholder="$t('other.please_enter')+$t('kpmp.LT000028')">
<el-option
v-for="item in codes.kpstyp"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</c-select>
</el-form-item>
</c-col>
<!-- LT000007 : 记账状态 -->
<!-- LT000028 : : -->
<c-col :span="12">
<el-form-item :label="$t('kpmp.LT000029')" prop="kpmp.accdat">
<c-date-picker type="date" v-model="model.kpmp.accdat" style="width:100%" :placeholder="$t('other.please_enter')+$t('kpmp.LT000029')"></c-date-picker>
</el-form-item>
</c-col>
<!-- LT000008 : 会计日期从 -->
<!-- LT000029 : : -->
<c-col :span="12">
<el-form-item :label="$t('kpmp.LT000030')" prop="kpmp.accdatto">
<c-date-picker type="date" v-model="model.kpmp.accdatto" style="width:100%" :placeholder="$t('other.please_enter')+$t('kpmp.LT000030')"></c-date-picker>
</el-form-item>
</c-col>
<!-- LT000009 : 会计日期至 -->
<!-- LT000030 : : -->
<c-col :span="12">
<el-form-item :label="$t('kpmp.LT000031')" prop="kpmp.frmvludat">
<c-date-picker type="date" v-model="model.kpmp.frmvludat" style="width:100%" :placeholder="$t('other.please_enter')+$t('kpmp.LT000031')"></c-date-picker>
</el-form-item>
</c-col>
<!-- LT000010 : 起息日从 -->
<!-- LT000031 : : -->
<c-col :span="12">
<el-form-item :label="$t('kpmp.LT000032')" prop="kpmp.tovludat">
<c-date-picker type="date" v-model="model.kpmp.tovludat" style="width:100%" :placeholder="$t('other.please_enter')+$t('kpmp.LT000032')"></c-date-picker>
</el-form-item>
</c-col>
<!-- LT000011 : 起息日至 -->
<!-- LT000032 : : -->
<c-col :span="12">
<c-button size="small" type="primary" icon="el-icon-search" @click="onSel">
{{$t('mtabut.BT000022')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onReset">
{{$t('mtabut.BT000023')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onHtymodHty">
{{$t('htymod.BT000028')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onKpmpLink">
{{$t('kpmp.BT000013')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onKpmpRtn">
{{$t('kpmp.BT000058')}}
</c-button>
</c-col>
</div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "../model/Dblkpm/Event"
export default {
inject: ['root'],
props:["model","codes"],
mixins: [commonProcess],
data(){
return {
}
},
methods:{...Event},
created:function(){
}
}
</script>
<style>
</style>
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Dblkrf{ export default class Dblkrf{
constructor () { constructor () {
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.krfp_krflst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Dblkrf/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Dblkrf from "../model/Dblkrf" import Dblkrf from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Dblkrf/Check" import Check from "../model/Check"
import Default from "../model/Dblkrf/Default" import Default from "../model/Default"
import Pattern from "../model/Dblkrf/Pattern" import Pattern from "../model/Pattern"
import Selp from "./Selp" import Selp from "./Selp"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "selp",
trnName: "dblkrf", trnName: "dblkrf",
trnType: "", trnType: "",
model: new Dblkrf().data, model: new Dblkrf().data,
...@@ -71,7 +71,7 @@ export default { ...@@ -71,7 +71,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入dblkrf交易"); console.log("进入dblkrf交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Dblktl{ export default class Dblktl{
constructor () { constructor () {
......
...@@ -106,7 +106,7 @@ ...@@ -106,7 +106,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.ktlp_ktlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -178,7 +178,7 @@ ...@@ -178,7 +178,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Dblktl/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Dblktl from "../model/Dblktl" import Dblktl from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Dblktl/Check" import Check from "../model/Check"
import Default from "../model/Dblktl/Default" import Default from "../model/Default"
import Pattern from "../model/Dblktl/Pattern" import Pattern from "../model/Pattern"
import Selp from "./Selp" import Selp from "./Selp"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "selp",
trnName: "dblktl", trnName: "dblktl",
trnType: "", trnType: "",
model: new Dblktl().data, model: new Dblktl().data,
...@@ -72,7 +72,7 @@ export default { ...@@ -72,7 +72,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入dblktl交易"); console.log("进入dblktl交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Dblktp{ export default class Dblktp{
constructor () { constructor () {
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.ktpp_ktplst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Dblktp/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Dblktp from "../model/Dblktp" import Dblktp from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Dblktp/Check" import Check from "../model/Check"
import Default from "../model/Dblktp/Default" import Default from "../model/Default"
import Pattern from "../model/Dblktp/Pattern" import Pattern from "../model/Pattern"
import Selp from "./Selp" import Selp from "./Selp"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "selp",
trnName: "dblktp", trnName: "dblktp",
trnType: "", trnType: "",
model: new Dblktp().data, model: new Dblktp().data,
...@@ -72,7 +72,7 @@ export default { ...@@ -72,7 +72,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入dblktp交易"); console.log("进入dblktp交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Dotopn{ export default class Dotopn{
constructor () { constructor () {
......
...@@ -157,7 +157,7 @@ ...@@ -157,7 +157,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Dotopn/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Dotopn from "../model/Dotopn" import Dotopn from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Dotopn/Check" import Check from "../model/Check"
import Default from "../model/Dotopn/Default" import Default from "../model/Default"
import Pattern from "../model/Dotopn/Pattern" import Pattern from "../model/Pattern"
import Dotp01 from "./Dotp01" import Dotp01 from "./Dotp01"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "dotp01",
trnName: "dotopn", trnName: "dotopn",
trnType: "", trnType: "",
model: new Dotopn().data, model: new Dotopn().data,
...@@ -73,7 +73,7 @@ export default { ...@@ -73,7 +73,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入dotopn交易"); console.log("进入dotopn交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
const BusRouter = [ const BusRouter = [
// { path: 'batchg', component: ()=>import("./Batchg/views"), name: 'Batchg', meta: { title: 'Batchg' } }, { path: 'batchg', component: ()=>import("./Batchg/views"), name: 'Batchg', meta: { title: 'Batchg' } ,module:'frontend'},
// { path: 'cpsmsg', component: ()=>import("./Cpsmsg/views"), name: 'Cpsmsg', meta: { title: 'Cpsmsg' } }, { path: 'cpsmsg', component: ()=>import("./Cpsmsg/views"), name: 'Cpsmsg', meta: { title: 'Cpsmsg' } ,module:'frontend'},
// { path: 'cpssxf', component: ()=>import("./Cpssxf/views"), name: 'Cpssxf', meta: { title: 'Cpssxf' } }, { path: 'cpssxf', component: ()=>import("./Cpssxf/views"), name: 'Cpssxf', meta: { title: 'Cpssxf' } ,module:'frontend'},
// { path: 'cpysel', component: ()=>import("./Cpysel/views"), name: 'Cpysel', meta: { title: 'Cpysel' } }, { path: 'cpysel', component: ()=>import("./Cpysel/views"), name: 'Cpysel', meta: { title: 'Cpysel' } ,module:'frontend'},
// { path: 'cpzsel', component: ()=>import("./Cpzsel/views"), name: 'Cpzsel', meta: { title: 'Cpzsel' } }, { path: 'cpzsel', component: ()=>import("./Cpzsel/views"), name: 'Cpzsel', meta: { title: 'Cpzsel' } ,module:'frontend'},
// { path: 'ctmsel', component: ()=>import("./Ctmsel/views"), name: 'Ctmsel', meta: { title: 'Ctmsel' } }, { path: 'ctmsel', component: ()=>import("./Ctmsel/views"), name: 'Ctmsel', meta: { title: 'Ctmsel' } ,module:'frontend'},
// { path: 'dblabk', component: ()=>import("./Dblabk/views"), name: 'Dblabk', meta: { title: 'Dblabk' } }, { path: 'dblabk', component: ()=>import("./Dblabk/views"), name: 'Dblabk', meta: { title: 'Dblabk' } ,module:'frontend'},
// { path: 'dblatt', component: ()=>import("./Dblatt/views"), name: 'Dblatt', meta: { title: 'Dblatt' } }, { path: 'dblatt', component: ()=>import("./Dblatt/views"), name: 'Dblatt', meta: { title: 'Dblatt' } ,module:'frontend'},
// { path: 'dblfxd', component: ()=>import("./Dblfxd/views"), name: 'Dblfxd', meta: { title: 'Dblfxd' } }, { path: 'dblfxd', component: ()=>import("./Dblfxd/views"), name: 'Dblfxd', meta: { title: 'Dblfxd' } ,module:'frontend'},
// { path: 'dblian', component: ()=>import("./Dblian/views"), name: 'Dblian', meta: { title: 'Dblian' } }, { path: 'dblian', component: ()=>import("./Dblian/views"), name: 'Dblian', meta: { title: 'Dblian' } ,module:'frontend'},
// { path: 'dblinn', component: ()=>import("./Dblinn/views"), name: 'Dblinn', meta: { title: 'Dblinn' } }, { path: 'dblinn', component: ()=>import("./Dblinn/views"), name: 'Dblinn', meta: { title: 'Dblinn' } ,module:'frontend'},
// { path: 'dblkpm', component: ()=>import("./Dblkpm/views"), name: 'Dblkpm', meta: { title: 'Dblkpm' } }, { path: 'dblkpm', component: ()=>import("./Dblkpm/views"), name: 'Dblkpm', meta: { title: 'Dblkpm' } ,module:'frontend'},
// { path: 'dblkrf', component: ()=>import("./Dblkrf/views"), name: 'Dblkrf', meta: { title: 'Dblkrf' } }, { path: 'dblkrf', component: ()=>import("./Dblkrf/views"), name: 'Dblkrf', meta: { title: 'Dblkrf' } ,module:'frontend'},
// { path: 'dblktl', component: ()=>import("./Dblktl/views"), name: 'Dblktl', meta: { title: 'Dblktl' } }, { path: 'dblktl', component: ()=>import("./Dblktl/views"), name: 'Dblktl', meta: { title: 'Dblktl' } ,module:'frontend'},
// { path: 'dblktp', component: ()=>import("./Dblktp/views"), name: 'Dblktp', meta: { title: 'Dblktp' } }, { path: 'dblktp', component: ()=>import("./Dblktp/views"), name: 'Dblktp', meta: { title: 'Dblktp' } ,module:'frontend'},
// { path: 'dotopn', component: ()=>import("./Dotopn/views"), name: 'Dotopn', meta: { title: 'Dotopn' } }, { path: 'dotopn', component: ()=>import("./Dotopn/views"), name: 'Dotopn', meta: { title: 'Dotopn' } ,module:'frontend'},
// { path: 'fxdsdb', component: ()=>import("./Fxdsdb/views"), name: 'Fxdsdb', meta: { title: 'Fxdsdb' } }, { path: 'fxdsdb', component: ()=>import("./Fxdsdb/views"), name: 'Fxdsdb', meta: { title: 'Fxdsdb' } ,module:'frontend'},
// { path: 'jfdsel', component: ()=>import("./Jfdsel/views"), name: 'Jfdsel', meta: { title: 'Jfdsel' } }, { path: 'jfdsel', component: ()=>import("./Jfdsel/views"), name: 'Jfdsel', meta: { title: 'Jfdsel' } ,module:'frontend'},
// { path: 'kpachk', component: ()=>import("./Kpachk/views"), name: 'Kpachk', meta: { title: 'Kpachk' } }, { path: 'kpachk', component: ()=>import("./Kpachk/views"), name: 'Kpachk', meta: { title: 'Kpachk' } ,module:'frontend'},
// { path: 'lmnsel', component: ()=>import("./Lmnsel/views"), name: 'Lmnsel', meta: { title: 'Lmnsel' } }, { path: 'lmnsel', component: ()=>import("./Lmnsel/views"), name: 'Lmnsel', meta: { title: 'Lmnsel' } ,module:'frontend'},
// { path: 'manzqs', component: ()=>import("./Manzqs/views"), name: 'Manzqs', meta: { title: 'Manzqs' } }, { path: 'manzqs', component: ()=>import("./Manzqs/views"), name: 'Manzqs', meta: { title: 'Manzqs' } ,module:'frontend'},
// { path: 'msgrsm', component: ()=>import("./Msgrsm/views"), name: 'Msgrsm', meta: { title: 'Msgrsm' } }, { path: 'msgrsm', component: ()=>import("./Msgrsm/views"), name: 'Msgrsm', meta: { title: 'Msgrsm' } ,module:'frontend'},
// { path: 'msgsel', component: ()=>import("./Msgsel/views"), name: 'Msgsel', meta: { title: 'Msgsel' } }, { path: 'msgsel', component: ()=>import("./Msgsel/views"), name: 'Msgsel', meta: { title: 'Msgsel' } ,module:'frontend'},
// { path: 'msgsep', component: ()=>import("./Msgsep/views"), name: 'Msgsep', meta: { title: 'Msgsep' } }, { path: 'msgsep', component: ()=>import("./Msgsep/views"), name: 'Msgsep', meta: { title: 'Msgsep' } ,module:'frontend'},
// { path: 'msgstp', component: ()=>import("./Msgstp/views"), name: 'Msgstp', meta: { title: 'Msgstp' } }, { path: 'msgstp', component: ()=>import("./Msgstp/views"), name: 'Msgstp', meta: { title: 'Msgstp' } ,module:'frontend'},
// { path: 'oftame', component: ()=>import("./Oftame/views"), name: 'Oftame', meta: { title: 'Oftame' } }, { path: 'oftame', component: ()=>import("./Oftame/views"), name: 'Oftame', meta: { title: 'Oftame' } ,module:'frontend'},
// { path: 'ofthng', component: ()=>import("./Ofthng/views"), name: 'Ofthng', meta: { title: 'Ofthng' } }, { path: 'ofthng', component: ()=>import("./Ofthng/views"), name: 'Ofthng', meta: { title: 'Ofthng' } ,module:'frontend'},
// { path: 'oftopn', component: ()=>import("./Oftopn/views"), name: 'Oftopn', meta: { title: 'Oftopn' } }, { path: 'oftopn', component: ()=>import("./Oftopn/views"), name: 'Oftopn', meta: { title: 'Oftopn' } ,module:'frontend'},
// { path: 'oftsel', component: ()=>import("./Oftsel/views"), name: 'Oftsel', meta: { title: 'Oftsel' } }, { path: 'oftsel', component: ()=>import("./Oftsel/views"), name: 'Oftsel', meta: { title: 'Oftsel' } ,module:'frontend'},
// { path: 'pngsel', component: ()=>import("./Pngsel/views"), name: 'Pngsel', meta: { title: 'Pngsel' } }, { path: 'pngsel', component: ()=>import("./Pngsel/views"), name: 'Pngsel', meta: { title: 'Pngsel' } ,module:'frontend'},
// { path: 'qrtmgs', component: ()=>import("./Qrtmgs/views"), name: 'Qrtmgs', meta: { title: 'Qrtmgs' } }, { path: 'qrtmgs', component: ()=>import("./Qrtmgs/views"), name: 'Qrtmgs', meta: { title: 'Qrtmgs' } ,module:'frontend'},
// { path: 'qrtsel', component: ()=>import("./Qrtsel/views"), name: 'Qrtsel', meta: { title: 'Qrtsel' } }, { path: 'qrtsel', component: ()=>import("./Qrtsel/views"), name: 'Qrtsel', meta: { title: 'Qrtsel' } ,module:'frontend'},
// { path: 'rcvsel', component: ()=>import("./Rcvsel/views"), name: 'Rcvsel', meta: { title: 'Rcvsel' } }, // { path: 'rcvsel', component: ()=>import("./Rcvsel/views"), name: 'Rcvsel', meta: { title: 'Rcvsel' } ,module:'frontend'},
// { path: 'rptgen', component: ()=>import("./Rptgen/views"), name: 'Rptgen', meta: { title: 'Rptgen' } }, { path: 'rptgen', component: ()=>import("./Rptgen/views"), name: 'Rptgen', meta: { title: 'Rptgen' } ,module:'frontend'},
// { path: 'smdsel', component: ()=>import("./Smdsel/views"), name: 'Smdsel', meta: { title: 'Smdsel' } }, { path: 'smdsel', component: ()=>import("./Smdsel/views"), name: 'Smdsel', meta: { title: 'Smdsel' } ,module:'frontend'},
// { path: 'smtame', component: ()=>import("./Smtame/views"), name: 'Smtame', meta: { title: 'Smtame' } }, { path: 'smtame', component: ()=>import("./Smtame/views"), name: 'Smtame', meta: { title: 'Smtame' } ,module:'frontend'},
// { path: 'smtexe', component: ()=>import("./Smtexe/views"), name: 'Smtexe', meta: { title: 'Smtexe' } }, { path: 'smtexe', component: ()=>import("./Smtexe/views"), name: 'Smtexe', meta: { title: 'Smtexe' } ,module:'frontend'},
// { path: 'smtsel', component: ()=>import("./Smtsel/views"), name: 'Smtsel', meta: { title: 'Smtsel' } }, { path: 'smtsel', component: ()=>import("./Smtsel/views"), name: 'Smtsel', meta: { title: '对账单查询' } ,module:'frontend'},
// { path: 'sndsel', component: ()=>import("./Sndsel/views"), name: 'Sndsel', meta: { title: 'Sndsel' } }, // { path: 'sndsel', component: ()=>import("./Sndsel/views"), name: 'Sndsel', meta: { title: 'Sndsel' } ,module:'frontend'},
// { path: 'usrmsg', component: ()=>import("./Usrmsg/views"), name: 'Usrmsg', meta: { title: 'Usrmsg' } }, { path: 'usrmsg', component: ()=>import("./Usrmsg/views"), name: 'Usrmsg', meta: { title: 'Usrmsg' } ,module:'frontend'},
// { path: 'xxxtsk', component: ()=>import("./Xxxtsk/views"), name: 'Xxxtsk', meta: { title: 'Xxxtsk' } }, // 报文管理w
{path: 'rcvsel',component: ()=>import("./Rcvsel/views"),name: 'Rcvsel', meta: { keepAlive: true, title: '收报查询' }},
{path: 'sndsel',component: ()=>import("./Sndsel/views"),name: 'Sndsel',meta: { keepAlive: true, title: '发报查询' }},
] ]
export default BusRouter export default BusRouter
\ No newline at end of file
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Fxdsdb{ export default class Fxdsdb{
constructor () { constructor () {
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.cpsfxdgrp_fxdlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -104,7 +104,7 @@ ...@@ -104,7 +104,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Fxdsdb/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Fxdsdb from "../model/Fxdsdb" import Fxdsdb from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Fxdsdb/Check" import Check from "../model/Check"
import Default from "../model/Fxdsdb/Default" import Default from "../model/Default"
import Pattern from "../model/Fxdsdb/Pattern" import Pattern from "../model/Pattern"
import Mainpanel from "./Mainpanel" import Mainpanel from "./Mainpanel"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "mainpanel",
trnName: "fxdsdb", trnName: "fxdsdb",
trnType: "", trnType: "",
model: new Fxdsdb().data, model: new Fxdsdb().data,
...@@ -74,7 +74,7 @@ export default { ...@@ -74,7 +74,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入fxdsdb交易"); console.log("进入fxdsdb交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Jfdsel{ export default class Jfdsel{
constructor () { constructor () {
......
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.jfdgrp_jfdlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -139,7 +139,7 @@ ...@@ -139,7 +139,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Jfdsel/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Jfdsel from "../model/Jfdsel" import Jfdsel from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Jfdsel/Check" import Check from "../model/Check"
import Default from "../model/Jfdsel/Default" import Default from "../model/Default"
import Pattern from "../model/Jfdsel/Pattern" import Pattern from "../model/Pattern"
import Hompnl from "./Hompnl" import Hompnl from "./Hompnl"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "hompnl",
trnName: "jfdsel", trnName: "jfdsel",
trnType: "", trnType: "",
model: new Jfdsel().data, model: new Jfdsel().data,
...@@ -74,7 +74,7 @@ export default { ...@@ -74,7 +74,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入jfdsel交易"); console.log("进入jfdsel交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Kpachk{ export default class Kpachk{
constructor () { constructor () {
......
...@@ -79,7 +79,7 @@ ...@@ -79,7 +79,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.kpalst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -207,7 +207,7 @@ ...@@ -207,7 +207,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Kpachk/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Kpachk from "../model/Kpachk" import Kpachk from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Kpachk/Check" import Check from "../model/Check"
import Default from "../model/Kpachk/Default" import Default from "../model/Default"
import Pattern from "../model/Kpachk/Pattern" import Pattern from "../model/Pattern"
import Mainpl from "./Mainpl" import Mainpl from "./Mainpl"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "mainpl",
trnName: "kpachk", trnName: "kpachk",
trnType: "", trnType: "",
model: new Kpachk().data, model: new Kpachk().data,
...@@ -74,7 +74,7 @@ export default { ...@@ -74,7 +74,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入kpachk交易"); console.log("进入kpachk交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Lmnsel{ export default class Lmnsel{
constructor () { constructor () {
......
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.lmngrp_lmnlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -222,7 +222,7 @@ ...@@ -222,7 +222,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Lmnsel/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Lmnsel from "../model/Lmnsel" import Lmnsel from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Lmnsel/Check" import Check from "../model/Check"
import Default from "../model/Lmnsel/Default" import Default from "../model/Default"
import Pattern from "../model/Lmnsel/Pattern" import Pattern from "../model/Pattern"
import Manpnl from "./Manpnl" import Manpnl from "./Manpnl"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "manpnl",
trnName: "lmnsel", trnName: "lmnsel",
trnType: "", trnType: "",
model: new Lmnsel().data, model: new Lmnsel().data,
...@@ -78,7 +78,7 @@ export default { ...@@ -78,7 +78,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入lmnsel交易"); console.log("进入lmnsel交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Manzqs{ export default class Manzqs{
constructor () { constructor () {
......
...@@ -97,7 +97,7 @@ ...@@ -97,7 +97,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.zqsp_kpslst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -248,7 +248,7 @@ ...@@ -248,7 +248,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.zqsp_kpclst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -360,7 +360,7 @@ ...@@ -360,7 +360,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Manzqs/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Manzqs from "../model/Manzqs" import Manzqs from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Manzqs/Check" import Check from "../model/Check"
import Default from "../model/Manzqs/Default" import Default from "../model/Default"
import Pattern from "../model/Manzqs/Pattern" import Pattern from "../model/Pattern"
import Mainpanel from "./Mainpanel" import Mainpanel from "./Mainpanel"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "mainpanel",
trnName: "manzqs", trnName: "manzqs",
trnType: "", trnType: "",
model: new Manzqs().data, model: new Manzqs().data,
...@@ -78,7 +78,7 @@ export default { ...@@ -78,7 +78,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入manzqs交易"); console.log("进入manzqs交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Msgrsm{ export default class Msgrsm{
constructor () { constructor () {
......
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.rsmp_mdtmod_gpe192lst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -160,7 +160,7 @@ ...@@ -160,7 +160,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.rsmp_mdtmod_mpelst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -288,7 +288,7 @@ ...@@ -288,7 +288,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.rsmp_mdtmod_gpelst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -425,7 +425,7 @@ ...@@ -425,7 +425,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.rsmp_mdtmod_gpeutrlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -520,7 +520,7 @@ ...@@ -520,7 +520,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.rsmp_pcrmod_mpelst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -597,7 +597,7 @@ ...@@ -597,7 +597,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Msgrsm/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Msgrsm from "../model/Msgrsm" import Msgrsm from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Msgrsm/Check" import Check from "../model/Check"
import Default from "../model/Msgrsm/Default" import Default from "../model/Default"
import Pattern from "../model/Msgrsm/Pattern" import Pattern from "../model/Pattern"
import Rsmp from "./Rsmp" import Rsmp from "./Rsmp"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "rsmp",
trnName: "msgrsm", trnName: "msgrsm",
trnType: "", trnType: "",
model: new Msgrsm().data, model: new Msgrsm().data,
...@@ -83,7 +83,7 @@ export default { ...@@ -83,7 +83,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入msgrsm交易"); console.log("进入msgrsm交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Msgsel{ export default class Msgsel{
constructor () { constructor () {
......
...@@ -139,7 +139,7 @@ ...@@ -139,7 +139,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.msggrp_rcvlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -388,7 +388,7 @@ ...@@ -388,7 +388,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Msgsel/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Msgsel from "../model/Msgsel" import Msgsel from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Msgsel/Check" import Check from "../model/Check"
import Default from "../model/Msgsel/Default" import Default from "../model/Default"
import Pattern from "../model/Msgsel/Pattern" import Pattern from "../model/Pattern"
import Msgpnl from "./Msgpnl" import Msgpnl from "./Msgpnl"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "msgpnl",
trnName: "msgsel", trnName: "msgsel",
trnType: "", trnType: "",
model: new Msgsel().data, model: new Msgsel().data,
...@@ -87,7 +87,7 @@ export default { ...@@ -87,7 +87,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入msgsel交易"); console.log("进入msgsel交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Msgsep{ export default class Msgsep{
constructor () { constructor () {
......
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.sepp_mdtmod_gpe192lst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -160,7 +160,7 @@ ...@@ -160,7 +160,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.sepp_mdtmod_mpelst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -288,7 +288,7 @@ ...@@ -288,7 +288,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.sepp_mdtmod_gpelst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -425,7 +425,7 @@ ...@@ -425,7 +425,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.sepp_mdtmod_gpeutrlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -520,7 +520,7 @@ ...@@ -520,7 +520,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.sepp_pcrmod_mpelst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -582,7 +582,7 @@ ...@@ -582,7 +582,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Msgsep/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Msgsep from "../model/Msgsep" import Msgsep from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Msgsep/Check" import Check from "../model/Check"
import Default from "../model/Msgsep/Default" import Default from "../model/Default"
import Pattern from "../model/Msgsep/Pattern" import Pattern from "../model/Pattern"
import Mainp from "./Mainp" import Mainp from "./Mainp"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "mainp",
trnName: "msgsep", trnName: "msgsep",
trnType: "", trnType: "",
model: new Msgsep().data, model: new Msgsep().data,
...@@ -87,7 +87,7 @@ export default { ...@@ -87,7 +87,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入msgsep交易"); console.log("进入msgsep交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Msgstp{ export default class Msgstp{
constructor () { constructor () {
......
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Msgstp/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Msgstp from "../model/Msgstp" import Msgstp from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Msgstp/Check" import Check from "../model/Check"
import Default from "../model/Msgstp/Default" import Default from "../model/Default"
import Pattern from "../model/Msgstp/Pattern" import Pattern from "../model/Pattern"
import Stpp from "./Stpp" import Stpp from "./Stpp"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "stpp",
trnName: "msgstp", trnName: "msgstp",
trnType: "", trnType: "",
model: new Msgstp().data, model: new Msgstp().data,
...@@ -87,7 +87,7 @@ export default { ...@@ -87,7 +87,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入msgstp交易"); console.log("进入msgstp交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Oftame{ export default class Oftame{
constructor () { constructor () {
......
...@@ -112,7 +112,7 @@ ...@@ -112,7 +112,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.oftgrp_lst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -319,7 +319,7 @@ ...@@ -319,7 +319,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Oftame/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Oftame from "../model/Oftame" import Oftame from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Oftame/Check" import Check from "../model/Check"
import Default from "../model/Oftame/Default" import Default from "../model/Default"
import Pattern from "../model/Oftame/Pattern" import Pattern from "../model/Pattern"
import Oftp2 from "./Oftp2" import Oftp2 from "./Oftp2"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "oftp2",
trnName: "oftame", trnName: "oftame",
trnType: "", trnType: "",
model: new Oftame().data, model: new Oftame().data,
...@@ -89,7 +89,7 @@ export default { ...@@ -89,7 +89,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入oftame交易"); console.log("进入oftame交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Ofthng{ export default class Ofthng{
constructor () { constructor () {
......
...@@ -189,7 +189,7 @@ ...@@ -189,7 +189,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.oftgrp_dotlst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -224,7 +224,7 @@ ...@@ -224,7 +224,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Ofthng/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Ofthng from "../model/Ofthng" import Ofthng from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Ofthng/Check" import Check from "../model/Check"
import Default from "../model/Ofthng/Default" import Default from "../model/Default"
import Pattern from "../model/Ofthng/Pattern" import Pattern from "../model/Pattern"
import Ofghngmainpnl from "./Ofghngmainpnl" import Ofghngmainpnl from "./Ofghngmainpnl"
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
data(){ data(){
return { return {
tabVal: "", tabVal: "ofghngmainpnl",
trnName: "ofthng", trnName: "ofthng",
trnType: "", trnType: "",
model: new Ofthng().data, model: new Ofthng().data,
...@@ -90,7 +90,7 @@ export default { ...@@ -90,7 +90,7 @@ export default {
}, },
created:async function(){ created:async function(){
console.log("进入ofthng交易"); console.log("进入ofthng交易");
let rtnmsg = await this.init({}) let rtnmsg = {}; // await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
......
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
export default class Oftopn{ export default class Oftopn{
constructor () { constructor () {
......
...@@ -154,7 +154,7 @@ ...@@ -154,7 +154,7 @@
</el-table> </el-table>
<el-pagination <el-pagination
layout="prev, pager, next" layout="prev, pager, next"
:total="pager.oftgrp_dotrel_lst.total"> :total="1">
</el-pagination> </el-pagination>
</div> </div>
</c-col> </c-col>
...@@ -291,7 +291,7 @@ ...@@ -291,7 +291,7 @@
import Api from "~/service/Api" import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Event from "../model/Oftopn/Event" import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
......
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