12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="renderer" content="webkit">
- <meta http-equiv="Cache-Control" content="no-siteapp">
- <meta http-equiv="X-UA-Compatible" content="IE=Edge">
- <title>就诊卡缴费</title>
- <meta name="keywords" content="">
- <meta name="description" content="">
- <link rel="shortcut icon" href="../../../favicon.ico">
- <link rel="stylesheet" type="text/css" href="../../../css/cross.css" />
- <link rel="stylesheet" type="text/css" href="../../../css/cross.ui.css" />
- <link rel="stylesheet" type="text/css" href="../../../widget/artDialog/6.0.5/css/ui-dialog.min.css">
- <link rel="stylesheet" href="../css/payment.css" />
- </head>
- <body class="bgc-f2f3f4">
- <div id="app" v-cloak>
- <div class="plr15">
- <div class="bgc-fff mt10 jiuzhen c-radius-5">
- <div class="c-f14 ptb10 pl10">
- <span class="c-333333">{{data.cardNo}} ({{data.name}}) </span>
- <span v-if="data.isDefault==1" class="c-4dcd70">默认</span>
- <span class="card-icon" style="float: right;">就诊</span>
- </div>
- <div class="pb10 c-t-center c-ff9526 c-f25">
- ¥ {{data.cardMoney?data.cardMoney:0}} 元
- </div>
- <div class="pb10 c-999 pr10 c-f12 c-t-right createdata">
- {{data.createDate}} 创建
- </div>
- <div>
- <button type="button" class="c-btn-full c-btn-big" style="height: 45px;" @click="gotoPay(1)">门诊缴费</button>
- </div>
- </div>
- <div class="bgc-fff mt10 zhuyuan c-radius-5" v-show="data.inpCardNo">
- <div class="c-f14 ptb10 pl10">
- <span class="c-333333">{{data.inpCardNo}} ({{data.name}}) </span>
- <span v-if="data.isDefault==1" class="c-4dcd70">默认</span>
- <span class="card-icon" style="float: right;">住院</span>
- </div>
- <div class="pb10 c-t-center c-ff9526 c-f25">
- ¥ {{data.cardInpMoney}} 元
- </div>
- <div class="pb10 c-999 pr10 c-f12 c-t-right createdata">
- </div>
- <div>
- <button type="button" class="c-btn-full c-btn-big" style="height: 45px;" @click="gotoPay(2)">住院缴费</button>
- </div>
- </div>
- </div>
- <div :class="BtnClass" class="c-100">
- <div class="pb20 plr30">
- <button type="button" class="c-btn-4dcd70 c-btn-arc c-btn-full c-btn-big" style="height: 45px;" @click="gotoList()">缴费查询</button>
- </div>
- <div class="pb20 mb15 plr30">
- <button type="button" class="c-btn-fff c-btn-full c-btn-arc c-btn-big" style="height: 45px;color:#FF5E6C;" @click="untieCard()">解绑就诊卡</button>
- </div>
- </div>
- </div>
- <script src="../../../js/post.js"></script>
- <script src="../../../widget/artDialog/6.0.5/js/dialog-plus.js"></script>
- <script src="../js/patientIDCards-pay.js"></script>
- </body>
- </html>
|