vueカスタムフレームの効果(確認枠、提示枠)
本論文の例では、Vueのカスタムフレーム効果の具体的なコードを共有しています。参考にしてください。具体的な内容は以下の通りです。
1、カスタム確認ボックスとヒントボックス
入ってきたtypeによって確認枠か提示枠かが判断されます。
(1)ヒントボックスの使用:
(2)確認枠:
確認ボックスの場合のキー処理:changeData
1、カスタム確認ボックスとヒントボックス
入ってきたtypeによって確認枠か提示枠かが判断されます。
<template>
<transition name="confirm-fade">
<div v-if="isShowConfirm" class="my-confirm" @click.stop="clickFun('clickCancel')">
<div class="confirm-content-wrap" @click.stop>
<h3 class="my-confirm-title" v-show="titleText != ''">{{ titleText }}</h3>
<p class="my-confirm-content">{{ content }}</p>
<div class="my-operation">
<div v-if="type==='confirm'" class="my-cancel-btn" @click="clickFun('clickCancel')">
<p class="my-btn-text my-border-right">{{ cancelText }}</p>
</div>
<div class="confirm-btn" @click="clickFun('clickConfirm')">
<p class="my-btn-text">{{ confirmText }}</p>
</div>
</div>
</div>
</div>
</transition>
</template>
<script type="text/ecmascript-6">
export default {
data () {
return {
isShowConfirm: false, // /
titleText: ' ', //
content: 'Say Something ...', //
cancelText: ' ', //
confirmText: ' ', //
type: 'confirm', // :confirm - ( );alert - ( )
outerData: null // , userBehavior,
}
},
methods: {
show (content, config) {
this.content = content || 'Say Something ...'
if (Object.prototype.toString.call(config) === '[object Object]') {
//
this.titleText = config.titleText || ''
this.cancelText = config.cancelText || ' '
this.confirmText = config.confirmText || ' '
this.type = config.type || 'confirm'
this.outerData = config.data || null
}
this.isShowConfirm = true
},
hidden () {
this.isShowConfirm = false
this.titleText = ' '
this.cancelText = ' '
this.confirmText = ' '
this.type = 'confirm'
this.outerData = null
},
clickFun (type) {
this.$emit('userBehavior', type, this.outerData)
this.hidden()
}
}
}
</script>
<style scoped>
.my-confirm {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 998;
/* , , iPhone */
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* */
.confirm-fade-enter-active {
animation: opacity 0.3s;
}
.confirm-fade-enter-active .confirm-content-wrap {
animation: scale 0.3s;
}
.confirm-fade-leave-active {
animation: outOpacity 0.2s;
}
/* */
.confirm-content-wrap {
position: absolute;
top: 28%;
left: 0;
right: 0;
width: 280px;
margin: 0 auto;
background-color: #fff;
border-radius: 5px;
z-index: 999;
user-select: none;
}
/* */
.my-confirm-title {
padding-top: 20px;
text-align: center;
font-size: 20px;
font-weight: 500;
color: #333;
}
/* */
.my-confirm-content {
padding: 0 15px;
padding-top: 20px;
margin-bottom: 32px;
text-align: center;
font-size: 16px;
color: #666;
line-height: 1.5;
}
/* */
.my-operation {
display: flex;
border-top: 1px solid #eee;
}
.my-operation .my-cancel-btn, .confirm-btn {
flex: 1;
}
.my-operation .confirm-btn {
color: #ffb000;
}
.my-operation .my-btn-text {
text-align: center;
font-size: 16px;
margin: 8px 0;
padding: 6px 0;
}
/* */
.my-border-right {
border-right: 1px solid #eee;
}
/* */
@keyframes opacity {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes scale {
0% {
transform: scale(0);
}
60% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
/* */
@keyframes outOpacity {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
</style>
2、呼び出し:(1)ヒントボックスの使用:
<DialogView ref="myDialog" @userBehavior="changeData"></DialogView>
……
//
this.$refs.myDialog.show(content, {
type: 'alert',
confirmText: 'OK',
cancelText: ' ',
titleText: '',
data: null
})
効果:(2)確認枠:
this.$refs.myDialog.show(' ?', {
type: 'confirm',
confirmText: ' ',
cancelText: ' ',
titleText: '',
data: {shop: shop, operate: 'exchange'}
})
効果:確認ボックスの場合のキー処理:changeData
<DialogView ref="myDialog" @userBehavior="changeData"></DialogView>
……
changeData (type, data) {
console.log('changeData',data)
if (type === 'clickConfirm') {
if (data.operate === 'exchange') {
// this.reduceEnergy(data.shop)
this.exchangeCoupon(data.shop)
} else if (data.operate === 'downLoad') {
window.location = data.url
} else if (data.operate === 'login') {
this.uplusApi.upVdnModule.goToPage({url: 'mpaas://usercenter'})
this.isLogin = false
}
}
},
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。