main
JING 8 months ago
parent 8db2589a58
commit b623d3e088
  1. 2
      config/env.js
  2. 14
      pages.json
  3. 8
      pages/user/index.vue
  4. 22
      pages/user/photo/ai.vue
  5. 22
      pages/user/photo/cartoon.vue

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

@ -61,6 +61,20 @@
{ {
"navigationBarTitleText" : "照片换底色详情" "navigationBarTitleText" : "照片换底色详情"
} }
},
{
"path" : "pages/user/photo/ai",
"style" :
{
"navigationBarTitleText" : "AI写真"
}
},
{
"path" : "pages/user/photo/cartoon",
"style" :
{
"navigationBarTitleText" : "卡通画风"
}
} }
], ],

@ -587,10 +587,14 @@ export default {
}) })
break; break;
case 3: case 3:
uni.navigateTo({
url:'/pages/user/photo/ai?id='+item.id,
})
break; break;
case 4: case 4:
uni.navigateTo({
url:'/pages/user/photo/cartoon?id='+item.id,
})
break; break;
} }
}, },

@ -0,0 +1,22 @@
<template>
<view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>

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