瀏覽代碼

no message

linwenxin 2 月之前
父節點
當前提交
ffec2aa888
共有 3 個文件被更改,包括 147 次插入13 次删除
  1. 9 0
      src/api/qualityFeedback.js
  2. 1 1
      src/utils/request.js
  3. 137 12
      src/views/workOrder/qualityFeedback/index.vue

+ 9 - 0
src/api/qualityFeedback.js

@@ -63,3 +63,12 @@ export function qualityFeedbackCount(params) {
     params: params
   })
 }
+
+export function qualityFeedbackDownZip(data, name, fileName) {
+  return getBlob({
+    url: `/quality/feedback/down/zip?id=${data.id}`,
+    data,
+    name,
+    fileName
+  })
+}

+ 1 - 1
src/utils/request.js

@@ -167,7 +167,7 @@ export function getBlob(data) {
         var blob = new Blob([res.data], {
           type: 'application/vnd.openxmlformats-officedocument.wordprocessingml.document;charset=utf-8'
         })
-        var filename = data.name + '.xlsx'
+        var filename = data.fileName || data.name + '.xlsx'
         var downloadElement = document.createElement('a')
         var href = window.URL.createObjectURL(blob) // 创建下载的链接
         downloadElement.style.display = 'none'

+ 137 - 12
src/views/workOrder/qualityFeedback/index.vue

@@ -46,6 +46,9 @@
             <el-button v-if="~[2].indexOf(formType)" size="mini" @click="formConfirmShenHe" type="primary"
               >确定</el-button
             >
+            <el-button v-if="~[3].indexOf(formType)" size="mini" @click="xiazaifujian" type="primary"
+              >下载附件</el-button
+            >
           </div>
         </zj-page-container>
       </el-dialog>
@@ -67,7 +70,8 @@ import {
   qualityFeedbackUpdate,
   qualityFeedbackConfirm,
   qualityFeedbackCount,
-  qualityFeedbackUpdateUpload
+  qualityFeedbackUpdateUpload,
+  qualityFeedbackDownZip
 } from '@/api/qualityFeedback'
 import { lbsAmapRegion } from '@/api/common.js'
 import { getClassifyList } from '@/api/goods'
@@ -139,6 +143,8 @@ export default {
         websitName: '',
         workerMobie: '',
         workerName: '',
+        insideProductName: '',
+        outProductName: '',
         fujian: [],
         neijitiaoma: [],
         waijitiaoma: [],
@@ -453,7 +459,7 @@ export default {
         },
         {
           name: 'el-input',
-          md: 24,
+          md: 18,
           attributes: {
             disabled: [2, 3].includes(this.formType),
             placeholder: '请输入'
@@ -530,16 +536,30 @@ export default {
             rules: [...required]
           }
         },
+        // {
+        //   name: 'el-input',
+        //   md: 6,
+        //   attributes: {
+        //     disabled: [2, 3].includes(this.formType),
+        //     placeholder: '请输入'
+        //   },
+        //   formItemAttributes: {
+        //     label: '机型名称',
+        //     prop: 'productName',
+        //     rules: [...required]
+        //   }
+        // },
         {
           name: 'el-input',
           md: 6,
           attributes: {
             disabled: [2, 3].includes(this.formType),
-            placeholder: '请输入'
+            placeholder: '请输入',
+            maxlength: 13
           },
           formItemAttributes: {
-            label: '机型名称',
-            prop: 'productName',
+            label: '内机条码',
+            prop: 'insideCode',
             rules: [...required]
           }
         },
@@ -548,12 +568,11 @@ export default {
           md: 6,
           attributes: {
             disabled: [2, 3].includes(this.formType),
-            placeholder: '请输入',
-            maxlength: 13
+            placeholder: '请输入'
           },
           formItemAttributes: {
-            label: '内机条码',
-            prop: 'insideCode',
+            label: '内机型号',
+            prop: 'insideProductName',
             rules: [...required]
           }
         },
@@ -576,6 +595,20 @@ export default {
           md: 6,
           attributes: {
             disabled: [2, 3].includes(this.formType),
+            placeholder: '请输入',
+            maxlength: 13
+          },
+          formItemAttributes: {
+            label: '外机型号',
+            prop: 'outProductName',
+            rules: [101, 103, '101', '103'].includes(this.formData.mainId) ? [...required] : []
+          }
+        },
+        {
+          name: 'el-input',
+          md: 6,
+          attributes: {
+            disabled: [2, 3].includes(this.formType),
             placeholder: '请输入'
           },
           formItemAttributes: {
@@ -584,6 +617,45 @@ export default {
             rules: [...required]
           }
         },
+        // {
+        //   isShow: this.formOptions.appointmentTime.isShow,
+        //   name: 'el-date-picker',
+        //   md: 6,
+        //   attributes: {
+        //     'picker-options': 'pickerOptions11',
+        //     'popper-class': 'custom-popper11',
+        //     'append-to-body': true,
+        //     disabled: !this.formOptions.appointmentTime.isEdit,
+        //     style: { width: '100%' },
+        //     type: 'datetime',
+        //     placeholder: '请选择',
+        //     'value-format': 'yyyy-MM-dd HH:mm:ss',
+        //     'picker-options': {
+        //       disabledDate: time => {
+        //         var data = this.orderInfo?.appointmentTime?.split(' ')?.[0]
+        //         return (
+        //           time.getTime() < new Date(data ? `${data} 00:00:00` : '').getTime() ||
+        //           time.getTime() > new Date(data ? `${data} 23:59:59` : '').getTime()
+        //         )
+        //       }
+        //     }
+        //   },
+        //   events: {
+        //     change: value => {
+        //       if (value && new Date(value).getTime() < new Date().getTime() - 2000) {
+        //         this.orderInfo.appointmentEndTime = ''
+        //         this.$message.warning('必须大于当前时间')
+        //       } else if (value && new Date(value).getTime() < new Date(this.orderInfo?.appointmentTime).getTime()) {
+        //         this.orderInfo.appointmentTime = value
+        //       }
+        //     }
+        //   },
+        //   formItemAttributes: {
+        //     label: '预约上门结束时间',
+        //     prop: 'appointmentEndTime',
+        //     rules: this.formOptions.appointmentTime.isRules
+        //   }
+        // },
         {
           name: 'el-date-picker',
           md: 6,
@@ -595,11 +667,28 @@ export default {
             disabled: [2, 3].includes(this.formType),
             style: { width: '100%' },
             type: 'date',
-            placeholder: '请选择'
+            placeholder: '请选择',
+            'picker-options': {
+              disabledDate: time => {
+                if (this.formData.useDate) {
+                  var data = this.formData.useDate?.split(' ')?.[0]
+                  return time.getTime() >= new Date(data ? `${data} 00:00:00` : '')
+                } else {
+                  return false
+                }
+              }
+            }
           },
           formItemAttributes: {
             label: '出厂日期',
             prop: 'outDate'
+          },
+          events: {
+            change: value => {
+              if (!this.formData.useDate) {
+                this.formData.repairDate = ''
+              }
+            }
           }
         },
         {
@@ -613,7 +702,22 @@ export default {
             disabled: [2, 3].includes(this.formType),
             style: { width: '100%' },
             type: 'date',
-            placeholder: '请选择'
+            placeholder: '请选择',
+            'picker-options': {
+              disabledDate: time => {
+                var a = false
+                var b = false
+                if (this.formData.outDate) {
+                  let data = this.formData.outDate?.split(' ')?.[0]
+                  a = time.getTime() <= new Date(data ? `${data} 00:00:00` : '')
+                }
+                if (this.formData.repairDate) {
+                  let data = this.formData.repairDate?.split(' ')?.[0]
+                  b = time.getTime() >= new Date(data ? `${data} 00:00:00` : '')
+                }
+                return a || b
+              }
+            }
           },
           formItemAttributes: {
             label: '安装或使用日期',
@@ -632,7 +736,17 @@ export default {
             disabled: [2, 3].includes(this.formType),
             style: { width: '100%' },
             type: 'date',
-            placeholder: '请选择'
+            placeholder: '请选择',
+            'picker-options': {
+              disabledDate: time => {
+                if (this.formData.useDate) {
+                  var data = this.formData.useDate?.split(' ')?.[0]
+                  return time.getTime() <= new Date(data ? `${data} 00:00:00` : '')
+                } else {
+                  return false
+                }
+              }
+            }
           },
           formItemAttributes: {
             label: '报修或发生日期',
@@ -1193,6 +1307,17 @@ export default {
           })
         }
       })
+    },
+    xiazaifujian() {
+      qualityFeedbackDownZip(
+        {
+          id: this.formData.id
+        },
+        '',
+        '质量反馈附件.zip'
+      ).then(res => {
+        this.$message({ type: 'success', message: '下载成功!' })
+      })
     }
   }
 }