| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- const _Http = getApp().globalData.http;
- let sa_contractid = null;
- Page({
- data: {
- deletereason: "",
- loading: false,
- },
- onLoad(options) {
- sa_contractid = options.id;
- getApp().globalData.Language.getLanguagePackage(this, '作废原因');
- },
- onInput(e) {
- this.setData({
- deletereason: e.detail.value
- })
- },
- handleDetele() {
- let that = this;
- wx.showModal({
- title: getApp().globalData.Language.getMapText('提示'),
- content: getApp().globalData.Language.getMapText('是否确认作废该合同') + '?',
- cancelText: getApp().globalData.Language.getMapText('取消'),
- confirmText: getApp().globalData.Language.getMapText('确定'),
- complete: ({
- confirm
- }) => {
- if (confirm) {
- that.setData({
- loading: true
- })
- _Http.basic({
- "id": 20221121202502,
- "content": {
- "sa_contractids": [sa_contractid],
- "deletereason": that.data.deletereason
- },
- }).then(res => {
- console.log("作废合同", res);
- that.setData({
- loading: false
- })
- wx.showToast({
- title: res.code != '1' ? res.data : getApp().globalData.Language.getMapText('作废成功'),
- icon: "none",
- mask: true
- });
- if (res.code == '1') setTimeout(() => {
- wx.navigateBack({
- delta: 2
- });
- }, 300)
- })
- }
- }
- })
- }
- })
|