index.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. Component({
  2. properties: {
  3. list: {
  4. type: Array
  5. },
  6. deleteItem: {
  7. type: Function
  8. },
  9. changeProduct: {
  10. type: Function
  11. }, //修改队列
  12. disabled: {
  13. type: Boolean
  14. }
  15. },
  16. options: {
  17. addGlobalClass: true
  18. },
  19. lifetimes: {
  20. attached: function () {
  21. getApp().globalData.Language.getLanguagePackage(this)
  22. this.setData({
  23. siteid: wx.getStorageSync('userMsg').siteid
  24. })
  25. }
  26. },
  27. methods: {
  28. toProductDetail(e) {
  29. const {
  30. item
  31. } = e.currentTarget.dataset;
  32. },
  33. onBlur(e) {
  34. let {
  35. data,
  36. name
  37. } = e.currentTarget.dataset;
  38. this.triggerEvent("changeProduct", {
  39. "sa_aftersalesmag_itemsid": data.sa_aftersalesmag_itemsid,
  40. "sa_orderitemsid": data.sa_orderitemsid,
  41. "itemid": data.itemid,
  42. "qty": name == 'qty' ? e.detail.value : data.qty,
  43. "price": name == 'price' ? e.detail.value : data.price,
  44. "reason": name == 'reason' ? e.detail.value : data.reason,
  45. })
  46. },
  47. deleteProduct(e) {
  48. if (this.data.disabled) getApp().globalData.Language.showToast('当前状态不可删除!')
  49. let {
  50. item
  51. } = e.currentTarget.dataset;
  52. this.triggerEvent("deleteItem", item)
  53. },
  54. isEdit() {
  55. if (this.data.disabled) getApp().globalData.Language.showToast('当前状态不可编辑!')
  56. }
  57. }
  58. })