|
@@ -6,6 +6,7 @@
|
|
|
<span class="icon"></span>
|
|
|
<span class="ctitle">{{ form.companyName }}</span>
|
|
|
<img :src="rz" class="rz" />
|
|
|
+ <span class="icon qr" title="点击查看企业二维码" @click="op('qr')"></span>
|
|
|
</div>
|
|
|
<div class="desc">账户余额(元)</div>
|
|
|
<div class="money">{{ form.money }}</div>
|
|
@@ -25,6 +26,7 @@ import out_edit from './out/edit.vue';
|
|
|
import out_list from './out/edit.vue';
|
|
|
import recharge_edit from './recharge/edit.vue';
|
|
|
import recharge_list from './recharge/record.vue';
|
|
|
+import qr from '@/components/qr';
|
|
|
import rz from '@/assets/images/rz.png';
|
|
|
export default {
|
|
|
name: 'Money',
|
|
@@ -46,6 +48,9 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
op(tag, row) {
|
|
|
+ if (tag == 'qr') {
|
|
|
+ this.iframe({ obj: qr, param: {}, title: '查看企业二维码', width: '35%', height: '45%' });
|
|
|
+ }
|
|
|
if (tag == 'out') {
|
|
|
this.iframe({ obj: out_edit, param: {}, title: '提现申请', width: '40%', height: '55%' });
|
|
|
}
|
|
@@ -53,7 +58,7 @@ export default {
|
|
|
this.iframe({ obj: recharge_edit, param: {}, title: '充值申请', width: '40%', height: '65%' });
|
|
|
}
|
|
|
if (tag == 'recharge_list') {
|
|
|
- this.iframe({ obj: recharge_list, param: {}, title: '充值明细', width: '70%', height: '90.5%' });
|
|
|
+ this.iframe({ obj: recharge_list, param: {}, title: '充值明细', width: '70%', height: '70%' });
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -76,6 +81,13 @@ export default {
|
|
|
float: right;
|
|
|
width: 80px;
|
|
|
}
|
|
|
+ .qr {
|
|
|
+ float: right;
|
|
|
+ margin-top: 3px;
|
|
|
+ font-size: 23px;
|
|
|
+ margin-right: 10px;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
}
|
|
|
.desc {
|
|
|
color: #8c8c8c;
|