You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.2 KiB
71 lines
1.2 KiB
<template>
|
|
<view>
|
|
<view class="content ">
|
|
<custom_navbar :title="navbar_title" @getNavHeight="getNavHeight" :theme="theme" />
|
|
<view class="photo_main_face" :style="'margin-top:-'+margin_top+'px'">
|
|
<view class="photo_main_face_head"></view>
|
|
<view class="photo_success_1">
|
|
<image src="/static/img/common/photo_c1.png"/>
|
|
</view>
|
|
<view class="photo_success_2">生成已提交</view>
|
|
<view class="photo_success_3">
|
|
<view>目前排队人数较多,请耐心等待</view>
|
|
<view>可去<text>【我的】</text>页面查看生成结果</view>
|
|
</view>
|
|
<view class="photo_success_4">
|
|
<image src="/static/img/common/photo_c2.png"/>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import custom_navbar from "./components/photo_header.vue";
|
|
export default {
|
|
components: {
|
|
custom_navbar
|
|
|
|
},
|
|
data() {
|
|
return {
|
|
navbar_title: '',
|
|
theme: "blue",
|
|
margin_top: -7,
|
|
|
|
|
|
}
|
|
},
|
|
|
|
mounted() {
|
|
|
|
},
|
|
onPageScroll(e) {
|
|
if (e.scrollTop > 50) {
|
|
this.theme = 'white';
|
|
|
|
} else {
|
|
|
|
this.theme = 'blue';
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
getNavHeight(e) {
|
|
this.margin_top += e;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import './this.scss';
|
|
|
|
|
|
</style> |