Commit 4fe952bc by 潘际乾

工具条账户查询功能

parent f1642f26
...@@ -3,27 +3,28 @@ ...@@ -3,27 +3,28 @@
<el-popover <el-popover
placement="left-start" placement="left-start"
trigger="click" trigger="click"
:offset="150" :offset="80"
popper-class="toolbars-popover" popper-class="toolbars-popover"
> >
<div class="toolbar-detail"> <div class="toolbar-detail">
<ul @click="openTool"> <ul @click="openTool">
<li id="tool-caculate">计算器</li> <li id="tool-caculate">计算器</li>
<li id="tool-search">大额支付行号查询</li>
<li id="tool-telexCode">电报码查询</li>
<li id="tool-account">账户查询</li> <li id="tool-account">账户查询</li>
<li id="tool-swiftcode">SwiftCode查询</li> <li id="tool-swiftcode">SwiftCode查询</li>
<li id="tool-finishedtask">业务查询</li> <li id="tool-finishedtask">业务查询</li>
<li id="tool-feetype">费用查询</li>
<li id="tool-sendMessageQuery">发报查询</li>
<li id="tool-receiveMessageQuery">收报查询</li>
<!-- <li id="tool-search">大额支付行号查询</li>
<li id="tool-telexCode">电报码查询</li>
<li id="tool-exchangerate">即期牌价查询</li> <li id="tool-exchangerate">即期牌价查询</li>
<li id="tool-forwardexchangerate">远期牌价查询</li> <li id="tool-forwardexchangerate">远期牌价查询</li>
<li id="tool-holiday">节假日查询</li> <li id="tool-holiday">节假日查询</li>
<li id="tool-interestrate">利率查询</li> <li id="tool-interestrate">利率查询</li>
<li id="tool-businessoffer">贸易金融业务报价查询</li> <li id="tool-businessoffer">贸易金融业务报价查询</li>
<li id="tool-accttradedetails">账户交易明细查询</li> <li id="tool-accttradedetails">账户交易明细查询</li>
<li id="tool-feetype">费用查询</li> <li id="tool-innerAccountBal">内部户可用余额查询</li> -->
<li id="tool-sendMessageQuery">发报查询</li>
<li id="tool-receiveMessageQuery">收报查询</li>
<li id="tool-innerAccountBal">内部户可用余额查询</li>
</ul> </ul>
</div> </div>
<div class="toolbar-core" slot="reference">工具箱</div> <div class="toolbar-core" slot="reference">工具箱</div>
......
...@@ -39,12 +39,6 @@ ...@@ -39,12 +39,6 @@
<div v-if="currentTool === 'tool-caculate'"> <div v-if="currentTool === 'tool-caculate'">
<calculator ref="calculator" /> <calculator ref="calculator" />
</div> </div>
<div v-if="currentTool === 'tool-search'">
<highvalue ref="highvalue" />
</div>
<div v-if="currentTool === 'tool-telexCode'">
<telexCode ref="telexCode" />
</div>
<div v-if="currentTool === 'tool-account'"> <div v-if="currentTool === 'tool-account'">
<account ref="account" /> <account ref="account" />
</div> </div>
...@@ -54,6 +48,22 @@ ...@@ -54,6 +48,22 @@
<div v-if="currentTool === 'tool-finishedtask'"> <div v-if="currentTool === 'tool-finishedtask'">
<finishedtask ref="finishedtask" /> <finishedtask ref="finishedtask" />
</div> </div>
<div v-if="currentTool === 'tool-feetype'">
<feetype ref="feetype" />
</div>
<div v-if="currentTool === 'tool-sendMessageQuery'">
<sendMessageQuery ref="sendMessageQuery" />
</div>
<div v-if="currentTool === 'tool-receiveMessageQuery'">
<receiveMessageQuery ref="receiveMessageQuery" />
</div>
<div v-if="currentTool === 'tool-search'">
<highvalue ref="highvalue" />
</div>
<div v-if="currentTool === 'tool-telexCode'">
<telexCode ref="telexCode" />
</div>
<div v-if="currentTool === 'tool-exchangerate'"> <div v-if="currentTool === 'tool-exchangerate'">
<exchangerate ref="exchangerate" /> <exchangerate ref="exchangerate" />
</div> </div>
...@@ -75,15 +85,6 @@ ...@@ -75,15 +85,6 @@
<div v-if="currentTool === 'tool-accttradedetails'"> <div v-if="currentTool === 'tool-accttradedetails'">
<accttradedetails ref="accttradedetails" /> <accttradedetails ref="accttradedetails" />
</div> </div>
<div v-if="currentTool === 'tool-feetype'">
<feetype ref="feetype" />
</div>
<div v-if="currentTool === 'tool-sendMessageQuery'">
<sendMessageQuery ref="sendMessageQuery" />
</div>
<div v-if="currentTool === 'tool-receiveMessageQuery'">
<receiveMessageQuery ref="receiveMessageQuery" />
</div>
<div v-if="currentTool === 'tool-innerAccountBal'"> <div v-if="currentTool === 'tool-innerAccountBal'">
<innerAccountBal ref="innerAccountBal" /> <innerAccountBal ref="innerAccountBal" />
</div> </div>
...@@ -126,12 +127,29 @@ import VueDraggableResizable from 'vue-draggable-resizable' ...@@ -126,12 +127,29 @@ import VueDraggableResizable from 'vue-draggable-resizable'
import cms from "~/components/Cms" import cms from "~/components/Cms"
import calculator from "~/widget/Calculator" import calculator from "~/widget/Calculator"
import account from "~/widget/Account"
import swiftcode from "~/widget/SwiftCode"
import finishedtask from "~/widget/Business"
import feetype from "~/widget/Fee"
import sendMessageQuery from "~/widget/MsgSent"
import receiveMessageQuery from "~/widget/MsgReceived"
export default { export default {
name: "Layout", name: "Layout",
components: { headerCom, sideMenu, tagViews, business, toolbars, components: {
headerCom,
sideMenu,
tagViews,
business,
toolbars,
calculator, calculator,
cms, cms,
account,
swiftcode,
finishedtask,
feetype,
sendMessageQuery,
receiveMessageQuery,
'vue-draggable-resizable': VueDraggableResizable, 'vue-draggable-resizable': VueDraggableResizable,
}, },
data(){ data(){
......
<template>
<div></div>
</template>
<script>
/**
* 业务查询
*/
export default {
name: 'BusinessQuery'
}
</script>
<style>
</style>
\ No newline at end of file
<template>
<div></div>
</template>
<script>
/**
* 费用查询
*/
export default {
name: 'FeeQuery'
}
</script>
<style>
</style>
\ No newline at end of file
<template>
<div></div>
</template>
<script>
/**
* 收报查询
*/
export default {
name: 'MsgReceivedQuery'
}
</script>
<style>
</style>
\ No newline at end of file
<template>
<div></div>
</template>
<script>
/**
* 发报查询
*/
export default {
name: 'MsgSentQuery'
}
</script>
<style>
</style>
\ No newline at end of file
<template>
<div></div>
</template>
<script>
/**
* SwiftCode查询
*/
export default {
name: 'SwiftCodeQuery'
}
</script>
<style>
</style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment