123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- // pages/order/comment.js
- var util = require('../../utils/util.js');
- var app = getApp()
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- order_id: 0,
- goods_id: 0,
- miaoshu_no: 0,
- price_no: 0,
- zhiliang_no: 0,
- is_jifen: 0,
- pinjia_text: '',
- thumb_img: [],
- image: [],
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- var that = this;
- var token = wx.getStorageSync('token');
- var order_id = options.id;
- var gis_jifen = options.is_jifen;
- if (gis_jifen != undefined) {
- this.setData({
- is_jifen: 1
- })
- }
- this.setData({
- order_id: order_id
- })
- app.util.request({
- 'url': 'entry/wxapp/user',
- 'data': {
- controller: 'user.order_comment',
- 'token': token,
- order_id: order_id
- },
- dataType: 'json',
- success: function (res) {
- if (res.data.code == 3) {
- //un login
- } else if (res.data.code == 0) {
- //
- //code goods_image
- that.setData({
- goods_id: res.data.goods_id,
- goods_image: res.data.goods_image
- })
- }
- }
- })
-
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- textinput: function (event) {
- //event.detail = { value, cursor },
- var content = event.detail.value;
- //pinjia_text
- this.setData({
- pinjia_text: content
- })
- },
- sub_comment: function () {
- var order_id = this.data.order_id;
- var goods_id = this.data.goods_id;
- var miaoshu_no = this.data.miaoshu_no;
- var price_no = this.data.price_no;
- var zhiliang_no = this.data.zhiliang_no;
- var pinjia_text = this.data.pinjia_text;
- var image = this.data.image;
- var that = this;
- if (pinjia_text == '') {
- wx.showToast({
- title: '请填写评价内容',
- icon: 'success',
- duration: 1000
- })
- return false;
- }
- wx.showLoading({
- title: '评论中',
- })
- var token = wx.getStorageSync('token');
- app.util.request({
- 'url': 'entry/wxapp/user',
- 'data': {
- controller: 'user.sub_comment',
- 'token': token,
- order_id: order_id,
- goods_id: goods_id,
- cur_rel: miaoshu_no,
- cur2_rel: price_no,
- cur3_rel: zhiliang_no,
- comment_content: pinjia_text,
- imgs: image
- },
- method: 'POST',
- dataType: 'json',
- success: function (msg) {
- wx.hideLoading();
- if (msg.data.code == 3) {
- wx.showToast({
- title: '未登录',
- icon: 'loading',
- duration: 1000
- })
- } else {
- wx.showToast({
- title: '评价成功',
- icon: 'success',
- duration: 1000,
- success: function (res) {
- //是否跳到积分
- if (that.data.is_jifen == 1) {
- wx.redirectTo({
- url: "/Snailfish_shop/pages/dan/me_score_order"
- })
- } else {
- wx.redirectTo({
- url: "/Snailfish_shop/pages/order/index?order_status=11"
- })
- }
- }
- })
- }
- }
- })
-
- },
- choseStar: function (event) {
- let stype = event.currentTarget.dataset.stype;
- let sval = event.currentTarget.dataset.sval;
- if (stype == 'miaoshu_no') {
- this.setData({
- miaoshu_no: sval
- })
- } else if (stype == 'price_no') {
- this.setData({
- price_no: sval
- })
- } else if (stype == 'zhiliang_no') {
- this.setData({
- zhiliang_no: sval
- })
- }
- },
- choseImg: function () {
- var self = this;
- wx.chooseImage({
- count: 1, // 默认9
- sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
- sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
- success: function (res) {
- // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
- var tempFilePaths = res.tempFilePaths;
- wx.showLoading({
- title: '上传中',
- })
-
- wx.uploadFile({
- url: app.util.url('entry/wxapp/index', { 'm': 'Snailfish_shop', 'controller': 'goods.doPageUpload' }), //仅为示例,非真实的接口地址
- filePath: tempFilePaths[0],
- name: 'upfile',
- formData: {
- 'name': tempFilePaths[0]
- },
- header: {
- 'content-type': 'multipart/form-data'
- },
- success: function (res) {
- wx.hideLoading();
- var data = JSON.parse(res.data);
- var image_thumb = data.image_thumb;
- var orign_image = data.image_o;
- var new_img = self.data.image;
- var new_thumb_img = self.data.thumb_img;
- new_img.push(orign_image);
- new_thumb_img.push(image_thumb);
- self.setData({
- thumb_img: new_thumb_img,
- image: new_img
- })
- //https://mall.shiziyu888.com/Uploads/image/cache/goods/2017-11-28/5a1d30ca7c627-300x300.png
- // https://mall.shiziyu888.com/Uploads/image/goods/2017-11-28/5a1d30ca7c627.png
- //do something
- }
- })
- }
- })
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- }
- })
|