oil-station/pos-uni/pagesHome/CardPayment/CardPayment.vue
2024-05-29 13:53:49 +08:00

81 lines
1.5 KiB
Vue

<template>
<view class="content">
<view class="container">
<headers :titles="titles"><u-icon name="arrow-left" color="#fff" size="22"></u-icon></headers>
<view class="img_box">
<image src="/static/imgs/posimgurl.png" mode=""></image>
</view>
<view class="p-size">请将您的卡片插入POS机</view>
</view>
<!-- qq-->
</view>
</template>
<script>
import headers from '../../components/header/headers.vue'
export default {
data() {
return {
titles: "刷卡支付",
}
},
onShow() {
// this.actList = ["1", "1", "1", "1", "1", ]
// this.status = "nomore" 底部刷新结束
},
onPullDownRefresh() {
console.log("刷新");
uni.stopPullDownRefresh()
},
onReachBottom() {
// this.show = true
setTimeout(() => {
console.log("加载执行");
}, 2000)
},
components: {
headers
},
methods: {
goback() {
uni.navigateBack()
}
}
}
</script>
<style scoped lang="scss">
.content {
background: #f4f5f6;
// background: linear-gradient(180deg, #B2D2FC 0%, #B2D2FC 14%, rgba(255, 255, 255, 0.84) 24%, rgba(255, 255, 255, 0.84) 100%);
height: 100vh;
}
.container {
width: 100%;
background: #f4f5f6;
box-sizing: border-box;
padding-top: 88px;
}
.img_box {
height: 186px;
width: 200px;
margin: 40px auto;
margin-top: 80px;
image {
width: 100%;
height: 100%;
}
}
.p-size {
font-weight: 500;
font-size: 18px;
color: #333333;
text-align: center;
}
</style>