113 lines
2.0 KiB
Vue
113 lines
2.0 KiB
Vue
![]() |
<template>
|
||
|
<view class="content">
|
||
|
<view class="container">
|
||
|
<headers :titles="titles"><u-icon name="arrow-left" color="#fff" size="18"></u-icon></headers>
|
||
|
<view class="box-t">
|
||
|
<view class="">微信费率(%)</view>
|
||
|
<view class="i-r">
|
||
|
<input type="text" placeholder="请输入" />
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="box-t">
|
||
|
<view class="">支付宝费率(%)</view>
|
||
|
<view class="i-r">
|
||
|
<input type="text" placeholder="请输入" />
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="box-t">
|
||
|
<view class="">云闪付费率(%)</view>
|
||
|
<view class="i-r">
|
||
|
<input type="text" placeholder="请输入" />
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="anniu">
|
||
|
修改
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import headers from '../../components/header/headers.vue'
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
titles: "费率修改",
|
||
|
msg: "1",
|
||
|
dataList: [],
|
||
|
show: false,
|
||
|
status: 'loading',
|
||
|
}
|
||
|
},
|
||
|
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: #fff;
|
||
|
|
||
|
height: 100vh;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
width: 100%;
|
||
|
background: #fff;
|
||
|
box-sizing: border-box;
|
||
|
padding-top: 88px;
|
||
|
}
|
||
|
|
||
|
.box-t {
|
||
|
width: 95%;
|
||
|
box-sizing: border-box;
|
||
|
padding: 10px 15px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
box-shadow: 3px 3px 7px -2px #d8d8d8;
|
||
|
justify-content: space-between;
|
||
|
margin: 10px auto;
|
||
|
}
|
||
|
|
||
|
.i-r {
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
.anniu {
|
||
|
width: 50%;
|
||
|
border-radius: 50px;
|
||
|
background: #E4612E;
|
||
|
margin: 10px auto;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
color: white;
|
||
|
box-sizing: border-box;
|
||
|
padding: 15px;
|
||
|
margin-top: 50px;
|
||
|
}
|
||
|
</style>
|