| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <template>
- <view class="default_page adffcac" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
- <cus-header title='问卷结果'></cus-header>
- <image :src="imgBase+'pay_success.png'"></image>
- <view class="title">问卷提交成功</view>
- <view class="tip">可以通过首页中的问卷管理去生成相应报告</view>
- <view class="btn" @click="toCreate">去生成</view>
- <view class="btn back" @click="returnHome">返回首页</view>
- </view>
- </template>
- <script>
- export default {
- data(){
- return {
-
- }
- },
- methods:{
- toCreate(){
- uni.redirectTo({
- url:'/pagesHome/questionnaire?type=create'
- })
- },
- returnHome(){
- uni.reLaunch({
- url:'/pages/home'
- })
- },
- }
- }
- </script>
- <style scoped lang="scss">
- .default_page{
- padding: 0 84rpx;
- background: #FFFFFF;
-
- image{
- width: 226rpx;
- height: 142rpx;
- margin-top: 196rpx;
- }
-
- .title{
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- font-size: 40rpx;
- color: #002846;
- line-height: 51rpx;
- margin-top: 42rpx;
- }
- .tip{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #95A5B1;
- line-height: 51rpx;
- margin-top: 8rpx;
- text-align: center;
- span{
- color: #667E90;
- font-weight: bold;
- }
- }
-
- .btn{
- width: 100%;
- height: 88rpx;
- border: 1rpx solid #33A7A7;
- background: linear-gradient( 90deg, #33A7A7 0%, #64BBBB 100%);;
- border-radius: 44rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #FFFFFF;
- line-height: 88rpx;
- text-align: center;
- letter-spacing: 2rpx;
- margin-top: 197rpx;
- &.back{
- background: #FFFFFF;
- border: 1rpx solid #E0E4E7;
- color: #667E90;
- margin-top: 40rpx;
- }
- }
- }
- </style>
|