index.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. // pages/agent/addServiceBill/index.js
  2. import api from '../../api/api'
  3. import data from './formData'
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. data,
  10. form:{
  11. "sa_serviceorderid":0, //sa_brandid<=0时 为新增
  12. "servicetype":"0",
  13. "sa_orderid":0,
  14. "remarks":"",
  15. "class1":"",
  16. "class2":"",
  17. "reason":"",
  18. "province":"",
  19. "city":"",
  20. "county":"",
  21. "address":"",
  22. "scenecontact":"",
  23. "scenecontactrole":"",
  24. "scenecontactphonenumber":"",
  25. "billdate":"",
  26. "begdate":"",
  27. "enddate":""
  28. }
  29. },
  30. async onClick (data) {
  31. this.data.form = Object.assign({},this.data.form,data.detail)
  32. console.log(this.data.form)
  33. const res = await api._post({
  34. "id": "20230206091403",
  35. "version":1,
  36. "content": this.data.form
  37. })
  38. const rs = await api._post({
  39. "classname": "system.attachment.Attachment",
  40. "method": "createFileLink",
  41. "content": {
  42. "ownertable": "sa_serviceorder",
  43. "ownerid": res.data.sa_serviceorderid,
  44. "usetype": "附件",
  45. "attachmentids": data.detail.attachmentids
  46. }
  47. })
  48. if (res.code === 0) return wx.showToast({
  49. title: res.msg,
  50. duration: 3000,
  51. icon: 'none',
  52. })
  53. wx.navigateBack({
  54. delta:0
  55. })
  56. },
  57. /**
  58. * 生命周期函数--监听页面加载
  59. */
  60. onLoad(options) {
  61. let that = this
  62. let obj = getApp().globalData.handelSelect.data.orderMainData
  63. that.data.form = Object.assign({},this.data.form,obj)
  64. Object.keys(that.data.form).map((key,index)=>{
  65. that.data.data.formLayout.formInfo.forEach(e=>{
  66. if (e.id === key) {
  67. e.inputValue = obj[key]
  68. }
  69. if (e.id === 'provinceArr') {
  70. e.inputValue = `${obj.province},${obj.city},${obj.county}`
  71. }
  72. })
  73. })
  74. that.setData({
  75. data:that.data.data
  76. })
  77. },
  78. /**
  79. * 生命周期函数--监听页面初次渲染完成
  80. */
  81. onReady() {
  82. },
  83. /**
  84. * 生命周期函数--监听页面显示
  85. */
  86. onShow() {
  87. },
  88. /**
  89. * 生命周期函数--监听页面隐藏
  90. */
  91. onHide() {
  92. this.compData = this.selectComponent("#form")
  93. // this.compData.setObjectData(this.compData.data.formLayoutData.formInfo)
  94. },
  95. /**
  96. * 生命周期函数--监听页面卸载
  97. */
  98. onUnload() {
  99. getApp().globalData.pageData = null
  100. },
  101. /**
  102. * 页面相关事件处理函数--监听用户下拉动作
  103. */
  104. onPullDownRefresh() {
  105. },
  106. /**
  107. * 页面上拉触底事件的处理函数
  108. */
  109. onReachBottom() {
  110. },
  111. /**
  112. * 用户点击右上角分享
  113. */
  114. onShareAppMessage() {
  115. }
  116. })