Переглянути джерело

change: 企业微信申请货物直发. 点击提交按钮后直接禁用. 优化出错提示逻辑.

(cherry picked from commit e63efd0171aa68996806e428bdc996e67bb374fd)
peter 7 місяців тому
батько
коміт
bb0adc80df
1 змінених файлів з 4 додано та 4 видалено
  1. 4 4
      src/pages/wecom-approval/index.vue

+ 4 - 4
src/pages/wecom-approval/index.vue

@@ -1162,12 +1162,13 @@ const submit = function () {
   d.origin_form = form.value
   console.log(d, 'form data')
   loading.value = true
+  submited.value = true
   request
     .post('/Shipping_tracking/createShippingTracking', d)
     .then((res) => {
       const d = res.data
       console.log(d, 'create approval')
-      if (d.result.code === 200) {
+      if (d.result.code === 200 && d.code === 1) {
         ElNotification({
           duration: 0,
           type: 'success',
@@ -1177,13 +1178,12 @@ const submit = function () {
         setTimeout(() => {
           redirectToCRM()
         }, 3500)
-        submited.value = true
       } else {
         ElNotification({
           duration: 0,
           type: 'error',
-          title: '创建审核单出错!',
-          message: d.result.message.errmsg || '',
+          title: '创建审核单出错!请联系管理员',
+          message: d.result.message?.errmsg || d.msg || '',
         })
       }
     })