release.js 15.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
// pages/release/release.js
const app = getApp();
Page({

    /**
     * 页面的初始数据
     */
    data: {
        textareavalue: '',
        images: [],
        currentPortalOne: 0,
        type: '请选择',
        showPicker: false,
        value: [0,0,0],
        wx_number: '',
        judging: true
    },
//文本输入
    textContent(e) {
        this.setData({
            textareavalue: e.detail.value
        })
    },
    // 获取一级分类
    getPortalOne() {
        let self = this;
        let url = '/home/home/form_serve';
        let header = {
            "XX-Token": wx.getStorageSync('token')
        };
        app.post(url,{},header).then((res) => {
            // console.log('一级分类', res);
            self.setData({
                portal_one: res.category,
                // type: res[0].name,
                // postImg: postImg
            });
        }).then(function () {
            self.getPortalTwo();
        })
    },
    // 获取二级分类
    getPortalTwo() {
        let self = this;
        let url = '/home/home/form_serve';
        let header = {
            "XX-Token": wx.getStorageSync('token')
        };
        let params = {
            id: self.data.portal_one[self.data.currentPortalOne].id,
        };
        app.post(url,params,header).then((res) => {
            // console.log('二级分类', res);
            self.setData({
                portal_two: res,
                // postImg: postImg
            });
            if(res.msg == '已经没有子类了') {
                const type = self.data.type.join('-');
                self.setData({
                   type: type
                });
                // console.log(self.data.type);
            }
        }).then(function () {
            if(self.data.currentPortalOne !== 6 && self.data.currentPortalOne !== 7) {
                self.getPortalThree()
            }
        })
    },
    getPost(url,params,header) {
        app.post(url,params,header).then((res) => {
            console.log('三级分类', res);
            this.setData({
                portal_three: res,
                // postImg: postImg
            });
        })
    },
    // 获取三级分类
    getPortalThree() {
        let self = this;
        let url = '/home/home/form_serve';
        let header = {
            "XX-Token": wx.getStorageSync('token')
        };
        if(self.data.currentPortalOne === 8) {
            let params = {
                id: self.data.portal_two.category[self.data.value[0]].id,
            };
            self.getPost(url,params,header)
        }else {
            if(self.data.currentPortalOne === 2 || self.data.currentPortalOne === 3) {
                let params = {
                    id: self.data.portal_two.category[self.data.value[0]].id,
                };
                console.log(('2-3'));
                self.getPost(url,params,header)
            }else {
                let params = {
                    id: self.data.portal_two.category[self.data.value[1]].id,
                };
                self.getPost(url,params,header)
            }
        }
    },
    //点击一级分类
    choosePortalOne(e) {
        const self = this;
        const current = e.currentTarget.dataset.index;
        self.setData({
            type: '请选择',
            value: [0,0,0]
        });
        self.setData({currentPortalOne: current});
        self.getPortalTwo();
        const judging = (current !== 2 && current !== 3 && current !== 4 && current !== 5)?true:false
        self.setData({judging: judging})
    },
    // 滑动picker
    bindChangePicker(e) {
        console.log(e);
        if(this.data.currentPortalOne === 2 || this.data.currentPortalOne === 3) {
            if(e.detail.value[0] !== this.data.value[0] || e.detail.value[0] === this.data.value[0]) {
                console.log('id',this.data.portal_two.category[this.data.value[0]].id);
                this.getPortalThree()
            }
        }
        this.setData({value: e.detail.value});
        console.log(e.detail.value);
        if(this.data.currentPortalOne !== 6 && this.data.currentPortalOne !== 7 &&
            this.data.currentPortalOne !== 2 && this.data.currentPortalOne !== 3
        ) {
            this.getPortalThree()
        }
        // if(this.data.currentPortalOne === 2 || this.data.currentPortalOne === 3) {
        //     console.log(this.data.portal_two.category[this.data.value[0]].name);
        //     var name = this.data.portal_two.category[this.data.value[0]].name;
        //     if(name === '招租' || name === '求租') {
        //         console.log('调接口');
        //         this.getPortalThree()
        //     }
        // }
    },
    //确定提交picker
    submitPicker() {
        this.data.type = [];
        let typeArr = [];
        // this.data.portal_two.select.length >0 && this.data.portal_three.category.length >0
        if((this.data.currentPortalOne === 0 || this.data.currentPortalOne === 1) && this.data.portal_three.category.length >0) {
            console.log('0-1');
            typeArr[0] = this.data.portal_two.select[this.data.value[0]].name;
            typeArr[1] = this.data.portal_two.category[this.data.value[1]].name;
            typeArr[2] = this.data.portal_three.category[this.data.value[2]].name;
        }else if(this.data.currentPortalOne === 2 || this.data.currentPortalOne === 3 ||
            this.data.currentPortalOne === 4 || this.data.currentPortalOne === 5) {
            console.log('2-5');
            typeArr[1] = this.data.portal_two.category[this.data.value[0]].name;
            typeArr[2] = this.data.portal_three.category[this.data.value[1]].name;
        }else if(this.data.currentPortalOne === 8){
            typeArr[0] = this.data.portal_two.category[this.data.value[0]].name;
            typeArr[1] = this.data.portal_three.category[this.data.value[1]].name;
        }else if(this.data.portal_three.category.length ===0) {
            //1-5分类里没有三级分类时
            typeArr[0] = this.data.portal_two.select[this.data.value[0]].name;
            typeArr[1] = this.data.portal_two.category[this.data.value[1]].name;
        }else {
            console.log('6-7');
            typeArr[0] = this.data.portal_two.category[this.data.value[0]].name;
        }

        if(this.data.currentPortalOne === 8) {
            this.setData({
                last_category_id: this.data.portal_three.category[this.data.value[1]].id
            });
            // console.log('8---last_category_id',this.data.last_category_id);
        }else if(this.data.currentPortalOne === 6 || this.data.currentPortalOne === 7) {
            const last_category_id = this.data.portal_two.category[this.data.value[0]].id;
            // console.log('6/7---last_category_id',last_category_id);
            this.setData({
                last_category_id: this.data.portal_two.category[this.data.value[0]].id
            });

        }else {
            if(this.data.portal_three.category.length ===0) {//"其他"分类下边没有子类时
                this.setData({
                    last_category_id:this.data.portal_two.category[this.data.value[1]].id,
                    select_id: this.data.portal_two.select[this.data.value[0]].id
                });
            }else if(this.data.currentPortalOne === 2||this.data.currentPortalOne === 3||
                this.data.currentPortalOne === 4|| this.data.currentPortalOne === 5){
                this.setData({
                    last_category_id:this.data.portal_three.category[this.data.value[1]].id,
                    select_id: this.data.portal_two.select[this.data.value[0]].id
                });
            }else {
                this.setData({
                    last_category_id:this.data.portal_three.category[this.data.value[2]].id,
                    select_id: this.data.portal_two.select[this.data.value[0]].id
                });
            }
        }
        this.setData({
            type: typeArr.join(' '),
            showPicker: false,
        });
    },
    showPicker() {
        this.setData({
            showPicker: !this.data.showPicker,
            value: [0,0,0]
        });
        if(this.data.currentPortalOne !== 6 && this.data.currentPortalOne !== 7) {
            this.getPortalThree()
        }
    },
    closePicker() {
        this.setData({showPicker: false})
    },
    //上传图片
    choose(e) { //这里是选取图片的方法
        let that = this;
        wx.chooseImage({
            count: 9, //最多可以选择的图片总数
            sizeType: ['compressed'], // 可以指定是原图还是压缩图,默认二者都有
            sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
            success: function(res) {
                // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
                let tempFilePaths = res.tempFilePaths;
                //启动上传等待中...
                wx.showToast({
                    title: '正在上传...',
                    icon: 'loading',
                    mask: true,
                    duration: 10000
                })
                let token = wx.getStorageSync('token');
                let uploadImgCount = 0;
                for (let i = 0, h = tempFilePaths.length; i < h; i++) {
                    wx.uploadFile({
                        url: 'http://informationxcx.w.bronet.cn/api/home/home/upload',
                        filePath: tempFilePaths[i],
                        name: 'file',
                        formData: {
                            'imgIndex': i
                        },
                        header: {
                            'content-type': 'application/x-www-form-urlencoded',
                            'XX-Token': token,
                            'XX-Device-Type': 'wxapp',
                        },
                        success: function(res) {
                            uploadImgCount++;
                            let data = JSON.parse(res.data);
                            // console.log('data',data);
                            if (data.code == 20000) {
                                //服务器返回格式: { "Catalog": "testFolder", "FileName": "1.jpg", "Url": "https://test.com/1.jpg" }
                                let images = that.data.images;

                                images.push(data.msg);
                                that.setData({
                                    images: images
                                });
                                // console.log(images)
                                //如果是最后一张,则隐藏等待中
                                if (uploadImgCount == tempFilePaths.length) {
                                    wx.hideToast();
                                }
                            } else {
                                wx.hideToast();
                                wx.showModal({
                                    title: '提示',
                                    content: data.msg,
                                    showCancel: false
                                })
                            }

                        },
                        fail: function(res) {
                            wx.hideToast();
                            wx.showModal({
                                title: '错误提示',
                                content: '上传图片失败',
                                showCancel: false,
                                success: function(res) {}
                            })
                        }
                    });
                }
            }
        });
    },
    // 删除图片
    deleteImg(e) {
        var imgs = this.data.images;
        var index = e.currentTarget.dataset.index;
        imgs.splice(index, 1);
        this.setData({
            images: imgs
        });
    },

    // 预览图片
    previewImg: function (e) {
        //获取当前图片的下标
        var index = e.currentTarget.dataset.index;
        //所有图片
        var imgs = this.data.images;
        wx.previewImage({
            //当前显示图片
            current: imgs[index],
            //所有图片
            urls: imgs
        })
    },
    onLoad: function (options) {
        const self = this;
        self.getPortalOne();
        self.getWxn();
    },
    //输入微信号
    inputWxNum(e) {
        this.setData({wx_number: e.detail.value})
    },
    // 查询微信号
    getWxn() {
        let url = '/home/home/wxn';
        let header = {
            "XX-Token": wx.getStorageSync('token')
        };
        app.post(url,{},header).then((res) => {
            // console.log('查询微信号', res);
            if(res !== null || res !== '') {
                this.setData({
                    wx_number: res,
                });
            }
        })
    },
    //提交发布服务表单
    submitServiceForm() {
        // else if(self.data.images.length === 0) {
    //         wx.showToast({
    //             title: '您还没有上传图片哦~',
    //             icon: 'none'
    //         })
    //     }
        let self = this;
        let url = '/home/home/submit_serve';
        let header = {
            "XX-Token": wx.getStorageSync('token')
        };
        console.log(self.data,self.data.last_category_id, self.data.select_id,self.data.images);
        let params = {
            category_id: self.data.last_category_id,//最后选的分类的id
            type: self.data.select_id !== ''?self.data.select_id: '',//select_id,没有不传
            number: self.data.wx_number,
            content: self.data.textareavalue,
            file: self.data.images
        };
        if(self.data.textareavalue === '') {
            wx.showToast({
                title: '请填写发布信息',
                icon: 'none'
            })
        }else if(self.data.last_category_id === undefined){
            wx.showToast({
                title: '请选择分类',
                icon: 'none'
            })
        }else if(self.data.wx_number === ''){
            wx.showToast({
                title: '微信号不能为空~',
                icon: 'none'
            })
        }else if(self.data.last_category_id && self.data.textareavalue
             && self.data.wx_number){
        // && self.data.images.length> 0
            app.post(url,params,header).then((res) => {
                // console.log('提交服务表单', res);
                // self.setData({
                //     portal_three: res,
                // });
                wx.showToast({
                    title:'发布成功',
                    icon: 'success',
                });
                setTimeout(function () {
                    wx.redirectTo({url: '/pages/service/service'})
                },1000)
                // wx.hideToast({});
                // wx.redirectTo({url: '/pages/service/service'})
            })
        }
    },
    /**
     * 生命周期函数--监听页面初次渲染完成
     */
    onReady: function () {

    },

    /**
     * 生命周期函数--监听页面显示
     */
    onShow: function () {

    },

    /**
     * 生命周期函数--监听页面隐藏
     */
    onHide: function () {

    },

    /**
     * 生命周期函数--监听页面卸载
     */
    onUnload: function () {

    },

    /**
     * 页面相关事件处理函数--监听用户下拉动作
     */
    onPullDownRefresh: function () {

    },

    /**
     * 页面上拉触底事件的处理函数
     */
    onReachBottom: function () {

    },

    /**
     * 用户点击右上角分享
     */
    onShareAppMessage: function () {

    }
})