index.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. const api = require("../api/api")
  2. Page({
  3. data: {
  4. dateVisible: false,
  5. timerid: null,
  6. bindSignNameData: {
  7. "ownertable": "sa_workorder_confirmation",
  8. "ownerid": 0,
  9. "usetype": "signature",
  10. },
  11. paidServiceAmount: 0
  12. },
  13. async billData() {
  14. const res = await api._post({
  15. "id": "20230211105803",
  16. "content": {
  17. "sa_workorder_confirmationid": this.data.id
  18. }
  19. })
  20. let ishave = false
  21. res.data.confirmationcontent.forEach(item => {
  22. if (item.nextTreatmentTime) {
  23. ishave = true
  24. }
  25. })
  26. if (!ishave) {
  27. let arr = [{
  28. nextTreatmentTime: {
  29. confirm_value: ''
  30. }
  31. }, {
  32. treatment: {
  33. confirm_value: ''
  34. }
  35. }, {
  36. explain: {
  37. confirm_value: ''
  38. }
  39. }, {
  40. repairResult: {
  41. confirm_value: ''
  42. }
  43. }, {
  44. rebackTime: {
  45. confirm_value: ''
  46. }
  47. }, {
  48. nextRebackTime: {
  49. confirm_value: ''
  50. }
  51. }, {
  52. text: {
  53. confirm_value: ''
  54. }
  55. }]
  56. arr.forEach(e => {
  57. res.data.confirmationcontent.push(e)
  58. }, this)
  59. }
  60. console.log(res.data)
  61. this.setData({
  62. mainData: res.data,
  63. stopClick: res.data.status !== '新建' ? 'stopClick' : this.data.stopClick
  64. })
  65. this.setInputData()
  66. },
  67. setInputData() {
  68. let that = this
  69. that.data.mainData.confirmationcontent.forEach(e => {
  70. Object.keys(e).map((key, index) => {
  71. that.setData({
  72. paidServiceAmount: that.data.paidServiceAmount + e[key].amount
  73. })
  74. if (key === 'nextTreatmentTime') {
  75. this.setData({
  76. nextTreatmentTime: e[key].confirm_value
  77. })
  78. }
  79. if (key === 'treatment') {
  80. this.setData({
  81. treatment: e[key].confirm_value
  82. })
  83. }
  84. if (key === 'explain') {
  85. this.setData({
  86. explain: e[key].confirm_value
  87. })
  88. }
  89. if (key === 'nextRebackTime') {
  90. this.setData({
  91. nextRebackTime: e[key].confirm_value
  92. })
  93. }
  94. if (key === 'text') {
  95. this.setData({
  96. text: e[key].confirm_value
  97. })
  98. }
  99. })
  100. })
  101. },
  102. async updateBill() {
  103. if (this.data.mainData.status !== '新建') return getApp().globalData.Language.showToast('非新建状态,修改的数据将不会保存')
  104. const res = await api._post({
  105. "id": "20230211105703",
  106. "content": this.data.mainData
  107. })
  108. },
  109. // 改变评分
  110. onChange(e) {
  111. this.data.mainData[e.currentTarget.dataset.name] = e.detail.value
  112. this.setData({
  113. mainData: this.data.mainData
  114. });
  115. this.updateBill()
  116. },
  117. async submit() {
  118. this.createImage(true);
  119. const res = await api._post({
  120. "id": "20230211110003",
  121. "content": {
  122. "sa_workorder_confirmationid": this.data.mainData.sa_workorder_confirmationid
  123. }
  124. })
  125. if (res.code == 1) {
  126. wx.showToast({
  127. title: getApp().globalData.Language.getMapText('提交成功'),
  128. icon: "success"
  129. })
  130. this.billData()
  131. }
  132. },
  133. async delete() {
  134. const res = await api._post({
  135. "id": "20230211110103",
  136. "content": {
  137. "sa_workorder_confirmationids": [this.data.mainData.sa_workorder_confirmationid]
  138. }
  139. })
  140. if (res.code == 1) {
  141. wx.navigateBack()
  142. }
  143. },
  144. inputChange(data) {
  145. console.log(data)
  146. let name = data.currentTarget.dataset.name
  147. this.data.mainData.confirmationcontent.forEach(e => {
  148. Object.keys(e).map((key, index) => {
  149. if (name === key) {
  150. e[key].confirm_value = data.detail.value
  151. }
  152. })
  153. })
  154. this.updateBill()
  155. },
  156. showNextTimePicker(data) {
  157. let name = data.currentTarget.dataset.name
  158. this.setData({
  159. pickkerName: name,
  160. dateVisible: !this.data.dateVisible
  161. })
  162. },
  163. onConfirm(data) {
  164. let name = this.data.pickkerName
  165. this.data.mainData.confirmationcontent.forEach(e => {
  166. Object.keys(e).map((key, index) => {
  167. if (name === key) {
  168. e[key].confirm_value = data.detail.value
  169. }
  170. })
  171. })
  172. this.setData({
  173. mainData: this.data.mainData
  174. })
  175. this.updateBill()
  176. this.setInputData()
  177. },
  178. /* 查看单据 */
  179. checkImage() {
  180. let attinfos = this.data.mainData.attinfos.map(v => v.usetype);
  181. let index = attinfos.lastIndexOf("comfirmbill");
  182. //没有查询到有效单据 跳转生成
  183. if (index == -1) return this.createImage(true);
  184. wx.previewImage({
  185. urls: [this.data.mainData.attinfos[index].url],
  186. })
  187. },
  188. createImage(active = false) {
  189. let token = wx.getStorageSync('userMsg').token
  190. let parentid = wx.getStorageSync('siteP').appfolderid
  191. let url = `${getApp().globalData.http.baseUrl}/yosweb/#/printTable?token=${token}&parentid=${parentid}&ownerid=${this.data.mainData.sa_workorder_confirmationid}${active==true?'&action=1':''}`
  192. this.setData({
  193. url: url
  194. })
  195. wx.navigateTo({
  196. url: '/Eservice/webView/index',
  197. })
  198. },
  199. /**
  200. * 生命周期函数--监听页面加载
  201. */
  202. onLoad(options) {
  203. this.data.bindSignNameData.ownerid = options.id
  204. this.setData({
  205. stopClick: options.class,
  206. id: options.id,
  207. bindSignNameData: this.data.bindSignNameData
  208. })
  209. getApp().globalData.Language.getLanguagePackage(this, 'E-订单');
  210. },
  211. onShow() {
  212. this.setData({
  213. SignName: true
  214. })
  215. this.billData()
  216. },
  217. onHide() {
  218. this.setData({
  219. SignName: false
  220. })
  221. }
  222. })