146 lines
3.3 KiB
Vue
146 lines
3.3 KiB
Vue
<template>
|
|
<!-- <up-popup ref="popup" type="bottom" :mask-background-color="isPay?'rgba(0,0,0,.8)':'transparent'" safeArea
|
|
backgroundColor="transparent" :animation="true" @maskClick="maskClick">
|
|
<view class="popup-wrap" :style="{'border-radius':isPay?'': 0}">
|
|
<view class="paybox" v-if="isPay">
|
|
<view class="paybox-title">
|
|
<view class="paybox-title-left"></view>
|
|
<view class="paybox-title-middle">{{title}}</view>
|
|
<view class="paybox-titler-right" @click="handleClose">
|
|
<up-icon name="close" size="18" color="#666" />
|
|
</view>
|
|
</view>
|
|
<view class="paybox-input">
|
|
<u-code-input v-model="value" mode="box" dot readonly></u-code-input>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="keyboard">
|
|
<view class="keyboard-left" :style="{width:isPay?'100%':''}">
|
|
<block v-for="(item,indx) in keys" :key="indx">
|
|
<view class="keyboard-left-item active del" v-if="item=='del'" @click="handleClick(item)">
|
|
<image style="width: 48rpx;height: 48rpx;" src="@/static/del.webp" />
|
|
</view>
|
|
|
|
<view class="keyboard-left-item word active" :style="{width:isPay?'0%':'',border:isPay?'0':''}"
|
|
v-else-if="item == '.'" @click="handleClick(item)">
|
|
{{isPay?'':item}}
|
|
</view>
|
|
|
|
<view class="keyboard-left-item word active" :style="{width:(isPay && item == '0')?'66.66%':''}"
|
|
v-else @click="handleClick(item)">
|
|
{{item}}
|
|
</view>
|
|
</block>
|
|
</view>
|
|
<view class="keyboard-right" :style="{width:isPay?'0%':''}">
|
|
<view class="keyboard-right-clear word active" @click="handleClear">清空</view>
|
|
<view class="keyboard-right-pay word active-pay" @click="handlePay">{{txt}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</up-popup> -->
|
|
<view class="">
|
|
sds
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script setup></script>
|
|
|
|
<style lang="scss" scoped>
|
|
.popup-wrap {
|
|
background-color: #fff;
|
|
border-radius: 30rpx 30rpx 0 0;
|
|
|
|
.paybox {
|
|
.paybox-title {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 40rpx;
|
|
|
|
.paybox-title-left {}
|
|
|
|
.paybox-title-middle {
|
|
font-size: 30rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
.paybox-titler-right {}
|
|
}
|
|
|
|
.paybox-input {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 40rpx;
|
|
|
|
:deep(.u-code-input__item) {
|
|
background-color: #E6E6E6;
|
|
border-radius: 8rpx;
|
|
border: 0 !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.keyboard {
|
|
display: flex;
|
|
padding-bottom: 20rpx;
|
|
border-top: 2rpx solid #E6E6E6;
|
|
|
|
.keyboard-left {
|
|
width: 75%;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
.keyboard-left-item {
|
|
width: 33.3%;
|
|
height: 120rpx;
|
|
line-height: 102rpx;
|
|
border-bottom: 2rpx solid #E6E6E6;
|
|
border-right: 2rpx solid #E6E6E6;
|
|
}
|
|
|
|
.del {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
.keyboard-right {
|
|
width: 25%;
|
|
|
|
.keyboard-right-clear {
|
|
width: 100%;
|
|
height: 120rpx;
|
|
line-height: 120rpx;
|
|
}
|
|
|
|
.keyboard-right-pay {
|
|
width: 100%;
|
|
height: 360rpx;
|
|
line-height: 360rpx;
|
|
text-align: center;
|
|
background-color: #40AE36;
|
|
color: #fff !important;
|
|
}
|
|
}
|
|
|
|
.word {
|
|
font-weight: 600;
|
|
font-size: 34rpx;
|
|
color: #000000;
|
|
text-align: center;
|
|
}
|
|
|
|
.active:active {
|
|
background-color: rgba(232, 232, 232, 0.5);
|
|
}
|
|
|
|
.active-pay:active {
|
|
opacity: .9;
|
|
}
|
|
}
|
|
</style> |