oil-station/pos-uni/package/cji/cji.vue

71 lines
1.2 KiB
Vue
Raw Permalink Normal View History

2024-05-13 11:22:23 +08:00
<template>
<view class="content">
<view class="container">
2024-05-22 09:39:54 +08:00
<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=""></view>
2024-05-13 11:22:23 +08:00
</view>
</view>
</template>
<script>
import headers from '../../components/header/headers.vue'
2024-05-22 09:39:54 +08:00
2024-05-13 11:22:23 +08:00
export default {
data() {
return {
2024-05-22 09:39:54 +08:00
titles: "刷卡支付",
2024-05-13 11:22:23 +08:00
}
},
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: {
2024-05-22 09:39:54 +08:00
headers
2024-05-13 11:22:23 +08:00
},
methods: {
goback() {
uni.navigateBack()
}
}
}
</script>
<style scoped lang="scss">
.content {
2024-05-22 09:39:54 +08:00
background: #fff;
// background: linear-gradient(180deg, #B2D2FC 0%, #B2D2FC 14%, rgba(255, 255, 255, 0.84) 24%, rgba(255, 255, 255, 0.84) 100%);
2024-05-13 11:22:23 +08:00
height: 100vh;
}
.container {
width: 100%;
2024-05-22 09:39:54 +08:00
background: #fff;
2024-05-13 11:22:23 +08:00
box-sizing: border-box;
padding-top: 88px;
}
2024-05-22 09:39:54 +08:00
.img-box {
image {
width: 100%;
height: 100%;
}
}
2024-05-13 11:22:23 +08:00
</style>