diff --git a/config/env.js b/config/env.js index 0dbbe9c..8653907 100644 --- a/config/env.js +++ b/config/env.js @@ -10,7 +10,7 @@ var ENV_API_URL = { //CdnUrl 环境配置[都默认为线上都行] var ENV_BASE_URL = { production:'https://photo.internal.com', //正式环境 - development:'https://photo.internal.com', //开发测试环境 + development:'http://photo.internal.com', //开发测试环境 local:'https://photo.internal.com',//本地调试环境 } diff --git a/pages.json b/pages.json index 9e033f2..bf2e00a 100644 --- a/pages.json +++ b/pages.json @@ -61,6 +61,20 @@ { "navigationBarTitleText" : "照片换底色详情" } + }, + { + "path" : "pages/user/photo/ai", + "style" : + { + "navigationBarTitleText" : "AI写真" + } + }, + { + "path" : "pages/user/photo/cartoon", + "style" : + { + "navigationBarTitleText" : "卡通画风" + } } ], diff --git a/pages/user/index.vue b/pages/user/index.vue index 1275bf4..0827e70 100644 --- a/pages/user/index.vue +++ b/pages/user/index.vue @@ -587,10 +587,14 @@ export default { }) break; case 3: - + uni.navigateTo({ + url:'/pages/user/photo/ai?id='+item.id, + }) break; case 4: - + uni.navigateTo({ + url:'/pages/user/photo/cartoon?id='+item.id, + }) break; } }, diff --git a/pages/user/photo/ai.vue b/pages/user/photo/ai.vue new file mode 100644 index 0000000..8183fd0 --- /dev/null +++ b/pages/user/photo/ai.vue @@ -0,0 +1,22 @@ +<template> + <view> + + </view> +</template> + +<script> + export default { + data() { + return { + + } + }, + methods: { + + } + } +</script> + +<style> + +</style> diff --git a/pages/user/photo/cartoon.vue b/pages/user/photo/cartoon.vue new file mode 100644 index 0000000..8183fd0 --- /dev/null +++ b/pages/user/photo/cartoon.vue @@ -0,0 +1,22 @@ +<template> + <view> + + </view> +</template> + +<script> + export default { + data() { + return { + + } + }, + methods: { + + } + } +</script> + +<style> + +</style>