xtz 4 年之前
父節點
當前提交
661c692f2d
共有 4 個文件被更改,包括 100 次插入86 次删除
  1. 2 2
      .env.development
  2. 21 12
      src/components/vTable/vTable.vue
  3. 31 26
      src/views/candidateManage/candidateList.vue
  4. 46 46
      src/views/candidateManage/resumeList.vue

+ 2 - 2
.env.development

@@ -1,8 +1,8 @@
 // 本地环境
 module.exports={
   NODE_ENV = development
-  VUE_APP_API = http://47.100.59.52:7785
-  VUE_APP_IMG = http://cdn.info666.com
+  VUE_APP_API = https://api.yc1min.com
+  VUE_APP_IMG = https://cdn.yc1min.com
   VUE_APP_VER = 0.0.1
   VUE_APP_DAT = new Date().getTime()
   VUE_APP_DOMAIN = 127.0.0.1

+ 21 - 12
src/components/vTable/vTable.vue

@@ -52,12 +52,12 @@
         <el-table-column label="操作" v-if="table.handle" :fixed="table.fixed && 'right'" :width="table.width" align="center">
             <template slot-scope="scope">
                 <el-dropdown v-if="table.button" @command="dropdownMethods">
-                  <el-button style="background: #00a0e9;color:#fff">
-                    更多操作<i class="el-icon-arrow-down el-icon--right"></i>
-                  </el-button>
-                  <el-dropdown-menu slot="dropdown">
-                    <el-dropdown-item v-for="(item,index) in table.handle.filter(item => scope.row[item.props] === item.key)" :key="index" :command="{row: scope.row, method: item.method}">{{item.title}}</el-dropdown-item>
-                  </el-dropdown-menu>
+                    <el-button style="background: #00a0e9;color:#fff">
+                        更多操作<i class="el-icon-arrow-down el-icon--right"></i>
+                    </el-button>
+                    <el-dropdown-menu slot="dropdown">
+                        <el-dropdown-item v-for="(item,index) in table.handle.filter(item => scope.row[item.props] === item.key)" :key="index" :command="{row: scope.row, method: item.method}">{{item.title}}</el-dropdown-item>
+                    </el-dropdown-menu>
                 </el-dropdown>
                 <el-button-group v-else style="display:flex;justify-content: center;">
                     <el-button v-for="(item,index) in table.handle.filter(item => scope.row[item.props] === item.key)" :key="index" size="small" :type="item.type" style="margin:0px;" class="btn handelBtn" @click="handleMethods(scope.$index, scope.row, item)">
@@ -90,6 +90,10 @@ export default {
       type: String,
       default: () => ''
     },
+    all: {
+      type: Boolean,
+      default: false
+    },
     errorList: {
       type: Array,
       default: () => []
@@ -118,10 +122,17 @@ export default {
     handleMethods (index, item, v) {
       this.$emit(v.method, item)
     },
-    dropdownMethods ({ row, method }) {
+    dropdownMethods ({
+      row,
+      method
+    }) {
       this.$emit(method, row)
     },
     handleSelectionChange (val) {
+      if (this.all) {
+        this.$emit('selection-change', val.map(item => item))
+        return
+      }
       this.id && this.$emit('selection-change', val.map(item => item[this.id]))
     },
     tableRowClassName ({
@@ -138,11 +149,9 @@ export default {
       prop,
       order
     }) {
-      this.orderItem = order
-        ? {
-          [prop]: order === 'ascending' ? 'ASC' : 'DESC'
-        }
-        : {}
+      this.orderItem = order ? {
+        [prop]: order === 'ascending' ? 'ASC' : 'DESC'
+      } : {}
       this.queryData(this.form)
     }
   }

+ 31 - 26
src/views/candidateManage/candidateList.vue

@@ -8,31 +8,31 @@
 -->
 <template>
 <div class="candidateList">
-    <v-input :btn="(isCollapse==1?btn1:isCollapse===2?btn2:isCollapse===3?btn3:btn0).slice(0, 1)" :list="list" :key="isCollapse+3" @del="delAll" @search="search" @through="throughAll" @notice="noticeAll" @eliminate="eliminateAll" @undetermined="undeterminedAll"  @sendMail="sendMailAll"></v-input>
+    <v-input :btn="(isCollapse==1?btn1:isCollapse===2?btn2:isCollapse===3?btn3:btn0).slice(0, 1)" :list="list" :key="isCollapse+3" @del="delAll" @search="search" @through="throughAll" @notice="noticeAll" @eliminate="eliminateAll" @undetermined="undeterminedAll" @sendMail="sendMailAll"></v-input>
     <el-radio-group v-model="isCollapse" size="medium" style="margin-bottom: 20px;" fill="#00a0e9">
         <el-radio-button :label="0">候选人列表</el-radio-button>
         <el-radio-button :label="1">已通过候选人</el-radio-button>
         <el-radio-button :label="2">已淘汰候选人</el-radio-button>
         <el-radio-button :label="3">待定候选人</el-radio-button>
-    </el-radio-group><br/>
+    </el-radio-group><br />
     <el-dropdown v-if="table.button" @command="dropdownMethods">
-      <el-button style="background: #00a0e9;color:#fff">
-        更多操作<i class="el-icon-arrow-down el-icon--right"></i>
-      </el-button>
-      <el-dropdown-menu slot="dropdown">
-        <el-dropdown-item v-for="(item,index) in (isCollapse==1?btn1:isCollapse===2?btn2:isCollapse===3?btn3:btn0).slice(1)" :key="index" :command="{method: item.method}">{{item.name}}</el-dropdown-item>
-      </el-dropdown-menu>
+        <el-button style="background: #00a0e9;color:#fff">
+            更多操作<i class="el-icon-arrow-down el-icon--right"></i>
+        </el-button>
+        <el-dropdown-menu slot="dropdown">
+            <el-dropdown-item v-for="(item,index) in (isCollapse==1?btn1:isCollapse===2?btn2:isCollapse===3?btn3:btn0).slice(1)" :key="index" :command="{method: item.method}">{{item.name}}</el-dropdown-item>
+        </el-dropdown-menu>
     </el-dropdown>
     <div style="height:20px"></div>
-    <v-table :key="isCollapse" :table="isCollapse===1?table1:isCollapse===2?table2:isCollapse===3?table3:table" :tableList="tableList" :sortType="true" :form="searchForm" :queryData="queryData" @details="details" @eliminate="eliminate" @through="through" @notice="notice" @del="del" @undetermined="undetermined" @openDia="openDia" @update="update" @selection-change="selection" @sendMail="sendMail" id="id"></v-table>
+    <v-table :key="isCollapse" :table="isCollapse===1?table1:isCollapse===2?table2:isCollapse===3?table3:table" :tableList="tableList" :sortType="true" :form="searchForm" :queryData="queryData" @details="details" @eliminate="eliminate" @through="through" @notice="notice" @del="del" @undetermined="undetermined" @openDia="openDia" @update="update" @selection-change="selection" @sendMail="sendMail" id="id" :all="true"></v-table>
     <v-pager @page="callPage" :total="totalrecords"></v-pager>
     <el-dialog :visible.sync="dialogFormVisible" width="600px" :before-close="close" :close-on-click-modal="false">
         <el-form :model="form" ref="form" label-width="140px" :rules="rules" label-position="left">
             <el-form-item label-width="0">
                 <div class="title">通知群发列表</div>
                 <div class="content">
-                    <el-tag v-for="(item, index) in copyPickList" :key="item" closable @close="copyPickList.splice(index, 1)" :type="errorlist.includes(item)?'danger':'success'">
-                      {{tableList.some(i => i.id === item) ? tableList.find(i => i.id === item).delivererName + (tableList.find(i => i.id === item).delivererMail || '(无邮箱)') : ''}}
+                    <el-tag v-for="(item, index) in copyPickList" :key="item" closable @close="copyPickList.splice(index, 1)" :type="errorlist.includes(item.id)?'danger':'success'">
+                        {{tableList.some(i => i.id === item.id) ? tableList.find(i => i.id === item.id).delivererName + (tableList.find(i => i.id === item.id).delivererMail || '(无邮箱)') : ''}}
                     </el-tag>
                 </div>
             </el-form-item>
@@ -672,7 +672,9 @@ export default {
     this.queryEmail()
   },
   methods: {
-    dropdownMethods ({ method }) {
+    dropdownMethods ({
+      method
+    }) {
       console.log(method)
       this[method + 'All']()
     },
@@ -697,6 +699,7 @@ export default {
             // item.desiredPositionId = item.desiredPositionId ? this.downList1.some(i => i.id === item.desiredPositionId) ? this.downList1.find(i => i.id === item.desiredPositionId).positionName : '' : ''
             return item
           })
+          this.copyPickList = Array.from(this.pickList)
         })
     },
     queryDownList () {
@@ -747,7 +750,9 @@ export default {
       })
       if (!a) return
       let resumeInfoStatusList = this.copyPickList.map(item => ({
-        id: item,
+        id: item.id,
+        sendInviteStatus: item.sendInviteStatus,
+        sendConfirmStatus: item.sendConfirmStatus,
         templateId: this.form.templateId
       }))
       this.copyPickList.length
@@ -759,10 +764,10 @@ export default {
             }
           })
           .then((res) => {
+            this.close()
             this.$alert('邮件正在发送中,请耐心等待!', '发送结果', {
               confirmButtonText: '确定',
-              callback: action => {
-              }
+              callback: action => {}
             })
             // this.errorlist = res.object.sendMailFailList.map(item => {
             //   return item.id
@@ -776,7 +781,7 @@ export default {
     notice (row) {
       this.open()
       this.state = 2
-      this.copyPickList = [row.id]
+      this.copyPickList = [row]
     },
     noticeAll () {
       this.pickList.length
@@ -787,9 +792,9 @@ export default {
         })
     },
     through (row, type = false) {
-      let ids = type ? row : [row.id]
+      let ids = type ? row : [row]
       let resumeInfoStatusList = ids.map(item => ({
-        id: item,
+        id: item.id,
         interviewResult: 1
       }))
       this.$api
@@ -811,9 +816,9 @@ export default {
         })
     },
     eliminate (row, type = false) {
-      let ids = type ? row : [row.id]
+      let ids = type ? row : [row]
       let resumeInfoStatusList = ids.map(item => ({
-        id: item,
+        id: item.id,
         interviewResult: 2
       }))
       this.$api
@@ -835,9 +840,9 @@ export default {
         })
     },
     del (row, type = false) {
-      let ids = type ? row : [row.id]
+      let ids = type ? row : [row]
       let resumeInfoStatusList = ids.map(item => ({
-        id: item,
+        id: item.id,
         status: 1
       }))
       this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
@@ -876,9 +881,9 @@ export default {
         })
     },
     undetermined (row, type = false) {
-      let ids = type ? row : [row.id]
+      let ids = type ? row : [row]
       let resumeInfoStatusList = ids.map(item => ({
-        id: item,
+        id: item.id,
         interviewResult: 3
       }))
       this.$api
@@ -931,10 +936,10 @@ export default {
           this.queryData(this.searchForm)
         })
     },
-    sendMail ({ id }) {
+    sendMail (row) {
       this.open()
       this.state = 2
-      this.copyPickList = [id]
+      this.copyPickList = [row]
     },
     sendMailAll () {
       if (this.pickList.length) {

+ 46 - 46
src/views/candidateManage/resumeList.vue

@@ -15,25 +15,25 @@
         <el-radio-button :label="2">淘汰</el-radio-button>
         <el-radio-button :label="3">待定</el-radio-button>
         <el-radio-button :label="4">已通知</el-radio-button>
-    </el-radio-group><br/>
+    </el-radio-group><br />
     <el-dropdown v-if="table.button" @command="dropdownMethods">
-      <el-button style="background: #00a0e9;color:#fff">
-        更多操作<i class="el-icon-arrow-down el-icon--right"></i>
-      </el-button>
-      <el-dropdown-menu slot="dropdown">
-        <el-dropdown-item v-for="(item,index) in btn.slice(1)" :key="index" :command="{method: item.method}">{{item.name}}</el-dropdown-item>
-      </el-dropdown-menu>
+        <el-button style="background: #00a0e9;color:#fff">
+            更多操作<i class="el-icon-arrow-down el-icon--right"></i>
+        </el-button>
+        <el-dropdown-menu slot="dropdown">
+            <el-dropdown-item v-for="(item,index) in btn.slice(1)" :key="index" :command="{method: item.method}">{{item.name}}</el-dropdown-item>
+        </el-dropdown-menu>
     </el-dropdown>
     <div style="height:20px"></div>
-    <v-table :key="isCollapse" :table="isCollapse===1?table1:isCollapse===4?throughTable:table" :tableList="tableList" :sortType="true" :queryData="queryData" :form="searchForm" @details="details" @notice="notice" @through="through" @eliminate="eliminate" @del="del" @undetermined="undetermined" @toVedio="toVedio" @selection-change="selection" @update="update" @sendMail="sendMail" id="id"></v-table>
+    <v-table :key="isCollapse" :table="isCollapse===1?table1:isCollapse===4?throughTable:table" :tableList="tableList" :sortType="true" :queryData="queryData" :form="searchForm" @details="details" @notice="notice" @through="through" @eliminate="eliminate" @del="del" @undetermined="undetermined" @toVedio="toVedio" @selection-change="selection" @update="update" @sendMail="sendMail" id="id" :all="true"></v-table>
     <v-pager @page="callPage" :total="totalrecords"></v-pager>
     <el-dialog :visible.sync="dialogFormVisible" width="600px" :before-close="close" :close-on-click-modal="false">
         <el-form :model="form" ref="form" label-width="140px" :rules="rules" label-position="left">
             <el-form-item label-width="0">
                 <div class="title">通知群发列表</div>
                 <div class="content">
-                    <el-tag v-for="(item, index) in copyPickList" :key="item" closable @close="copyPickList.splice(index, 1)" :type="errorlist.includes(item)?'danger':'success'">
-                      {{tableList.some(i => i.id === item) ? tableList.find(i => i.id === item).delivererName + (tableList.find(i => i.id === item).delivererMail || '(无邮箱)') : ''}}
+                    <el-tag v-for="(item, index) in copyPickList" :key="item.id" closable @close="copyPickList.splice(index, 1)" :type="errorlist.includes(item.id)?'danger':'success'">
+                        {{tableList.some(i => i.id === item.id) ? tableList.find(i => i.id === item.id).delivererName + (tableList.find(i => i.id === item.id).delivererMail || '(无邮箱)') : ''}}
                     </el-tag>
                 </div>
             </el-form-item>
@@ -90,7 +90,7 @@
             <el-form-item v-for="item in formConfig" :key="item" :label="item.configName">
                 <!-- {{item.type === 2 ? ['女', '男'][info[item.fieldName]] : item.type === 8 ? ['女', '男'][info[item.fieldName]] : info[item.fieldName]}} -->
                 <div v-if="item.type === 2">{{['女', '男'][info[item.fieldName]]}}</div>
-                <el-link type="primary" v-else-if="item.type === 8" @click="openNewPage($img + info[item.fieldName])" >{{item.configName + '文件'}}</el-link>
+                <el-link type="primary" v-else-if="item.type === 8" @click="openNewPage($img + info[item.fieldName])">{{item.configName + '文件'}}</el-link>
                 <div v-else-if="item.type === 1" v-html="info[item.fieldName] ? info[item.fieldName].replace(/\n/g,'<br/>') : ''"></div>
                 <div v-else>{{info[item.fieldName]}}</div>
             </el-form-item>
@@ -262,11 +262,6 @@ export default {
         name: '删除',
         type: 'danger',
         method: 'del'
-      },
-      {
-        name: '邮件通知',
-        method: 'sendMail',
-        type: 'success'
       }
       ],
       table: {
@@ -298,6 +293,10 @@ export default {
           props: 'positionApplied'
         },
         {
+          label: '意向职位',
+          props: 'desiredPositionName'
+        },
+        {
           label: '工作年限',
           props: 'delivererWorkExp'
         },
@@ -345,11 +344,6 @@ export default {
           title: '修改',
           method: 'update',
           type: 'warning'
-        },
-        {
-          title: '邮件通知',
-          method: 'sendMail',
-          type: 'success'
         }
         ]
       },
@@ -382,6 +376,10 @@ export default {
           props: 'positionApplied'
         },
         {
+          label: '意向职位',
+          props: 'desiredPositionName'
+        },
+        {
           label: '工作年限',
           props: 'delivererWorkExp'
         },
@@ -461,6 +459,10 @@ export default {
           props: 'positionApplied'
         },
         {
+          label: '意向职位',
+          props: 'desiredPositionName'
+        },
+        {
           label: '工作年限',
           props: 'delivererWorkExp'
         },
@@ -516,7 +518,9 @@ export default {
     this.queryEmail()
   },
   methods: {
-    dropdownMethods ({ method }) {
+    dropdownMethods ({
+      method
+    }) {
       console.log(method)
       this[method + 'All']()
     },
@@ -559,6 +563,7 @@ export default {
             item.serialNumber = (this.page - 1) * 10 + index + 1
             return item
           })
+          this.copyPickList = Array.from(this.pickList)
         })
     },
     queryDownList () {
@@ -585,7 +590,10 @@ export default {
     openNewPage (url) {
       window.open(url)
     },
-    details ({ id, resumeFrom }) {
+    details ({
+      id,
+      resumeFrom
+    }) {
       this.$api
         .post('/resumeInfo/queryResumeInfoDetail', {
           reqdata: {
@@ -614,7 +622,9 @@ export default {
       })
       if (!a) return
       let resumeInfoStatusList = this.copyPickList.map(item => ({
-        id: item,
+        id: item.id,
+        sendInviteStatus: item.sendInviteStatus,
+        sendConfirmStatus: item.sendConfirmStatus,
         templateId: this.form.templateId
       }))
       this.copyPickList.length
@@ -626,10 +636,10 @@ export default {
             }
           })
           .then((res) => {
+            this.close()
             this.$alert('邮件正在发送中,请耐心等待!', '发送结果', {
               confirmButtonText: '确定',
-              callback: action => {
-              }
+              callback: action => {}
             })
             // this.errorlist = res.object.sendMailFailList.map(item => {
             //   return item.id
@@ -643,7 +653,7 @@ export default {
     notice (row) {
       this.open()
       this.state = 1
-      this.copyPickList = [row.id]
+      this.copyPickList = [row]
     },
     noticeAll () {
       if (this.pickList.length) {
@@ -657,9 +667,9 @@ export default {
       }
     },
     through (row, type = false) {
-      let ids = type ? row : [row.id]
+      let ids = type ? row : [row]
       let resumeInfoStatusList = ids.map(item => ({
-        id: item,
+        id: item.id,
         isPass: 1
       }))
       this.$api
@@ -681,9 +691,9 @@ export default {
         })
     },
     eliminate (row, type = false) {
-      let ids = type ? row : [row.id]
+      let ids = type ? row : [row]
       let resumeInfoStatusList = ids.map(item => ({
-        id: item,
+        id: item.id,
         isPass: 2
       }))
       this.$api
@@ -705,9 +715,9 @@ export default {
         })
     },
     del (row, type = false) {
-      let ids = type ? row : [row.id]
+      let ids = type ? row : [row]
       let resumeInfoStatusList = ids.map(item => ({
-        id: item,
+        id: item.id,
         status: 1
       }))
       this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
@@ -746,9 +756,9 @@ export default {
         })
     },
     undetermined (row, type = false) {
-      let ids = type ? row : [row.id]
+      let ids = type ? row : [row]
       let resumeInfoStatusList = ids.map(item => ({
-        id: item,
+        id: item.id,
         isPass: 3
       }))
       this.$api
@@ -782,7 +792,7 @@ export default {
     sendMail (row) {
       this.open()
       this.state = 2
-      this.copyPickList = [row.id]
+      this.copyPickList = [row]
     },
     sendMailAll () {
       if (this.pickList.length) {
@@ -881,11 +891,6 @@ export default {
           title: '修改',
           method: 'update',
           type: 'warning'
-        },
-        {
-          title: '邮件通知',
-          method: 'sendMail',
-          type: 'success'
         }
         ]
           : this.isCollapse === 2 ? [{
@@ -972,11 +977,6 @@ export default {
           name: '删除',
           type: 'danger',
           method: 'del'
-        },
-        {
-          name: '邮件通知',
-          method: 'sendMail',
-          type: 'success'
         }
         ]
           : this.isCollapse === 1 ? [{