main
JING 8 months ago
parent 08430d7dfa
commit 63de68bc47
  1. 6
      App.vue
  2. 11
      pages.json
  3. 42
      pages/index/index.vue
  4. 224
      pages/user/index.vue
  5. 106
      pages/user/photo/detail.vue
  6. 203
      pages/user/photo/merge.vue
  7. 4
      pages/user/portrait/detail.vue
  8. 53
      pages/web/video.vue
  9. 140
      pagesA/color/index.vue
  10. 2
      pagesA/merge/face_1.vue
  11. 25
      pagesA/merge/index.vue
  12. BIN
      static/img/index/loading.gif
  13. BIN
      static/img/index/p_bg.png
  14. BIN
      static/img/index/upload.png

@ -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){

@ -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": "照片详情"
}

@ -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);
});
},
}
}

@ -28,7 +28,7 @@
<view class="mright">
<view class="mbItem" v-for="(item,index) in portraitList" :key="index">
<image v-if="item.can == true" :src="item.image" mode="widthFix" @click="goTo('/pages/user/archives/detail?id='+item.id)"></image>
<image v-if="item.can == false" :src="item.image" mode="widthFix"></image>
<image v-if="item.can == false" :src="item.image" mode="widthFix" @click="showShare"></image>
</view>
<!-- <view class="mbItem">
<image src="/static/img/user/have_no.png" mode="widthFix"></image>
@ -129,20 +129,24 @@
</view>
</view> -->
<view class="imgBox" v-for="(item,index) in dataList" :key="index">
<view class="p_left">
<image class="p_bg" src="/static/img/index/zj_icon.png" mode="aspectFill"></image>
</view>
<view class="p_center">
<view class="p_title">一寸照</view>
<view class="p_desc">25×35mm | 295×413px</view>
</view>
<view class="p_right">
<view class="distance">
<image src="/static/img/index/right.png" mode="widthFix"></image>
</view>
</view>
</view>
<view class="imgBox" v-for="(item,index) in dataList" :key="index" @click="viewDetail(item)">
<view class="p_left">
<image class="p_bg" src="/static/img/index/zj_icon.png" mode="aspectFill"></image>
</view>
<view class="p_center">
<view class="p_title">{{item.specs.title}}</view>
<view class="p_desc">25×35mm | 295×413px</view>
</view>
<view class="p_right">
<view class="distance">
<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>
</view>
</view>
</view>
@ -162,7 +166,21 @@
</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">
提醒
</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>
<button class="sbtnBox1 a2" open-type="share" @click="submit('tips_show')">去分享</button>
</view>
</view>
</u-popup>
</view>
</template>
@ -210,6 +228,17 @@ export default {
//
page: 1,
dataList:[],
//
tips_show: false,
content: `<p>分享给好友,好友注册登录成功即可解 </p>
<p>锁新的面部档案可生成他人的写真集</p>`,
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);
},
},
};
</script>
@ -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;
}
</style>

@ -1,106 +0,0 @@
<template>
<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="/static/img/index/pic.png" 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">删除照片</view>
</view>
<view class="btnBox a2">
<view class="btnImg">
<image src="/static/img/user/download.png" mode="widthFix"></image>
</view>
<view class="btnTxt">保存到相册</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<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; }
.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>

@ -0,0 +1,203 @@
<template>
<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="/static/img/index/pic.png" mode="aspectFill"></image>
</view> -->
<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>
<script>
export default {
data() {
return {
old_url:'',
xurl:'',
}
},
onLoad(option) {
//
var _this =this;
var url = option.url;
if(_this.$com.isNull(url))
{
uni.navigateBack({
delta:1,
})
}
_this.old_url = url;
_this.xurl = decodeURIComponent(url);
},
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;
_this.$com.showError('暂不支持删除');
},
//
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'
});
}
});
}
}
})
},
}
}
</script>
<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>

@ -58,8 +58,8 @@
<style lang="scss">
.container{padding: 20rpx 26rpx;}
.imgList{width: 100%; height: auto; display: flex; flex-wrap: wrap; justify-content: space-between;}
.imgBox{width: 130rpx; height: 130rpx; margin-top: 10rpx; }
.imgList{width: 100%; height: auto; display: flex; flex-wrap: wrap; gap:12rpx;}
.imgBox{width: 130rpx; height: 130rpx; margin-top: 10rpx;}
.imgBox image{width: 140rpx; height: 140rpx;}
.newBtn{

@ -1,53 +0,0 @@
<template>
<view class="container">
<view class="videoBox">
<video id="myVideo" :style="{width: '100%', height: '100%'}"
:src="video_src" @error="videoErrorCallback" :autoplay="false" controls></video>
</view>
</view>
</template>
<script>
export default {
data() {
return {
old_url:'',
video_src:'',
}
},
onLoad(option) {
//
var _this =this;
var url = option.url;
var title = option.title;
if(_this.$com.isNull(url))
{
uni.navigateBack({
delta:1,
})
}
_this.old_url = url;
_this.video_src = decodeURIComponent(url);
if(!_this.$com.isNull(title))
{
var pageTitle = title;
uni.setNavigationBarTitle({
title:pageTitle,
})
}
},
methods: {
videoErrorCallback(e)
{
console.log(e);
},
}
}
</script>
<style lang="scss">
page{ height:100%; width: 100%;}
.container{width: 100%; height: 100%;}
.videoBox{ width: 100%; height: 100%;}
</style>

@ -4,10 +4,20 @@
<view class="topSpace" :style="'margin-top:-'+margin_top+'px'"></view>
<view class="uploadBox">
<view class="uploadBtn">
<view class="uploadBtn_img">
<image src="/static/img/index/add.png" mode="widthFix"></image>
</view>
<view class="uploadBtn_txt">点击上传人物换背景</view>
<u-upload
:fileList="uploadImg"
@afterRead="afterRead"
@delete="deletePic"
name="uploadPic"
width="400rpx"
height="500rpx"
:sizeType="['compressed']"
:deletable="true"
:maxCount="1"
:previewFullImage="false"
>
<image src="/static/img/index/upload.png" mode="widthFix"></image>
</u-upload>
</view>
</view>
<view class="uploadTips" @click="tips">
@ -17,35 +27,17 @@
<view class="colorBox">
<view class="title">选择背景颜色</view>
<scroll-view class="scrollBox" scroll-x="true" @scroll="scroll" scroll-left="0">
<view class="color on" style="background-color: blue;">
<image src="/static/img/index/duigou.png" mode="widthFix"></image>
<view v-for="(item,index) in colorList" :key="index" :class="'color '+(index == selectIndex ? 'on':'') " :style="'background-color:'+item.back_color+';'" @click="selectColor(index)">
<image v-if="index == selectIndex" src="/static/img/index/duigou.png" mode="widthFix"></image>
</view>
<view class="color" style="background-color:green;">
</view>
<view class="color" style="background-color:greenyellow;">
</view>
<view class="color" style="background-color:darkred;">
</view>
<view class="color" style="background-color:red;">
</view>
<view class="color" style="background-color: blueviolet;">
</view>
<view class="color" style="background-color: yellowgreen;">
</view>
<view class="color" style="background-color:green;">
</view>
<view class="color" style="background-color:greenyellow;">
</view>
<view class="color" style="background-color:darkred;">
</view>
<view class="color" style="background-color:red;">
</view>
</scroll-view>
<view class="btnBox no">
<view class="btnBox no" v-if="uploadImg.length == 0">
保存
</view>
<view class="btnBox yes">
<view class="btnBox yes" v-else @click="submit">
保存
</view>
<view class="num">
@ -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);
});
},
}
}
</script>
@ -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;}

@ -227,7 +227,7 @@
uni.showModal({
title: '授权失败',
content: '请在设置界面打开摄像头关权限',
content: '请在设置界面打开摄像头关权限',
success: (res) => {
if (res.confirm) {
uni.openSetting()

@ -148,9 +148,14 @@
<view class="popupDesc">
<scroll-view class="scrollBox" scroll-x="true" @scroll="scroll" scroll-left="0">
<view class="imgBox" v-for="(item,index) in selectList" :key="index" @click="selectPortrait(index)">
<image class="imgBg" :src="item.model_image_thumbnail || '/static/img/user/user.png'" mode="widthFix" v-if="item.status == 3"></image>
<image class="imgBg" src="/static/img/index/waiting.png" mode="widthFix" v-if="item.status != 3"></image>
<view class="imgBox" v-for="(item,index) in selectList" :key="index" @click="selectPortrait(index,item)">
<image class="imgBg" :src="item.model_image_thumbnail" mode="widthFix"></image>
<image class="imgLoadingImg" src="/static/img/index/loading.gif" mode="widthFix" v-if="item.status != 3"></image>
<view class="imgLoadingTxt" v-if="item.status != 3">
<text v-if="item.status == 1">排队中</text>
<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>
</view>
@ -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%);

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Loading…
Cancel
Save