main
JING 8 months ago
parent b623d3e088
commit 63cbe2c2bb
  1. 154
      pages/index/index.vue
  2. 38
      pages/user/account/index.vue
  3. 17
      pages/user/account/logout.vue
  4. 100
      pages/user/index.vue
  5. 220
      pages/user/photo/ai.vue
  6. 236
      pages/user/photo/cartoon.vue
  7. 5
      pages/user/portrait/detail.vue
  8. 2
      pagesA/merge/face_1.vue
  9. 8
      pagesA/merge/index.vue
  10. 2
      pagesA/photo/face.vue
  11. 7
      pagesA/photo/photo_2.vue

@ -93,6 +93,24 @@
</view>
<view class="spaceBox"></view>
<u-popup :show="tips_show" :round="10" mode="center" bgColor="transparent" @close="close('tips_show')" @open="open('tips_show')">
<view class="popupBox">
<view class="popupTop">
{{tips_title}}
</view>
<view class="popupDesc1">
<u-parse :content="content" :tagStyle="style"></u-parse>
</view>
<view class="popupBtn">
<view class="sbtnBox1 a1" @click="close('tips_show')">取消</view>
<view class="sbtnBox1 a2" @click="submit('tips_show')">确认</view>
</view>
</view>
</u-popup>
</view>
</template>
@ -121,6 +139,19 @@
specs_list:[],//
album_list:[],//
cartoon_list:[],//
//
tips_title:'隐私协议',
tips_show: false,
content: `<p>在使用【合成照相馆】小程序服务之前,</p>
<p>请仔细阅读合成照相馆隐私协议</p>
<p>如你同意该协议,请点击同意开始使用合成照相馆</p>`,
style: {
//
p: 'font-weight: 400;font-size: 28rpx;color: #555555;line-height: 60rpx;',
},
}
},
onPageScroll(e) {
@ -141,10 +172,20 @@
_this.getSceneMenu();
//
_this.getHotList();
var show_agreement = _this.$user.session('show_agreement');
console.log('show_agreement',show_agreement);
if(_this.$com.isNull(show_agreement))
{
_this.agreement();
_this.tips_show = true;
}
//1
setTimeout(function(res){
_this.getUploadConfig();
},1000);
},
onShareAppMessage() {
@ -303,6 +344,35 @@
url:'/pagesA/photo/cartoon_2?id='+id,
})
},
open(key) {
console.log('open',key);
},
close(key) {
var _this = this;
_this[key] = false;
},
//
agreement(){
var _this = this;
var post = {
type:'user_protocol',
};
_this.$api.get('api/treatyInfo',post,function(rs){
console.log('协议',rs);
_this.content = rs.content;
_this.tips_show = true;
},function(err){
console.log(err);
});
},
submit(key)
{
var _this = this;
_this.$user.session('show_agreement',1);
_this.close(key);
},
}
}
</script>
@ -440,4 +510,88 @@
text-overflow: ellipsis; //
}
.popupBox{
width: 600rpx;
height: auto;
border-radius: 24rpx;
background-color: #FFFFFF;
}
.popupTop{
width: 600rpx;
height: 140rpx;
background: linear-gradient(to bottom, #D3D5FF 20%, #FFFFFF 50%);
border-radius: 24rpx 24rpx 0rpx 0rpx;
line-height: 140rpx;
text-align: center;
font-weight: 700;
font-size: 30rpx;
color: #333333;
}
.popupBtn{ width: 100%; height: auto;
display: flex; flex-wrap: wrap;
justify-content: space-around; /* 使子元素在容器中均匀分布 */
align-items: center; /* 如果需要垂直居中子元素 */
}
.sbtnBox{
margin: 30rpx auto;
width: 478rpx;
height: 80rpx;
font-weight: 700;
font-size: 30rpx;
line-height: 80rpx;
border: 2rpx solid #4D94FF;
text-align: center;
border-radius: 44rpx;
}
.popupDesc{
width:560rpx;
font-weight: 400;
font-size: 28rpx;
color: #555555;
height: auto;
padding: 0rpx 20rpx;
}
.popupDesc1{
width:480rpx;
font-weight: 400;
font-size: 28rpx;
color: #555555;
height: 700rpx;
overflow-x: hidden;
overflow-y: scroll;
padding: 0rpx 60rpx;
}
.sbtnBox1{
margin: 30rpx auto;
width: 226rpx;
height: 80rpx;
font-weight: 700;
font-size: 30rpx;
line-height: 80rpx;
border: 2rpx solid #4D94FF;
text-align: center;
border-radius: 44rpx;
}
.a1{
background: linear-gradient( 270deg, rgba(46,87,241,0.15) 0%, rgba(131,88,246,0.15) 100%);
color:#7A74F0;
}
.a2{
background: linear-gradient( 270deg, #2E57F1 0%, #8358F6 100%);
color:#FFFFFF;
}
.a3{
background: linear-gradient( 270deg, #2E57F1 0%, #8358F6 100%);
color:#FFFFFF;
}
</style>

@ -66,8 +66,27 @@
<!--input box end-->
<!--input box start-->
<view class='input_box' @click="agreement">
<view class='i_box_1'>协议与说明</view>
<view class='input_box' @click="agreement('user_protocol')">
<view class='i_box_1'>隐私协议</view>
<view class='i_box_2'></view>
<view class='i_box_3x'>
</view>
<view class='i_box_5'>
<view class="up">
<view class="img">
</view>
<view class="icon" >
<u-icon name="arrow-right" top="5"></u-icon>
</view>
</view>
</view>
</view>
<!--input box end-->
<!--input box start-->
<view class='input_box' @click="agreement('privacy_policy')">
<view class='i_box_1'>用户协议</view>
<view class='i_box_2'></view>
<view class='i_box_3x'>
@ -112,7 +131,7 @@
<u-popup :show="show" :round="10" mode="center" bgColor="transparent" @close="close" @open="open">
<view class="popupBox">
<view class="popupTop">
协议与说明
{{tips_title}}
</view>
<view class="popupDesc">
<u-parse :content="content" :tagStyle="style"></u-parse>
@ -162,6 +181,7 @@
},
uploadImg: [],
//
tips_title:'',
show: false,
content:'',
style: {
@ -267,10 +287,18 @@
});
},
//
agreement(){
agreement(type){
var _this = this;
if(type == 'privacy_policy')
{
_this.tips_title = '用户协议';
}
else
{
_this.tips_title = '隐私协议';
}
var post = {
type:'user_protocol',
type:type,
};
_this.$api.get('api/treatyInfo',post,function(rs){
console.log('协议',rs);

@ -87,6 +87,23 @@
},
yes(){
this.close();
//api/photo_album/del
_this.$com.confirm('确认注销账户,清空所有信息吗?',function(res){
var post = {
id:id,
};
_this.$api.post('api/user/logOut', post,function(rs){
console.log(rs);
uni.reLaunch({
url: '/pages/index/index'
});
});
},'警告');
},
}
}

@ -146,7 +146,7 @@
<image src="/static/img/index/right.png" mode="widthFix" v-if="item.status == 3"></image>
<view class="ing" v-if="item.status == 1">排队中...</view>
<view class="ing" v-if="item.status == 2">生成中...</view>
<view class="ing" v-if="item.status == 2">生成失败</view>
<view class="ing" v-if="item.status == 4">生成失败</view>
</view>
</view>
@ -156,7 +156,7 @@
<view class="picBox" v-if="tabList[current].type == 2" v-for="(item,index) in dataList" :key="index" @click="viewDetail(item)">
<view class="p_left">
<image class="p_bg" src="/static/img/user/pic_bg.png" mode="aspectFill"></image>
<image class="p_bg" :src="item.merge_thumbnail" mode="aspectFill"></image>
<image v-if="item.status != 3" class="p_pic" src="/static/img/user/ing.png" mode="widthFix"></image>
</view>
<view class="p_center">
@ -167,7 +167,7 @@
<image src="/static/img/index/right.png" mode="widthFix" v-if="item.status == 3"></image>
<view class="ing" v-if="item.status == 1">排队中...</view>
<view class="ing" v-if="item.status == 2">生成中...</view>
<view class="ing" v-if="item.status == 2">生成失败</view>
<view class="ing" v-if="item.status == 4">生成失败</view>
</view>
</view>
</view>
@ -176,17 +176,16 @@
<view class="picBox" v-if="tabList[current].type == 3" v-for="(item,index) in dataList" :key="index" @click="viewDetail(item)">
<view class="p_left">
<image class="p_bg" :src="item.album.face" mode="aspectFill"></image>
<image v-if="item.status != 3" class="p_pic" src="/static/img/user/ing.png" mode="widthFix"></image>
<image v-if="item.status != 2" class="p_pic" src="/static/img/user/ing.png" mode="widthFix"></image>
</view>
<view class="p_center">
<view class="p_title">{{item.album.title}}</view>
</view>
<view class="p_right">
<view class="distance">
<image src="/static/img/index/right.png" mode="widthFix" v-if="item.status == 3"></image>
<image src="/static/img/index/right.png" mode="widthFix" v-if="item.status == 2"></image>
<view class="ing" v-if="item.status == 1">排队中...</view>
<view class="ing" v-if="item.status == 2">生成中...</view>
<view class="ing" v-if="item.status == 2">生成失败</view>
</view>
</view>
</view>
@ -205,7 +204,7 @@
<image src="/static/img/index/right.png" mode="widthFix" v-if="item.status == 3"></image>
<view class="ing" v-if="item.status == 1">排队中...</view>
<view class="ing" v-if="item.status == 2">生成中...</view>
<view class="ing" v-if="item.status == 2">生成失败</view>
<view class="ing" v-if="item.status == 4">生成失败</view>
</view>
</view>
</view>
@ -325,11 +324,15 @@ export default {
_this.getSceneMenu();
//
_this.getPortraitList();
},
onLoad() {
var _this =this;
setTimeout(function(res){
_this.tabChange({index:0});
},1000);
},
onReachBottom () {
@ -469,7 +472,7 @@ export default {
}
else
{
Data[index].merge_thumbnail = '/static/img/user/pic_bg.png';
Data[index].merge_thumbnail = _this.$api.ossurl(item.users_image);
}
break;
@ -569,32 +572,79 @@ export default {
viewDetail(item){
var _this =this;
var type = _this.tabList[_this.current].type;
if(item.status != 3)
{
_this.$com.showError('照片生成中,请等待');
return;
}
var status = item.status;
switch(type)
{
case 1:
uni.navigateTo({
url:'/pages/user/photo/merge?url='+encodeURIComponent(_this.$api.ossurl(item.merge_image)),
})
//1234
switch(item.status)
{
case 1:
_this.$com.showError('照片排队中,请等待');
return;
break;
case 2:
_this.$com.showError('照片生成中,请等待');
return;
break;
}
uni.navigateTo({
url:'/pages/user/photo/merge?url='+encodeURIComponent(_this.$api.ossurl(item.merge_image)),
})
break;
case 2:
uni.navigateTo({
url:'/pages/user/photo/color?url='+encodeURIComponent(_this.$api.ossurl(item.merge_image)),
})
//1234
switch(item.status)
{
case 1:
_this.$com.showError('照片排队中,请等待');
return;
break;
case 2:
_this.$com.showError('照片生成中,请等待');
return;
break;
}
uni.navigateTo({
url:'/pages/user/photo/color?url='+encodeURIComponent(_this.$api.ossurl(item.merge_image)),
})
break;
case 3:
//12
switch(item.status)
{
case 1:
_this.$com.showError('照片排队中,请等待');
return;
break;
}
uni.navigateTo({
url:'/pages/user/photo/ai?id='+item.id,
})
break;
case 4:
uni.navigateTo({
url:'/pages/user/photo/cartoon?id='+item.id,
})
//1234
switch(item.status)
{
case 1:
_this.$com.showError('照片排队中,请等待');
return;
break;
case 2:
_this.$com.showError('照片生成中,请等待');
return;
break;
}
uni.navigateTo({
url:'/pages/user/photo/cartoon?id='+item.id,
})
break;
}
},

@ -1,5 +1,30 @@
<template>
<view>
<view class="container">
<view class="imgList">
<!--如果是多个就用imgBox-->
<view class="imgBox" v-for="(item,index) in info.album_series" :key="index">
<image :src="item.merge_image" mode="aspectFill"></image>
</view>
</view>
<view class="btnList">
<view class="btnBox a1">
<view class="btnImg">
<image src="/static/img/user/delete.png" mode="widthFix"></image>
</view>
<view class="btnTxt" @click="deletePic">删除照片</view>
</view>
<view class="btnBox a2">
<view class="btnImg">
<image src="/static/img/user/download.png" mode="widthFix"></image>
</view>
<view class="btnTxt" @click="savePic">保存到相册</view>
</view>
</view>
</view>
</template>
@ -8,15 +33,206 @@
export default {
data() {
return {
id:0,
info:'', //
}
},
onLoad(option) {
//
var _this =this;
var id = option.id;
if(_this.$com.isNull(id))
{
uni.navigateBack({
delta:1,
})
}
_this.id = id;
_this.getDetail();
},
onShow() {
var _this = this;
_this.checkAuth();
},
methods: {
//
checkAuth() {
var _this = this;
console.log('已授权---');
uni.authorize({
scope: 'scope.writePhotosAlbum',
success(res) {
console.log('已授权', res);
},
fail(err) {
uni.showModal({
title: '授权失败',
content: '请在设置界面打开存储相关权限',
success: (res) => {
if (res.confirm) {
uni.openSetting()
}
}
})
},
})
},
deletePic()
{
var _this = this;
var id = _this.id;
//api/photo_album/del
_this.$com.confirm('确认删除此次写真集吗?',function(res){
var post = {
id:id,
};
_this.$api.post('api/photo_album/del', post,function(rs){
console.log(rs);
uni.navigateBack({
delta:1,
})
});
},'提示');
},
//
savePic(){
var _this =this;
var ai_list = _this.info.album_series;
ai_list.forEach((item, index) => {
var url = item.merge_image;
uni.getSetting({
success(res) {
console.log(res.authSetting);
if(!res.authSetting['scope.writePhotosAlbum'])
{
uni.openSetting();
}
else
{
//
uni.downloadFile({
url: url,
success: downloadResult => {
if (downloadResult.statusCode === 200) {
//
uni.saveImageToPhotosAlbum({
filePath: downloadResult.tempFilePath,
success: () => {
uni.showToast({
title: '保存成功'
});
},
fail: () => {
uni.showToast({
title: '保存失败',
icon: 'none'
});
}
});
}
},
fail: () => {
uni.showToast({
title: '下载失败',
icon: 'none'
});
}
});
}
}
})
});
},
getDetail()
{
var _this = this;
var id = _this.id;
if(id == 0)
{
uni.navigateBack({
delta:1,
});
return;
}
var post = {
id:id,
};
_this.$api.get('api/photo_album/details', post,function(rs){
console.log(rs);
var Data = rs;
Data.album_series.forEach((item, index) => {
Data.album_series[index].merge_image = _this.$api.ossurl(item.merge_image);
});
_this.info = Data;
});
},
}
}
</script>
<style>
<style lang="scss">
.container{padding: 20rpx 26rpx;}
.imgList{width: 100%; height: auto;
display: flex; flex-wrap: wrap;
justify-content: space-between;
align-items: center; /* 如果需要垂直居中子元素 */
}
.imgBox{width: 340rpx; height: 440rpx; margin-bottom: 20rpx; }
.imgBox image{width: 340rpx; height: 440rpx; border-radius: 24rpx;}
.picBox{width: 660rpx; height: 770rpx; margin-top: 20rpx;margin-bottom: 20rpx; }
.picBox image{width: 660rpx; height: 770rpx; border-radius: 24rpx;}
.btnList{
width: 100%; height: 88rpx;
display: flex; flex-wrap: wrap;
justify-content: space-around; /* 使子元素在容器中均匀分布 */
align-items: center; /* 如果需要垂直居中子元素 */
}
.btnBox{
width: 340rpx; height: 88rpx;
border-radius: 44rpx;
display: flex;
}
.btnBox .btnImg{
width:126rpx ;
height: 88rpx;
}
.btnBox .btnImg image{
width:30rpx ;
height: 30rpx;
margin-top: 29rpx;
margin-left: 80rpx;
}
.btnBox .btnTxt{
width:214rpx ;
height: 88rpx;
font-weight: 700;
font-size: 30rpx;
line-height: 88rpx;
}
.a1{
background: linear-gradient( 270deg, rgba(46,87,241,0.15) 0%, rgba(131,88,246,0.15) 100%);
color:#7A74F0;
}
.a2{
background: linear-gradient( 270deg, #2E57F1 0%, #8358F6 100%);
color:#FFFFFF;
}
</style>

@ -1,5 +1,41 @@
<template>
<view>
<view class="container">
<view class="imgList">
<!--如果是多个就用imgBox-->
<!-- <view class="imgBox">
<image src="/static/img/index/pic.png" mode="aspectFill"></image>
</view>
<view class="imgBox">
<image src="/static/img/index/pic.png" mode="aspectFill"></image>
</view>
<view class="imgBox">
<image src="/static/img/index/pic.png" mode="aspectFill"></image>
</view>
<view class="imgBox">
<image src="/static/img/index/pic.png" mode="aspectFill"></image>
</view> -->
<!--如果是一个就用picBox-->
<view class="picBox">
<image :src="xurl" mode="aspectFill"></image>
</view>
</view>
<view class="btnList">
<view class="btnBox a1">
<view class="btnImg">
<image src="/static/img/user/delete.png" mode="widthFix"></image>
</view>
<view class="btnTxt" @click="deletePic">删除照片</view>
</view>
<view class="btnBox a2">
<view class="btnImg">
<image src="/static/img/user/download.png" mode="widthFix"></image>
</view>
<view class="btnTxt" @click="savePic">保存到相册</view>
</view>
</view>
</view>
</template>
@ -8,15 +44,209 @@
export default {
data() {
return {
id:0,
info:'', //
xurl:'',
}
},
onLoad(option) {
//
var _this =this;
var id = option.id;
if(_this.$com.isNull(id))
{
uni.navigateBack({
delta:1,
})
}
_this.id = id;
_this.getDetail();
},
onShow() {
var _this = this;
_this.checkAuth();
},
methods: {
//
checkAuth() {
var _this = this;
console.log('已授权---');
uni.authorize({
scope: 'scope.writePhotosAlbum',
success(res) {
console.log('已授权', res);
},
fail(err) {
uni.showModal({
title: '授权失败',
content: '请在设置界面打开存储相关权限',
success: (res) => {
if (res.confirm) {
uni.openSetting()
}
}
})
},
})
},
deletePic()
{
var _this = this;
var id = _this.id;
//api/photo_album/del
_this.$com.confirm('确认删除此张卡通风吗?',function(res){
var post = {
id:id,
};
_this.$api.post('api/photo_cartoon/del', post,function(rs){
console.log(rs);
uni.navigateBack({
delta:1,
})
});
},'提示');
},
//
savePic(){
var _this =this;
var url = _this.xurl;
uni.getSetting({
success(res) {
console.log(res.authSetting);
if(!res.authSetting['scope.writePhotosAlbum'])
{
uni.openSetting();
}
else
{
//
uni.downloadFile({
url: url,
success: downloadResult => {
if (downloadResult.statusCode === 200) {
//
uni.saveImageToPhotosAlbum({
filePath: downloadResult.tempFilePath,
success: () => {
uni.showToast({
title: '保存成功'
});
},
fail: () => {
uni.showToast({
title: '保存失败',
icon: 'none'
});
}
});
}
},
fail: () => {
uni.showToast({
title: '下载失败',
icon: 'none'
});
}
});
}
}
})
},
getDetail()
{
var _this = this;
var id = _this.id;
if(id == 0)
{
uni.navigateBack({
delta:1,
});
return;
}
var post = {
id:id,
};
_this.$api.get('api/photo_cartoon/details', post,function(rs){
console.log(rs);
var Data = rs;
if(Data.status == 3)
{
_this.xurl = _this.$api.ossurl(Data.merge_image);
}
else
{
_this.xurl = _this.$api.ossurl(Data.users_image);
}
Data.merge_image = _this.$api.ossurl(Data.merge_image);
Data.users_image = _this.$api.ossurl(Data.users_image);
_this.info = Data;
});
},
}
}
</script>
<style>
<style lang="scss">
.container{padding: 20rpx 26rpx;}
.imgList{width: 100%; height: auto;
display: flex; flex-wrap: wrap;
justify-content: space-around;
align-items: center; /* 如果需要垂直居中子元素 */
}
.imgBox{width: 340rpx; height: 440rpx; margin-bottom: 20rpx; }
.imgBox image{width: 340rpx; height: 440rpx; border-radius: 24rpx;}
.picBox{width: 660rpx; height: 770rpx; margin-top: 20rpx;margin-bottom: 20rpx; }
.picBox image{width: 660rpx; height: 770rpx; border-radius: 24rpx;}
.btnList{
width: 100%; height: 88rpx;
display: flex; flex-wrap: wrap;
justify-content: space-around; /* 使子元素在容器中均匀分布 */
align-items: center; /* 如果需要垂直居中子元素 */
}
.btnBox{
width: 340rpx; height: 88rpx;
border-radius: 44rpx;
display: flex;
}
.btnBox .btnImg{
width:126rpx ;
height: 88rpx;
}
.btnBox .btnImg image{
width:30rpx ;
height: 30rpx;
margin-top: 29rpx;
margin-left: 80rpx;
}
.btnBox .btnTxt{
width:214rpx ;
height: 88rpx;
font-weight: 700;
font-size: 30rpx;
line-height: 88rpx;
}
.a1{
background: linear-gradient( 270deg, rgba(46,87,241,0.15) 0%, rgba(131,88,246,0.15) 100%);
color:#7A74F0;
}
.a2{
background: linear-gradient( 270deg, #2E57F1 0%, #8358F6 100%);
color:#FFFFFF;
}
</style>

@ -48,6 +48,11 @@
}
},
newInfo(){
var _this =this;
if(_this.id == 0)
{
_this.$user.session('ai_face_success','');
}
uni.navigateTo({
url:'/pagesA/merge/face_1'
})

@ -291,7 +291,7 @@
var upData = {
filePath: compress_path,
fileType: 'image',
scene: 'user_max'
scene: 'user_portrait'
};
_this.$api.ossUpload(upData, function(res) {

@ -156,7 +156,7 @@
<text v-if="item.status == 2">训练中</text>
<text v-if="item.status == 4">失败</text>
</view>
<image class="imgSelect" v-if="index == selectIndex" src="/static/img/index/select.png" mode="widthFix"></image>
<image class="imgSelect" v-if="index == selectIndex && item.status == 3" src="/static/img/index/select.png" mode="widthFix"></image>
</view>
<!-- <view class="imgBox">
@ -457,7 +457,13 @@
break;
//
case 'select_show':
_this.FormData.portrait_id = _this.selectList[_this.selectIndex].id;
if(_this.selectList[_this.selectIndex].status != 3)
{
_this.$com.showError('面部档案还在生成中,请稍后选择生成');
return;
}
_this.close(key);
var FormData = _this.FormData;
console.log(FormData);

@ -275,7 +275,7 @@
var upData = {
filePath: compress_path,
fileType: 'image',
scene: 'user_max'
scene: 'user_portrait'
};
_this.$api.ossUpload(upData, function(res) {

@ -54,7 +54,7 @@
<text v-if="item.status == 2">训练中</text>
<text v-if="item.status == 4">失败</text>
</view>
<image class="imgSelect" v-if="index == selectIndex" src="/static/img/index/select.png" mode="widthFix"></image>
<image class="imgSelect" v-if="index == selectIndex && item.status == 3" src="/static/img/index/select.png" mode="widthFix"></image>
</view>
@ -242,6 +242,11 @@
//
case 'select_show':
_this.portrait_id = _this.selectList[_this.selectIndex].id;
if(_this.selectList[_this.selectIndex].status != 3)
{
_this.$com.showError('面部档案还在生成中,请稍后选择生成');
return;
}
_this.close(key);
var album_id = _this.album_id;
var portrait_id = _this.portrait_id;

Loading…
Cancel
Save