<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.paymentweixin {
width: 100%;
height: 72px;
border-bottom: 1px solid #f0f0f0;
position: relative;
}
.paymentweixinimg {
width: 45px;
margin-top: 15px;
margin-left: 10px;
}
.queren {
width: 25px;
position: absolute;
top: 25px;
right: 15px;
}
</style>
</head>
<body>
<div id='payMethod'>
<div class="paymentweixin" @click="weixin">
<img Arc="weixin.png" class="paymentweixinimg" />
<img Arc="quren.png" v-show="isShowA" class="queren" />
<img Arc="cancel.png" v-show="isShowB" class="queren" />
</div>
<div class="paymentweixin" @click="zhifubao">
<img Arc="zhifubao.png" class="paymentweixinimg" />
<img Arc="cancel.png" v-show="isShowA" class="queren" />
<img Arc="quren.png" v-show="isShowB" class="queren" />
</div>
</div>
<script src="http://cdn.bootcss.com/vue/1.0.28/vue.js"></script>
<script type="text/javascript">
//http://om1gg1n7c.bkt.clouddn.com/quren.png
//http://om1gg1n7c.bkt.clouddn.com/cancel.png
//http://om1gg1n7c.bkt.clouddn.com/zhifubao.png
//http://om1gg1n7c.bkt.clouddn.com/weixin.png
// 选择支付方式
var vm = new Vue({
el: "#payMethod",
data: {
isShowA: true,
isShowB: false
},
methods: {
weixin: function() {
if (this.isShowA) {
this.isShowA = true;
this.isShowB = false;
} else {
this.isShowA = true;
this.isShowB = false;
}
},
zhifubao: function() {
if (this.isShowA) {
this.isShowA = false;
this.isShowB = true;
}
}
}
})
</script>
</body>
</html>
二选一 选择支付方式 vue实现
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 01 再过2天又是“8.1”,这将是陪你过的第5个建军节了。 说实在的,以往对于这个节日没有太多的感情。因此,节...