Commit f2625799 by 李少勇

申请人接口联调

parent d7b52ab1
......@@ -29,6 +29,18 @@ export default {
console.log('queryOwnref', res)
}
},
// 业务信息=》基本信息=》申请人-----获取申请人信息
async queryGidgrpAplPtsExtkey () {
let params = {
userId: 'ZL',
ptytyp: 'C',
extkey: '2000'
}
let res = await Api.post('/service/ptspta/list', params)
if (res.respCode == SUCCESS) {
console.log('queryGidgrpAplPtsExtkey', res)
}
},
// 业务信息=》基本信息=》支出目的
purposChange (key, value) {
this.handleChangeForm(key, value)
......
......@@ -707,9 +707,7 @@
v-model="model.gidgrp.apl.pts.extkey"
maxlength="16"
placeholder="请输入"
@keyup.enter.native="
showGridPromptDialog(`gidgrp.apl.pts.extkey`)
"
@keyup.enter.native="queryGidgrpAplPtsExtkey"
>
</c-input>
<template slot="footer">
......
......@@ -10,7 +10,7 @@
size="small"
:validate-on-rule-change="false"
>
<c-tabs v-model="tabVal" ref="elment" type="card">
<c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="tabClick">
<!--PD000001 -->
<el-tab-pane label="业务信息" name="ovwp">
<c-content>
......@@ -41,7 +41,7 @@
</el-tab-pane>
<!--PD000027 -->
<el-tab-pane label="费用/账务" name="setmod">
<el-tab-pane label="费用/账务" name="setpan">
<c-content>
<m-setmod :model="model" :codes="codes" />
</c-content>
......
......@@ -51,13 +51,13 @@ export default {
},
created: async function () {
console.log("进入infgid交易");
let rtnmsg = await this.init({});
if (rtnmsg.respCode == SUCCESS) {
this.updateModel(rtnmsg.data);
//TODO 处理数据逻辑
} else {
this.$notify.error({ title: "错误", message: "服务请求失败!" });
}
// let rtnmsg = await this.init({});
// if (rtnmsg.respCode == SUCCESS) {
// this.updateModel(rtnmsg.data);
// //TODO 处理数据逻辑
// } else {
// this.$notify.error({ title: "错误", message: "服务请求失败!" });
// }
},
};
</script>
......
......@@ -450,7 +450,7 @@
</el-table-column>
</c-table>
</c-col>
<div style="height=500px">
<div style="height: 500px">
<setpan-dialog
ref="setpanDialog"
:model="model"
......
......@@ -269,7 +269,12 @@ export default {
if (!item) {
if (menuItem.pntmiu === undefined || menuItem.pntmiu === "") {
const children = [];
menuItem.path = "/business";
// 此处为了兼容新的保函模块
if (menuItem.inifrm === '13') {
menuItem.path = "/business-new";
} else {
menuItem.path = "/business";
}
this.generateMenuTree(children, menuItem);
const child = {
name: menuItem.ininam,
......@@ -304,9 +309,10 @@ export default {
}
}
list.push(...cc, ...c);
console.log('list=====', list)
},
handleOpen(index, indexPath) {
// console.log(index, indexPath);
console.log('11111======', index, indexPath);
const arr = Object.assign([], this.openFlgArr);
arr.push(index);
this.openFlgArr = arr;
......
......@@ -111,7 +111,6 @@
<tagViews></tagViews>
<div style="height: 0.5px;background-color: #1561e0;opacity: 0.2;"></div>
<business></business>
<business-new></business-new>
<toolbars @openTool="handleChooseTool"></toolbars>
</el-main>
</el-container>
......@@ -123,7 +122,6 @@ import headerCom from "./Header";
import sideMenu from "./SideMenu";
import tagViews from "./components/TagsView";
import business from "../Business";
import businessNew from "~/business";
import toolbars from "~/components/Toolbars";
import VueDraggableResizable from 'vue-draggable-resizable'
......@@ -143,7 +141,6 @@ export default {
sideMenu,
tagViews,
business,
businessNew,
toolbars,
calculator,
cms,
......
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