mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-19 05:48:15 +00:00
156 lines
3.6 KiB
JavaScript
156 lines
3.6 KiB
JavaScript
// pages/evaluate-con/index.js
|
|
const app=getApp();
|
|
const util = require('../../utils/util.js');
|
|
Page({
|
|
|
|
/**
|
|
* 页面的初始数据
|
|
*/
|
|
data: {
|
|
parameter: {
|
|
'navbar': '1',
|
|
'return': '1',
|
|
'title': '商品评价',
|
|
'color': false,
|
|
},
|
|
scoreList:[
|
|
{ 'name': '商品质量','stars':0},
|
|
{ 'name': '服务态度','stars':0},
|
|
],
|
|
pics:[],
|
|
orderId:'',
|
|
unique:'',
|
|
is_local:1
|
|
},
|
|
|
|
/**
|
|
* 授权回调
|
|
*/
|
|
onLoadFun:function(){
|
|
this.getOrderProduct();
|
|
this.imageStorage();
|
|
},
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
*/
|
|
onLoad: function (options) {
|
|
if (!options.unique || !options.uni) return app.Tips({title:'缺少参数'},{tab:3,url:1});
|
|
this.setData({ unique: options.unique, orderId: options.uni});
|
|
},
|
|
imageStorage: function () {
|
|
var that = this;
|
|
app.baseGet(app.U({ c: "user_api", a: 'picture_storage_location'}), function (res) {
|
|
that.setData({ is_local: res.data });
|
|
});
|
|
},
|
|
/**
|
|
* 获取某个产品详情
|
|
*
|
|
*/
|
|
getOrderProduct:function(){
|
|
var that=this;
|
|
app.baseGet(app.U({ c: "store_api", a: 'get_order_product', q: { unique: that.data.unique}}),function(res){
|
|
that.setData({ orderCon:res.data});
|
|
});
|
|
},
|
|
stars: function (e) {
|
|
var index = e.target.dataset.index;
|
|
var indexw = e.target.dataset.indexw;
|
|
this.data.scoreList[indexw].stars = index
|
|
this.setData({
|
|
scoreList: this.data.scoreList
|
|
})
|
|
},
|
|
|
|
/**
|
|
* 删除图片
|
|
*
|
|
*/
|
|
DelPic: function (e) {
|
|
var index = e.target.dataset.index, that = this, pic = this.data.pics[index];
|
|
app.basePost(app.U({ c: 'public_api', a: 'delete_image' }), { pic: pic.replace(app.globalData.url, '') }, function (res) {
|
|
that.data.pics.splice(index, 1);
|
|
that.setData({ pics: that.data.pics });
|
|
});
|
|
},
|
|
|
|
/**
|
|
* 上传文件
|
|
*
|
|
*/
|
|
uploadpic: function () {
|
|
var that = this;
|
|
util.uploadImageOne(app.U({ c: 'public_api', a: 'upload' }), function (res) {
|
|
that.data.pics.push(res.data.url);
|
|
that.setData({ pics: that.data.pics });
|
|
});
|
|
},
|
|
|
|
/**
|
|
* 立即评价
|
|
*/
|
|
formSubmit:function(e){
|
|
var formId = e.detail.formId, value = e.detail.value, that = this,
|
|
product_score = that.data.scoreList[0].stars, service_score = that.data.scoreList[1].stars;
|
|
if (!value.comment) return app.Tips({ title:'请填写你对宝贝的心得!'});
|
|
value.product_score = product_score;
|
|
value.service_score = service_score;
|
|
value.pics=that.data.pics;
|
|
wx.showLoading({ title: "正在发布评论……" });
|
|
app.basePost(app.U({ c: 'user_api', a: 'user_comment_product', q: { unique: that.data.unique}}),value,function(res){
|
|
wx.hideLoading();
|
|
return app.Tips({ title: '感谢您的评价!', icon: 'success' },'/pages/order_details/index?order_id='+that.data.orderId);
|
|
},function(res){
|
|
wx.hideLoading();
|
|
return app.Tips({title:res.msg});
|
|
});
|
|
},
|
|
/**
|
|
* 生命周期函数--监听页面初次渲染完成
|
|
*/
|
|
onReady: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面显示
|
|
*/
|
|
onShow: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面隐藏
|
|
*/
|
|
onHide: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面卸载
|
|
*/
|
|
onUnload: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 页面相关事件处理函数--监听用户下拉动作
|
|
*/
|
|
onPullDownRefresh: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 页面上拉触底事件的处理函数
|
|
*/
|
|
onReachBottom: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 用户点击右上角分享
|
|
*/
|
|
onShareAppMessage: function () {
|
|
|
|
}
|
|
}) |