main
JING 8 months ago
parent 63de68bc47
commit cfdbe2e5c8
  1. 33
      pagesA/color/index.vue

@ -42,8 +42,8 @@
</view> </view>
<view class="num"> <view class="num">
<text>剩余生成次数</text> <text>剩余生成次数</text>
<text class="use">1</text> <text class="use">{{color_has}}</text>
<text>/30</text> <text>/{{all}}</text>
</view> </view>
</view> </view>
@ -93,10 +93,14 @@
}, },
uploadImg: [], uploadImg: [],
users_image:'',
// //
colorList : [], colorList : [],
selectIndex:0, selectIndex:0,
color_has:0, //
all:0, //
} }
}, },
onLoad() { onLoad() {
@ -112,6 +116,13 @@
this.theme = 'blue'; 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: { methods: {
getNavHeight(e) { getNavHeight(e) {
this.margin_top += e; this.margin_top += e;
@ -157,7 +168,7 @@
var d = res.data; var d = res.data;
_this.uploadImg = [{url:_this.$api.ossurl(d.file_url)}]; _this.uploadImg = [{url:_this.$api.ossurl(d.file_url)}];
_this.users_image = d.file_url;
},function(err){ },function(err){
console.log('ossUpload fail',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() getColorList()
{ {
var _this = this; var _this = this;
@ -189,7 +209,10 @@
submit(){ submit(){
var _this = this; 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){ _this.$api.post('api/color/append', post,function(rs){
console.log(rs); console.log(rs);

Loading…
Cancel
Save