Commit 07c254ef authored by 王建威's avatar 王建威

采购分期

parent 23daeca1
<template> <template>
<view class="topbar_view"> <view class="topbar_view">
<text class="eosfont left_icon">&#xe622;</text> <text class="eosfont left_icon" @click="back()">&#xe622;</text>
{{this.title}} {{this.title}}
</view> </view>
</template> </template>
......
<template> <template>
<view class="page1_content"> <view class="page1_content">
<TopBar title="金融分期"/>
<view class="page1_top"> <view class="page1_top">
<view> <view>
<view class="apply_title">企业信息</view> <view class="apply_title">企业信息</view>
...@@ -66,6 +67,7 @@ ...@@ -66,6 +67,7 @@
</template> </template>
<script> <script>
import TopBar from '@/components/TopBar/TopBar.vue';
export default { export default {
data() { data() {
return { return {
...@@ -80,12 +82,16 @@ ...@@ -80,12 +82,16 @@
} }
}) })
} }
},
components: {
TopBar
} }
} }
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
.page1_content { .page1_content {
padding-top: 80rpx;
.apply_title { .apply_title {
font-size:32rpx; font-size:32rpx;
font-family:PingFangSC-Medium,PingFang SC; font-family:PingFangSC-Medium,PingFang SC;
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
<view>申请线下审核资质</view> <view>申请线下审核资质</view>
<view>专属业务人员上门收集企业资质</view> <view>专属业务人员上门收集企业资质</view>
</view> </view>
<view class="next_step" @click="nextStep()">下一步</view>
</view> </view>
</template> </template>
...@@ -23,6 +24,13 @@ ...@@ -23,6 +24,13 @@
methods: { methods: {
changeType(type) { changeType(type) {
this.type = type; this.type = type;
},
nextStep() {
if(this.type === 1) {
uni.navigateTo({
url: '/pages/apply/applypage1'
})
}
} }
}, },
components: { components: {
...@@ -60,4 +68,19 @@ ...@@ -60,4 +68,19 @@
background: #f8f8f8; background: #f8f8f8;
border-color: #f8f8f8; border-color: #f8f8f8;
} }
.next_step {
width: 678rpx;
height: 80rpx;
line-height: 80rpx;
text-align: center;
background-color: #FFDB00;
font-family:PingFangSC-Medium,PingFang SC;
font-weight:500;
font-size: 28rpx;
border-radius: 16rpx;
position: absolute;
bottom: 30rpx;
left: 50%;
margin-left: -339rpx;
}
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment