123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- const util = require('../../utils/util')
- const app = getApp()
- const form = require('../../utils/formValidation')
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- oneSelect:1,
- productInfo: {},
- productId: '',
- isEdit: false
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- if (options && options.productId) {
- this.setData({
- productId: options.productId
- })
- this.bindProduct()
- }
- if (options && options.id) {
- this.setData({
- ["productInfo.id"]: options.id,
- isEdit: true
- })
- this.bindVmProduct()
- }
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- },
- formSubmit: function (e) {
- var that = this
- //表单规则
- let rules = [{
- name: "productPrice",
- rule: ["required", "isAmount"],
- msg: ["请输入金额", "请输入正确的金额,允许保留两位小数"]
- }, {
- name: "productSellPrice",
- rule: ["required", "isAmount"],
- msg: ["请输入金额", "请输入正确的金额,允许保留两位小数"]
- }];
-
- //进行表单检查
- let formData = e.detail.value;
- console.log(e.detail.value)
- let checkRes = form.validation(formData, rules);
- if (!checkRes) {
- if (!that.data.isEdit) {
- that.setData({
- ["productInfo.sysProductId"]: that.data.productInfo.id,
- ["productInfo.id"]: ""
- })
- console.log("==========")
- var productPrice = e.detail.value.productPrice
- var productSellPrice = e.detail.value.productSellPrice
-
- if(productPrice<=0){
- util.toast("请输入商品进货价")
- return;
- }
- if(productSellPrice<=0){
- util.toast("请输入商品售价")
- return;
- }
- //js 19.9 * 100有bug
- that.data.productInfo.productPrice = productPrice *10
- that.data.productInfo.productPrice = that.data.productInfo.productPrice *10
- that.data.productInfo.productSellPrice = productSellPrice *10
- that.data.productInfo.productSellPrice = that.data.productInfo.productSellPrice * 10
- util.request(util.api.addVmProduct, that.data.productInfo, "POST", false, true, app.globalData.token).then((res) => {
- if (res.code == 200) {
- wx.navigateTo({
- url: '/pages/product/index',
- })
- // wx.navigateBack({
- // delta: 2
- // })
- }else{
-
- util.toast(res.message)
- setTimeout(()=>{
- wx.navigateTo({
- url: '/pages/product/index',
- })
- },500)
-
- }
- }).catch((res) => {})
- } else {
- util.request(util.api.editVmProduct, that.data.productInfo, "POST", false, true, app.globalData.token).then((res) => {
- if (res.code == 200) {
- wx.navigateBack({
- delta: 1
- })
- }
- }).catch((res) => {})
- }
- } else {
- wx.showToast({
- title: checkRes,
- icon: "none"
- });
- }
- },
- formReset: function (e) {
- console.log("清空数据")
- },
- bindProduct() {
- var that = this
- util.request(util.api.queryByProductId, {
- id: that.data.productId
- }, "GET", true, true, app.globalData.token).then((res) => {
- if (res.code == 200) {
- that.setData({
- productInfo: res.result,
- })
- }
- }).catch((res) => {})
- },
- bindVmProduct() {
- var that = this
- util.request(util.api.queryByVmProductId, {
- id: that.data.productInfo.id
- }, "GET", true, true, app.globalData.token).then((res) => {
- if (res.code == 200) {
- that.setData({
- productInfo: res.result,
- })
- }
- }).catch((res) => {})
- },
- inputedit: function (e) {
- let _this = this;
- let dataset = e.currentTarget.dataset;
- let value = e.detail.value;
- let name = dataset.name;
- value = parseFloat(value)
- if(!value){
- value = 0.00;
- }
- if (dataset.type && dataset.type == 'float') {
- value = parseInt(parseFloat(value));
- _this.data[name] = value;
- } else {
- _this.data[name] = value;
- }
- _this.setData({
- [name]: _this.data[name]
- });
- }
- })
|