SD-20230427NBFT\Administrator 8 months ago
parent 8e99deccd4
commit 38632166cb
  1. 8
      pages.json
  2. 12
      pages/index/components/header.vue
  3. 4
      pages/index/index.vue
  4. 22
      pagesA/merge/face_1.vue

@ -130,6 +130,14 @@
{
"navigationBarTitleText" : "证件照合成"
}
},
{
"path" : "merge/face_1",
"style" :
{
"navigationBarTitleText" : "上传图片",
"navigationStyle": "custom"
}
}
]

@ -2,7 +2,7 @@
<view :style="{ height: navHeight + 'rpx' }">
<!-- <u-navbar :bgColor="theme == 'light' ? '#000' : 'transparent'"> -->
<u-navbar :bgColor="thisBack">
<view :class="[theme == 'light' ? 'u-nav-slot_dark' : 'u-nav-slot_light']" slot="left">
<view :class="[theme == 'light' ? 'u-nav-slot_dark' : 'u-nav-slot_light']" slot="left" :style="left_style">
<u-icon name="arrow-left" size="19" @click="goBack()"
:color="theme == 'light' ? '#fff' : '#3D3D3D'"></u-icon>
<u-line direction="column" :hairline="false" length="16" margin="0 8px"></u-line>
@ -20,14 +20,14 @@
export default {
// theme: light || dark
props: ["bgColor", "title", "theme"],
props: ["bgColor", "title", "theme","left"],
data() {
return {
navHeight: 80,
thisBack:'',
thisColor:'',
left_style:''
}
},
onLoad(options) {
@ -70,6 +70,12 @@ export default {
this.thisBack = 'transparent';
}
if(this.left == 'false'){
this.left_style = "display:none"
}
this.getNavHeight()
},

@ -1,6 +1,6 @@
<template>
<view class="container">
<custom_navbar :title="navbar_title" @getNavHeight="getNavHeight" :theme="theme" />
<custom_navbar :title="navbar_title" @getNavHeight="getNavHeight" :theme="theme" left="false" />
<view class="bannerBox" :style="'margin-top:-'+margin_top+'px'">
<u-swiper
:list="banner"
@ -106,7 +106,7 @@
return {
navbar_title: '智能拍照合成',
theme: "blue",
margin_top: -7,
margin_top: 0,
banner: [
// {

@ -0,0 +1,22 @@
<template>
<view>
少时诵诗书所所所所所所
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>
Loading…
Cancel
Save