linwenxin 5 mēneši atpakaļ
vecāks
revīzija
7ce64dc728

+ 50 - 46
src/api/InsuranceManagement.js

@@ -145,31 +145,12 @@ export function insureEmailDetail(params) {
 
 // --------------------------------------------------------
 
-// 商用保险保存
-export function insureWorkerCommercialSave(data) {
-  return request({
-    url: `/insure/worker/commercial/save`,
-    method: 'post',
-    data
-  })
-}
-
-export function insureList2(params) {
-  return request({
-    url: `/worker/list2`,
-    method: 'post',
-    params
-  })
-}
-
-// worker/list2
-
 /**
  * 邮箱配置
  */
 export function insureListemail(data) {
   return request({
-    url: `/insure/listemail?moduleId=${data.moduleId}`,
+    url: `/mailbox/list?moduleId=${data.moduleId}`,
     method: 'post',
     data
   })
@@ -177,7 +158,7 @@ export function insureListemail(data) {
 
 export function insureListemailExport(data, name) {
   return postBlob({
-    url: '/insure/listemail/export',
+    url: '/mailbox/list/export',
     data,
     name
   })
@@ -185,19 +166,21 @@ export function insureListemailExport(data, name) {
 
 export function insureDetailemail(params) {
   return request({
-    url: `/insure/detailemail`,
+    url: `/mailbox/detailRecord`,
     method: 'post',
     params
   })
 }
 
-export function insureResend(params) {
-  return request({
-    url: `/insure/resend`,
-    method: 'post',
-    params
-  })
-}
+// export function insureResend(params) {
+//   return request({
+//     url: `/insure/resend`,
+//     method: 'post',
+//     params
+//   })
+// }
+
+// --------------------------------------------------------
 
 /**
  * 工程师保险
@@ -205,7 +188,7 @@ export function insureResend(params) {
 export function insureWorkerList(data) {
   var { moduleId, ...p } = data
   return request({
-    url: `/insure/worker/list?moduleId=`,
+    url: `/mailbox/listPolicy`,
     method: 'post',
     data: p
   })
@@ -213,7 +196,7 @@ export function insureWorkerList(data) {
 
 export function insureWorkerLists(data) {
   return request({
-    url: `/insure/worker/list?moduleId=${data.moduleId}`,
+    url: `/mailbox/listPolicy?moduleId=${data.moduleId}`,
     method: 'post',
     data
   })
@@ -221,27 +204,29 @@ export function insureWorkerLists(data) {
 
 export function insureWorkerExport(data, name) {
   return postBlob({
-    url: '/insure/worker/export',
+    url: '/mailbox/listPolicy/export',
     data,
     name
   })
 }
 
-export function insureWorkerDetail(params) {
-  return request({
-    url: `/insure/worker/detail`,
-    method: 'post',
-    params
-  })
-}
+// export function insureWorkerDetail(params) {
+//   return request({
+//     url: `/insure/worker/detail`,
+//     method: 'post',
+//     params
+//   })
+// }
 
-export function insureWorkerOnOff(params) {
-  return request({
-    url: `/insure/worker/on-off`,
-    method: 'post',
-    params
-  })
-}
+// export function insureWorkerOnOff(params) {
+//   return request({
+//     url: `/insure/worker/on-off`,
+//     method: 'post',
+//     params
+//   })
+// }
+
+// --------------------------------------------------------
 
 /**
  * 商用工程师保险
@@ -285,3 +270,22 @@ export function insureWorkerCommercialOnOff(params) {
     params
   })
 }
+
+// --------------------------------------------------------
+
+// 商用保险保存
+export function insureWorkerCommercialSave(data) {
+  return request({
+    url: `/insure/worker/commercial/save`,
+    method: 'post',
+    data
+  })
+}
+
+export function insureList2(params) {
+  return request({
+    url: `/worker/list2`,
+    method: 'post',
+    params
+  })
+}

+ 13 - 13
src/views/setting/insuranceAdministration/sentEmailRecords/index.vue

@@ -67,19 +67,19 @@ export default {
           },
           prompt: '是否确定重新发送?',
           click: ({ row, index, column }) => {
-            insureResend({
-              emailBatchNo: row.emailBatchNo
-            })
-              .then(res => {
-                this.$refs.pageRef.refreshList()
-                this.$message({
-                  type: 'success',
-                  message: `发送成功!`
-                })
-              })
-              .catch(err => {
-                console.log(err)
-              })
+            // insureResend({
+            //   emailBatchNo: row.emailBatchNo
+            // })
+            //   .then(res => {
+            //     this.$refs.pageRef.refreshList()
+            //     this.$message({
+            //       type: 'success',
+            //       message: `发送成功!`
+            //     })
+            //   })
+            //   .catch(err => {
+            //     console.log(err)
+            //   })
           }
         }
       })

+ 1 - 1
src/views/setting/insuranceAdministration/sentEmailRecords/list.vue

@@ -35,7 +35,7 @@ export default {
   methods: {
     // 列表请求函数
     getList(p) {
-      return insureWorkerList({ ...p, emailBatchNo: this.batchEamilNo })
+      return insureWorkerList({ ...p, sendBatch: this.batchEamilNo })
     },
     // 导出
     exportList: insureWorkerExport,

+ 6 - 6
src/views/setting/insuranceAdministration/sentEmailRecords/sentEmailRecordsForm.vue

@@ -12,15 +12,15 @@
         <el-descriptions class="margin-top" :column="2" border :labelStyle="{ width: '140px' }">
           <el-descriptions-item>
             <template slot="label"> 邮件发送批次 </template>
-            {{ info.emailBatchNo }}
+            {{ info.sendBatch }}
           </el-descriptions-item>
           <el-descriptions-item>
             <template slot="label"> 发送邮箱 </template>
-            {{ info.sendEmail }}
+            {{ info.sendMailbox }}
           </el-descriptions-item>
           <el-descriptions-item>
             <template slot="label"> 接收邮箱 </template>
-            {{ info.receEmail }}
+            {{ info.receiveMailbox }}
           </el-descriptions-item>
           <el-descriptions-item>
             <template slot="label"> 发送状态 </template>
@@ -32,11 +32,11 @@
           </el-descriptions-item>
           <el-descriptions-item>
             <template slot="label"> 回执状态 </template>
-            {{ info.receStatus }}
+            {{ info.receiptStatus }}
           </el-descriptions-item>
           <el-descriptions-item>
             <template slot="label"> 回执时间 </template>
-            {{ info.receTime }}
+            {{ info.receiptTime }}
           </el-descriptions-item>
           <el-descriptions-item>
             <template slot="label"> 操作时间 </template>
@@ -44,7 +44,7 @@
           </el-descriptions-item>
         </el-descriptions>
       </div>
-      <List v-show="tibleType === 'bdxx'" v-if="info.emailBatchNo" :batchEamilNo="info.emailBatchNo" />
+      <List v-show="tibleType === 'bdxx'" v-if="info.sendBatch" :batchEamilNo="info.sendBatch" />
     </zj-page-fill>
   </zj-page-container>
 </template>