123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- const Parse = getApp().Parse;
- const company = getApp().globalData.company;
- Component({
-
- properties: {
- objectId: '',
- type: ''
- },
-
- data: {
-
- images: [],
- imageclass: '',
-
- isgood: false,
- isclick: false,
-
- cicleList: []
- },
- lifetimes: {
- detached: function () {
-
- },
- attached: async function () {
-
- this.getcircle()
- },
- },
-
- methods: {
- onImageLoad: function (e) {
- const {
- width,
- height
- } = e.detail;
- console.log('11', e.detail);
- const imageClass = width > height ? 'image-landscape' : 'image-portrait';
- this.setData({
- imageclass: imageClass
- });
- },
- previewImage: function (e) {
- const index = e.currentTarget.dataset.index;
- const images = this.data.images;
- wx.previewImage({
- current: images[index],
- urls: images
- });
- },
- gourl(e) {
- const url = e.currentTarget.dataset.url
- const objectId = e.currentTarget.dataset.id
- wx.navigateTo({
- url: `${url}?id=` + objectId
- });
- },
- showgood() {
- this.setData({
- isgood: !this.data.isgood
- })
- console.log(this.data.isgood);
- },
- isclick() {
- this.setData({
- isclick: !this.data.isclick
- })
- setTimeout(() => {
- this.showgood()
- }, 400)
- console.log(this.data.isclick);
- },
- async getcircle() {
- console.log('数据',this.data.objectId,this.data.type);
- let AIMomentquery = new Parse.Query('AIMoment');
- AIMomentquery.equalTo('company', company);
- AIMomentquery.equalTo('objectId', this.data.objectId);
- AIMomentquery.equalTo('isVisible', true);
- AIMomentquery.include('profile.user');
- AIMomentquery.include('profile');
- AIMomentquery.notEqualTo('isDeleted', true)
- let P = await AIMomentquery.find();
- let AIMoment1List = P.map(item => item.toJSON());
- this.setData({
- cicleList: AIMoment1List,
- })
- this.setData({
- images: this.data.cicleList[0].images
- })
- console.log('动态', this.data.cicleList);
- console.log('动态', this.data.type);
- }
- }
- })
|