123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- import api from '../../api/api'
- import data from './formData'
- Page({
-
- data: {
- data,
- form: {
- "sa_serviceorderid": 0,
- "servicetype": "0",
- "sa_orderid": 0,
- "remarks": "",
- "class1": "",
- "class2": "",
- "reason": "",
- "province": "",
- "city": "",
- "county": "",
- "address": "",
- "scenecontact": "",
- "scenecontactrole": "",
- "scenecontactphonenumber": "",
- "billdate": "",
- "begdate": "",
- }
- },
- async onClick(data) {
- this.data.form = Object.assign({}, this.data.form, data.detail)
- const res = await api._post({
- "id": "20230206091403",
- "content": this.data.form
- })
- const rs = await api._post({
- "classname": "system.attachment.Attachment",
- "method": "createFileLink",
- "content": {
- "ownertable": "sa_serviceorder",
- "ownerid": res.data.sa_serviceorderid,
- "usetype": "附件",
- "attachmentids": data.detail.attachmentids
- }
- })
- wx.navigateBack({
- delta: 0
- })
- },
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- onLoad(options) {},
-
- onReady() {
- },
-
- onShow() {},
-
- onHide() {
- this.compData = this.selectComponent("#form")
-
- },
-
- onUnload() {
- getApp().globalData.pageData = null
- },
-
- onPullDownRefresh() {
- },
-
- onReachBottom() {
- },
-
- onShareAppMessage() {
- }
- })
|