From cfdbe2e5c8b9b99b1c62c102d22ddbe5aa0ca04d Mon Sep 17 00:00:00 2001 From: JING Date: Mon, 5 Aug 2024 12:28:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pagesA/color/index.vue | 33 ++++++++++++++++++++++++++++----- 1 file changed, 28 insertions(+), 5 deletions(-) diff --git a/pagesA/color/index.vue b/pagesA/color/index.vue index 481f903..32dca9b 100644 --- a/pagesA/color/index.vue +++ b/pagesA/color/index.vue @@ -42,8 +42,8 @@ 剩余生成次数 - 1 - /30 + {{color_has}} + /{{all}} @@ -93,10 +93,14 @@ }, uploadImg: [], + users_image:'', //颜色 colorList : [], selectIndex:0, - + + + color_has:0, //已生成 + all:0, //可生成总数 } }, onLoad() { @@ -112,6 +116,13 @@ this.theme = 'blue'; } }, + onShow() { + var _this = this; + var sceneList = _this.$user.session('sceneList'); + var all = sceneList[1].number; + console.log(all); + _this.all = all; + }, methods: { getNavHeight(e) { this.margin_top += e; @@ -157,7 +168,7 @@ var d = res.data; _this.uploadImg = [{url:_this.$api.ossurl(d.file_url)}]; - + _this.users_image = d.file_url; },function(err){ console.log('ossUpload fail',err); @@ -168,6 +179,15 @@ } }, + ///api/userInfo + getUserInfo(){ + + var _this = this; + _this.$api.get('/api/userInfo',{},function(res){ + _this.color_has = res.attach.photo.back_color_number; + + }); + }, getColorList() { var _this = this; @@ -189,7 +209,10 @@ submit(){ var _this = this; - var post = {}; + var post = { + back_color_id:_this.colorList[_this.selectIndex].id, + users_image:_this.users_image, + }; _this.$api.post('api/color/append', post,function(rs){ console.log(rs);