diff --git a/App.vue b/App.vue index 1bdb42d..f66b000 100644 --- a/App.vue +++ b/App.vue @@ -65,10 +65,8 @@ console.log(rs); _this.$user.session('userInfo',rs); _this.$user.session('user_id',rs.id); - if(!_this.$com.isNull(rs.token)) - { - _this.$user.session('token',rs.token); - } + _this.$user.session('token',rs.token); + }); }, fail:function(rs){ diff --git a/pages.json b/pages.json index d25e3a2..485261c 100644 --- a/pages.json +++ b/pages.json @@ -37,20 +37,13 @@ } }, { - "path": "pages/web/video", - "style": { - "navigationBarTitleText": "视频", - "enablePullDownRefresh": false - } - }, - { - "path": "pages/user/archives/detail", + "path": "pages/user/portrait/detail", "style": { "navigationBarTitleText": "面部档案" } }, { - "path": "pages/user/photo/detail", + "path": "pages/user/photo/merge", "style": { "navigationBarTitleText": "照片详情" } diff --git a/pages/index/index.vue b/pages/index/index.vue index 40d7a11..c642f0a 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -115,6 +115,9 @@ // } ], + //场景 + sceneList:[], + specs_list:[],//证件 album_list:[],//写真 cartoon_list:[],//卡通 @@ -134,7 +137,8 @@ var _this = this; //banner信息 _this.getBannerList(); - + //场景 + _this.getSceneMenu(); //热门 _this.getHotList(); //延时1秒请求,保证成功 @@ -144,16 +148,26 @@ }, onShareAppMessage() { - return { - title: '智能拍照合成-首页', - path: uni.$u.page(), - } + var _this = this; + var userInfo = _this.$user.session('userInfo'); + var str = !_this.$com.isNull(userInfo.invite_code) ? '?invite_code='+userInfo.invite_code :''; + return { + title: '智能拍照合成', + content:'证件照合成,换色,AI写真,卡通画风', + imageUrl:'', + path: '/pages/index/index'+str, + } }, onShareTimeline() { - return { - title: '智能拍照合成-首页', - path: uni.$u.page(), - } + var _this = this; + var userInfo = _this.$user.session('userInfo'); + var str = !_this.$com.isNull(userInfo.invite_code) ? '?invite_code='+userInfo.invite_code :''; + return { + title: '智能拍照合成', + content:'证件照合成,换色,AI写真,卡通画风', + imageUrl:'', + path: '/pages/index/index'+str, + } }, methods: { getNavHeight(e) { @@ -266,6 +280,16 @@ url:'/pagesA/merge/index?id='+item.id+'&type='+item.type+'&ilk='+item.ilk, }) }, + //合照场景 + getSceneMenu(){ + var _this =this; + _this.$api.get('api/photo/scene_list', {},function(res){ + console.log('场景',res); + var sceneList = res; + _this.sceneList = sceneList; + _this.$user.session('sceneList',sceneList); + }); + }, } } diff --git a/pages/user/index.vue b/pages/user/index.vue index d71ab02..467878c 100644 --- a/pages/user/index.vue +++ b/pages/user/index.vue @@ -28,7 +28,7 @@ - + - - - - - - 一寸照 - 25×35mm | 295×413px - - - - - - - + + + + + + {{item.specs.title}} + 25×35mm | 295×413px + + + + + 排队中... + 生成中... + 生成失败 + + + + @@ -162,7 +166,21 @@ - + + + + 提醒 + + + + + + + 取消 + + + + @@ -210,6 +228,17 @@ export default { //分页 page: 1, dataList:[], + + //弹窗 + tips_show: false, + content: `

分享给好友,好友注册登录成功即可解

+

锁新的面部档案,可生成他人的写真集

`, + style: { + // 字符串的形式 + + p: 'font-weight: 400;font-size: 28rpx;color: #555555;line-height: 60rpx;', + + }, }; }, onPageScroll(e) { @@ -223,13 +252,14 @@ export default { } }, onReady: function (res) { - + var _this = this; + console.log('/pages/user/photo/merge?url='+encodeURIComponent('https://resourcedev.aicverse.com/ai_tour/spot_template/2.jpg')); }, onShow() { var _this =this; _this.getUserInfo(); //场景信息 - //_this.getSceneMenu(); + _this.getSceneMenu(); //面部档案 _this.getPortraitList(); _this.tabChange({index:0}); @@ -242,16 +272,26 @@ export default { }, onShareAppMessage() { - return { - title: '智能拍照合成-我的', - path: uni.$u.page(), - } + var _this = this; + var userInfo = _this.$user.session('userInfo'); + var str = !_this.$com.isNull(userInfo.invite_code) ? '?invite_code='+userInfo.invite_code :''; + return { + title: '智能拍照合成', + content:'证件照合成,换色,AI写真,卡通画风', + imageUrl:'', + path: '/pages/index/index'+str, + } }, onShareTimeline() { - return { - title: '智能拍照合成-我的', - path: uni.$u.page(), - } + var _this = this; + var userInfo = _this.$user.session('userInfo'); + var str = !_this.$com.isNull(userInfo.invite_code) ? '?invite_code='+userInfo.invite_code :''; + return { + title: '智能拍照合成', + content:'证件照合成,换色,AI写真,卡通画风', + imageUrl:'', + path: '/pages/index/index'+str, + } }, methods:{ getNavHeight(e) { @@ -385,6 +425,11 @@ export default { { rs.forEach((item, index) => { baseList[index].id = item.id; + if(!_this.$com.isNull(item.model_image_thumbnail)) + { + baseList[index].image = _this.$api.ossurl(item.model_image_thumbnail); + } + }) } _this.portraitList = baseList; @@ -393,8 +438,6 @@ export default { }, createNew(){ var _this =this; - console.log(e); - _this.current = e.index; var type = _this.tabList[_this.current].type; switch(type) { @@ -421,7 +464,55 @@ export default { } }, - + viewDetail(item){ + var _this =this; + var type = _this.tabList[_this.current].type; + if(item.status != 3) + { + _this.$com.showError('照片生成中,请等待'); + return; + } + switch(type) + { + case 1: + uni.navigateTo({ + url:'/pages/user/photo/merge?url='+encodeURIComponent(_this.$api.ossurl(item.merge_image)), + }) + break; + case 2: + uni.navigateTo({ + url:'/pagesA/color/index', + }) + break; + case 3: + uni.navigateTo({ + url:'/pagesA/photo/photo_1', + }) + break; + case 4: + uni.navigateTo({ + url:'/pagesA/photo/cartoon_1', + }) + break; + } + }, + //显示分享弹窗1 + showShare(){ + this.tips_show = true; + }, + open(key) { + console.log('open',key); + }, + close(key) { + var _this = this; + _this[key] = false; + + }, + submit(key){ + var _this =this; + _this.close(key); + + }, }, }; @@ -485,7 +576,7 @@ height: 50rpx; padding-left: 20rpx; } .mright{width: 50%; height: 160rpx; display: flex;} - .mbItem{ width: 80rpx; height: 80rpx; margin: 40rpx auto;} + .mbItem{ width: 80rpx; height: 80rpx; margin: 40rpx auto; overflow: hidden; border-radius: 50%;} .mbItem image{width: 80rpx; height: 80rpx; } .nowENV{ width: 200rpx; height: 60rpx; margin: 10rpx auto; text-align: center;} @@ -597,4 +688,77 @@ height: 50rpx; line-height: 34rpx; margin: 65rpx 24rpx auto auto; } + + + + .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; /* 如果需要垂直居中子元素 */ + } + + .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; + + } + + .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: auto; + padding: 0rpx 60rpx; + } + + + .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; + } + + diff --git a/pages/user/photo/detail.vue b/pages/user/photo/detail.vue deleted file mode 100644 index 04aaf2e..0000000 --- a/pages/user/photo/detail.vue +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - diff --git a/pages/user/photo/merge.vue b/pages/user/photo/merge.vue new file mode 100644 index 0000000..ebbcdcc --- /dev/null +++ b/pages/user/photo/merge.vue @@ -0,0 +1,203 @@ + + + + + + diff --git a/pages/user/archives/detail.vue b/pages/user/portrait/detail.vue similarity index 94% rename from pages/user/archives/detail.vue rename to pages/user/portrait/detail.vue index 661126c..c836ab0 100644 --- a/pages/user/archives/detail.vue +++ b/pages/user/portrait/detail.vue @@ -58,8 +58,8 @@ diff --git a/pagesA/color/index.vue b/pagesA/color/index.vue index 602d024..481f903 100644 --- a/pagesA/color/index.vue +++ b/pagesA/color/index.vue @@ -4,10 +4,20 @@ - - - - 点击上传人物换背景 + + + @@ -17,35 +27,17 @@ 选择背景颜色 - - + + - - - - - - - - - - - - - - - - - - - - + + - + 保存 - + 保存 @@ -99,10 +91,18 @@ p: 'font-weight: 400;font-size: 28rpx;color: #555555;line-height: 60rpx;', }, - + + uploadImg: [], + //颜色 + colorList : [], + selectIndex:0, } }, + onLoad() { + var _this = this; + _this.getColorList(); + }, onPageScroll(e) { if (e.scrollTop > 50) { this.theme = 'white'; @@ -135,6 +135,68 @@ yes(){ this.close(); }, + + // 删除图片 + deletePic(event) { + var _this = this; + _this.uploadImg = []; + }, + // 新增图片 + afterRead(event) { + + var _this = this + console.log('event',event); + var edetail = event.file.thumb; + if (edetail.indexOf('http://tmp') != -1 || edetail.indexOf('wxfile://tmp') != -1) + { + + //上传 + var upData = {filePath:edetail,fileType:'image',scene:'user_max'}; + _this.$api.ossUpload(upData,function(res){ + console.log('ossUpload success',res); + var d = res.data; + + _this.uploadImg = [{url:_this.$api.ossurl(d.file_url)}]; + + + },function(err){ + console.log('ossUpload fail',err); + }); + + + + } + + }, + getColorList() + { + var _this = this; + var post ={}; + _this.$api.get('api/color/list', post, function(res) { + + var d = res; + console.log(d); + _this.colorList = d; + _this.selectIndex = 0; + + }); + }, + selectColor(index) + { + var _this = this; + _this.selectIndex = index; + }, + submit(){ + + var _this = this; + var post = {}; + _this.$api.post('api/color/append', post,function(rs){ + console.log(rs); + + }); + }, + + } } @@ -151,18 +213,12 @@ page{background-color: #F5F6FB;} margin:200rpx auto auto auto; } .uploadBtn{ width: 100%; height: auto;} -.uploadBtn_img{ width: 100%; height: auto; text-align: center;} -.uploadBtn_img image{ width: 96rpx; height: 96rpx; margin: 160rpx auto auto auto; display: inline-block;} -.uploadBtn_txt{ - width: 100%; - height: auto; - font-weight: 400; - font-size: 30rpx; - color: #333333; - line-height: 44rpx; - text-align: center; -} + +.uploadBtn .u-upload{width: 400rpx; height: 500rpx; text-align: center; overflow: hidden;} +.uploadBtn .u-upload image{ width: 400rpx; height: 500rpx; margin: 0rpx auto; display: inline-block;} + .uploadTips{ width: 100%; height: 50rpx; line-height: 50rpx; text-align: center;} + .uploadTips text{ font-weight: 400; font-size: 24rpx; @@ -202,11 +258,11 @@ page{background-color: #F5F6FB;} border-radius: 50%; display: inline-block; margin-left: 30rpx; - border: 8rpx solid #FFFFFF; + border: 8rpx solid #E7E7EF; overflow: hidden; } .on{ - border-color:#E7E7EF; + } .on image{width: 50rpx; height:auto; margin: 12rpx 0rpx 0rpx 12rpx;} diff --git a/pagesA/merge/face_1.vue b/pagesA/merge/face_1.vue index 7c9461d..753964d 100644 --- a/pagesA/merge/face_1.vue +++ b/pagesA/merge/face_1.vue @@ -227,7 +227,7 @@ uni.showModal({ title: '授权失败', - content: '请在设置界面打开相摄像头关权限', + content: '请在设置界面打开摄像头相关权限', success: (res) => { if (res.confirm) { uni.openSetting() diff --git a/pagesA/merge/index.vue b/pagesA/merge/index.vue index 9783de3..07f3469 100644 --- a/pagesA/merge/index.vue +++ b/pagesA/merge/index.vue @@ -148,9 +148,14 @@ - - - + + + + + 排队中 + 训练中 + 失败 + @@ -528,8 +533,8 @@ { var selectList = d; selectList.forEach((item, index) => { - selectList[index].model_image = _this.$api.ossurl(item.model_image); - selectList[index].model_image_thumbnail = _this.$api.ossurl(item.model_image_thumbnail); + selectList[index].model_image = item.model_image ? _this.$api.ossurl(item.model_image): '/static/img/index/p_bg.png'; + selectList[index].model_image_thumbnail = item.model_image_thumbnail ? _this.$api.ossurl(item.model_image_thumbnail) : '/static/img/index/p_bg.png'; }); _this.selectList = selectList; _this.selectIndex = 0; @@ -538,10 +543,14 @@ }); }, //选择面部档案 - selectPortrait(index) + selectPortrait(index,item) { var _this =this; - _this.selectIndex = index; + if(item.status == 3) + { + _this.selectIndex = index; + } + }, @@ -711,6 +720,8 @@ } .imgBox{width: 160rpx; height: 160rpx; position: relative; margin: 0rpx 0rpx 0rpx 20rpx; display: inline-block; overflow: hidden;} .imgBox .imgBg{width: 160rpx; height: 160rpx; border-radius: 20rpx; position: absolute; left: 0; top: 0;} +.imgBox .imgLoadingImg{ width: 60rpx; height: 60rpx;position: absolute; left: 50rpx; top: 40rpx;} +.imgBox .imgLoadingTxt{ width: 100%; height: 40rpx; text-align: center; color:#FFFFFF; font-size: 24rpx;position: absolute; top: 100rpx;} .imgBox .imgSelect{width: 40rpx; height: 34rpx;position: absolute; bottom: 0; right: 0; z-index: 5;} .a1{ background: linear-gradient( 270deg, rgba(46,87,241,0.15) 0%, rgba(131,88,246,0.15) 100%); diff --git a/static/img/index/loading.gif b/static/img/index/loading.gif new file mode 100644 index 0000000..8600a03 Binary files /dev/null and b/static/img/index/loading.gif differ diff --git a/static/img/index/p_bg.png b/static/img/index/p_bg.png new file mode 100644 index 0000000..00e32d0 Binary files /dev/null and b/static/img/index/p_bg.png differ diff --git a/static/img/index/upload.png b/static/img/index/upload.png new file mode 100644 index 0000000..c7fe3c4 Binary files /dev/null and b/static/img/index/upload.png differ