123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- import api from '../../api/api'
- import Dialog from 'tdesign-miniprogram/dialog/index';
- Page({
- data: {
- refresh: true,
- orderMainData: {},
- list: [],
- tabbarsList: [{
- label: "编辑",
- icon: "icon-dibu-bianji"
- }, {
- label: "提交",
- icon: "icon-tijiao",
- }, {
- label: "删除",
- icon: "icon-guanlian-shanchu"
- }]
- },
- async onMXDelete(data) {
- let itemid = data.detail.sa_serviceorderitemsid
- const res = await api._post({
- "id": "20230206162003",
- "content": {
- "sa_serviceorderitemsids": [itemid]
- }
- })
- this.productmx()
- },
- async mainData() {
- const res = await api._post({
- "id": "20230206091603",
- "version": 1,
- "content": {
- "sa_serviceorderid": this.data.id
- }
- })
- this.setData({
- orderMainData: res.data,
- sa_serviceorderid: res.data.sa_serviceorderid,
- sa_orderid: res.data.sa_orderid,
- })
- this.fileData()
- this.linkWorkOrder()
- },
- async fileData() {
- const res = await api._post({
- "method": "queryFileLink",
- "classname": "system.attachment.Attachment",
- "content": {
- "ownertable": "sa_serviceorder",
- "ownerid": this.data.id,
- "usetype": "" //传空返回有所
- }
- })
- this.setData({
- filelist: res.data,
- refresh: true
- })
- },
- addProduct() {
- wx.navigateTo({
- url: '/Eservice/agent/billCanUseProduct/index?id=' + this.data.id,
- })
- },
- async getAdd(selection) {
- const res = await api._post({
- "id": "20230206161803",
- "version": 1,
- "content": {
- "sa_serviceorderid": this.data.id,
- "iteminfos": selection.map(e => {
- return {
- "sa_serviceorderitemsid": 0,
- "itemid": e,
- "reason": "",
- "qty": 1
- }
- })
- }
- })
- this.productmx()
- },
- async productmx() {
- const res = await api._post({
- "id": "20230206161903",
- "version": 1,
- "content": {
- "sa_serviceorderid": this.data.id
- }
- })
- this.setData({
- list: res.data
- })
- },
- /* 底部按钮回调 */
- tabbarOnClick(e) {
- let that = this,
- dialogConfig = null,
- res = null;
- switch (e.detail.label) {
- case "编辑":
- getApp().globalData.handelSelect = this
- wx.navigateTo({
- url: '/Eservice/agent/editServiceBill/index',
- })
- break;
- case "提交":
- dialogConfig = {
- context: this,
- title: getApp().globalData.Language.getMapText('提示'),
- content: getApp().globalData.Language.getMapText('确认提交当前申请单吗'),
- confirmBtn: getApp().globalData.Language.getMapText('确定'),
- cancelBtn: getApp().globalData.Language.getMapText('取消'),
- };
- Dialog.confirm(dialogConfig)
- .then(async () => {
- res = await api._post({
- "id": "20230206101403",
- "version": 1,
- "content": {
- "sa_serviceorderid": that.data.id,
- "issumbit": 1,
- }
- });
- that.mainData()
- })
- .catch((err) => console.log(err))
- .finally(() => Dialog.close());
- break;
- case "删除":
- dialogConfig = {
- context: this,
- title: getApp().globalData.Language.getMapText('提示'),
- content: getApp().globalData.Language.getMapText('确认删除当前申请单吗'),
- confirmBtn: getApp().globalData.Language.getMapText('确定'),
- cancelBtn: getApp().globalData.Language.getMapText('取消'),
- };
- Dialog.confirm(dialogConfig)
- .then(async () => {
- res = await api._post({
- "id": "20230206091803",
- "version": 1,
- "content": {
- "sa_serviceorderids": [that.data.id],
- }
- })
- wx.navigateBack()
- })
- .catch((err) => console.log(err))
- .finally(() => Dialog.close());
- break;
- }
- },
- async linkWorkOrder() {
- const res = await api._post({
- "id": "20230207154203",
- "version": 1,
- "content": {
- "sa_serviceorderid": this.data.id
- }
- })
- this.setData({
- linkWorkOrders: res.data
- })
- },
- tolinkWorkOrder(e) {
- let id = e.currentTarget.dataset.item.sa_workorderid
- let app = getApp()
- app.globalData.action = ['editLeader']
- wx.navigateTo({
- url: '/Eservice/workOrderDetail/index?class=stopClick&id=' + id
- })
- },
- onLoad(options) {
- this.setData({
- id: options.id
- })
- this.productmx()
- getApp().globalData.Language.getLanguagePackage(this, 'E-订单');
- },
- onShow() {
- this.mainData()
- },
- async onUnload() {
- let page = getCurrentPages().find(v => v.__route__ == 'Eservice/agent/serviceBillList/index');
- if (!page) return;
- let param = JSON.parse(JSON.stringify(page.data.param));
- param.content.pageSize = param.content.pageNumber * param.content.pageSize;
- param.content.pageNumber = 1;
- const res = await api._post(param);
- page.setData({
- list: res.data
- })
- },
- })
|