修剪体积

main
JING 8 months ago
parent 25b5ffd7b0
commit 8db2589a58
  1. 8
      config/env.js
  2. 6
      manifest.json
  3. 7
      pages.json
  4. 1
      pagesA/photo/cartoon_1.vue
  5. 77
      pagesA/photo/cartoon_4.vue
  6. 20
      pagesA/photo/photo_2.vue

@ -2,16 +2,16 @@
// production正式/development线上测试/local本地开发
var NowENV = 'development';
var ENV_API_URL = {
production:'https://netcharge.spacechong.com/', //正式环境
production:'https://photo.internal.com/', //正式环境
development:'http://photo.internal.com/', //开发测试环境
local:'http://192.168.10.123:8901/',//本地调试环境
local:'https://photo.internal.com/',//本地调试环境
}
//CdnUrl 环境配置[都默认为线上都行]
var ENV_BASE_URL = {
production:'https://netcharge.spacechong.com', //正式环境
production:'https://photo.internal.com', //正式环境
development:'https://photo.internal.com', //开发测试环境
local:'https://netcharge.spacechong.com',//本地调试环境
local:'https://photo.internal.com',//本地调试环境
}

@ -58,11 +58,7 @@
"minified" : true
},
"usingComponents" : true,
"permission" : {
"scope.userLocation" : {
"desc" : "你的位置信息将用于小程序位置接口的效果展示"
}
},
"permission" : {},
"requiredPrivateInfos" : [ "getLocation", "chooseLocation" ],
"libVersion" : "latest"
},

@ -109,13 +109,6 @@
"navigationStyle": "custom"
}
},
{
"path": "photo/cartoon_4",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
},
{
"path" : "color/index",
"style" :

File diff suppressed because one or more lines are too long

@ -1,77 +0,0 @@
<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" @click="backIndex">
<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: 0,
}
},
mounted() {
},
onPageScroll(e) {
if (e.scrollTop > 50) {
this.theme = 'white';
} else {
this.theme = 'blue';
}
},
methods: {
getNavHeight(e) {
this.margin_top += e;
},
backIndex()
{
uni.switchTab({
url:'/pages/index/index',
})
},
}
}
</script>
<style lang="scss" scoped>
@import './this.scss';
</style>

@ -57,20 +57,7 @@
<image class="imgSelect" v-if="index == selectIndex" src="/static/img/index/select.png" mode="widthFix"></image>
</view>
<!-- <view class="imgBox">
<image class="imgBg" src="/static/img/user/user.png" mode="widthFix"></image>
<image class="imgSelect" src="/static/img/index/select.png" mode="widthFix"></image>
</view>
<view class="imgBox">
<image class="imgBg" src="/static/img/user/user.png" mode="widthFix"></image>
</view>
<view class="imgBox">
<image class="imgBg" src="/static/img/user/user.png" mode="widthFix"></image>
</view> -->
</scroll-view>
</view>
<view class="popupBtn">
@ -139,13 +126,6 @@
photo_list: [
'https://img30.360buyimg.com/sku/jfs/t1/221254/4/39390/74349/661e039aF46114279/48532008a0001dd0.jpg',
'https://img30.360buyimg.com/sku/jfs/t1/221254/4/39390/74349/661e039aF46114279/48532008a0001dd0.jpg',
'https://img30.360buyimg.com/sku/jfs/t1/221254/4/39390/74349/661e039aF46114279/48532008a0001dd0.jpg',
],
}
},

Loading…
Cancel
Save