xtz 4 роки тому
батько
коміт
0e45abfa64

+ 1 - 1
src/components/vNav/vNav.vue

@@ -115,7 +115,7 @@ export default {
           ]
         },
         {
-          name: '用户管理',
+          name: '系统管理',
           // menuid: 200,
           to: '',
           icon: 3,

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

@@ -51,7 +51,15 @@
         <!-- handle -->
         <el-table-column label="操作" v-if="table.handle" :fixed="table.fixed && 'right'" :width="table.width" align="center">
             <template slot-scope="scope">
-                <el-button-group style="display:flex;justify-content: center;">
+                <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-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)">
                         {{item.title}}
                         <!-- v-if="scope.row[item.props]===item.key" -->
@@ -110,6 +118,9 @@ export default {
     handleMethods (index, item, v) {
       this.$emit(v.method, item)
     },
+    dropdownMethods ({ row, method }) {
+      this.$emit(method, row)
+    },
     handleSelectionChange (val) {
       this.id && this.$emit('selection-change', val.map(item => item[this.id]))
     },

+ 6 - 6
src/views/candidateManage/candidateAll.vue

@@ -23,7 +23,7 @@
                     </el-option>
                 </el-select>
             </el-form-item>
-            <el-form-item label="简历投递职位" prop="positionApplied">
+            <el-form-item label="投递职位" prop="positionApplied">
                 <el-input placeholder="请输入投递职位" v-model="form.positionApplied" maxlength="32" show-word-limit></el-input>
             </el-form-item>
             <el-form-item label="工作年限" prop="delivererWorkExp">
@@ -41,7 +41,7 @@
             <el-form-item label="邮箱地址" prop="delivererMail">
                 <el-input placeholder="请输入邮箱地址" v-model="form.delivererMail" maxlength="32" show-word-limit></el-input>
             </el-form-item>
-            <el-form-item label="面试应聘职位" prop="desiredPositionId">
+            <el-form-item label="应聘职位" prop="desiredPositionId">
                 <el-select class="select" v-model="form.desiredPositionId" placeholder="请选择应聘职位">
                     <el-option v-for="item in positionList" :key="item.value" :label="item.label" :value="item.value">
                     </el-option>
@@ -210,7 +210,7 @@ export default {
           width: 80
         },
         {
-          label: '简历投递职位',
+          label: '投递职位',
           props: 'positionApplied'
         },
         {
@@ -234,15 +234,15 @@ export default {
           props: 'delivererMail'
         },
         {
-          label: '面试应聘职位',
+          label: '应聘职位',
           props: 'positionName'
         },
         {
-          label: '通知面试时间',
+          label: '通知时间',
           props: 'sendMailTime'
         },
         {
-          label: '完成面试时间',
+          label: '完成时间',
           props: 'confirmInterviewTime'
         },
         {

+ 23 - 6
src/views/candidateManage/candidateList.vue

@@ -8,13 +8,22 @@
 -->
 <template>
 <div class="candidateList">
-    <v-input :btn="isCollapse==1?btn1:isCollapse===2?btn2:isCollapse===3?btn3:btn0" :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>
+    </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-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-pager @page="callPage" :total="totalrecords"></v-pager>
     <el-dialog :visible.sync="dialogFormVisible" width="600px" :before-close="close" :close-on-click-modal="false">
@@ -366,7 +375,8 @@ export default {
           props: 'confirmInterviewTime'
         }
         ],
-        width: 500,
+        width: 150,
+        button: true,
         handle: [{
           title: '查看',
           method: 'details',
@@ -467,7 +477,8 @@ export default {
           options: ['未发送', '发送中', '发送成功', '发送失败']
         }
         ],
-        width: 300,
+        width: 150,
+        button: true,
         handle: [{
           title: '查看',
           method: 'details',
@@ -543,7 +554,8 @@ export default {
           props: 'rejectReason'
         }
         ],
-        width: 360,
+        width: 150,
+        button: true,
         handle: [{
           title: '查看',
           method: 'details',
@@ -616,7 +628,8 @@ export default {
           props: 'delivererMail'
         }
         ],
-        width: 420,
+        width: 150,
+        button: true,
         handle: [{
           title: '查看',
           method: 'details',
@@ -659,6 +672,10 @@ export default {
     this.queryEmail()
   },
   methods: {
+    dropdownMethods ({ method }) {
+      console.log(method)
+      this[method + 'All']()
+    },
     queryData (form = {}) {
       let page = this.page
       this.searchForm = form

+ 1 - 0
src/views/candidateManage/mailManage.vue

@@ -179,6 +179,7 @@ export default {
     display: flex;
     justify-content: center;
     align-content: center;
+    margin-bottom: 20px;
 }
 
 .box-card {

+ 24 - 8
src/views/candidateManage/resumeList.vue

@@ -8,14 +8,23 @@
 -->
 <template>
 <div class="indexPage">
-    <v-input :btn="btn" :list="list" @del="delAll" @notice="noticeAll" @through="throughAll" @eliminate="eliminateAll" @undetermined="undeterminedAll" @search="search" @sendMail="sendMailAll"></v-input>
+    <v-input :btn="btn.slice(0, 1)" :list="list" @del="delAll" @notice="noticeAll" @through="throughAll" @eliminate="eliminateAll" @undetermined="undeterminedAll" @search="search" @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-button :label="4">已通知</el-radio-button>
-    </el-radio-group>
+    </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-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-pager @page="callPage" :total="totalrecords"></v-pager>
     <el-dialog :visible.sync="dialogFormVisible" width="600px" :before-close="close" :close-on-click-modal="false">
@@ -305,7 +314,8 @@ export default {
           props: 'delivererMail'
         }
         ],
-        width: 500,
+        width: 150,
+        button: true,
         handle: [{
           title: '查看',
           method: 'details',
@@ -393,7 +403,8 @@ export default {
           options: ['未发送', '发送中', '发送成功', '发送失败']
         }
         ],
-        width: 500,
+        width: 150,
+        button: true,
         handle: [{
           title: '查看',
           method: 'details',
@@ -466,7 +477,8 @@ export default {
           props: 'delivererMail'
         }
         ],
-        width: 360,
+        width: 150,
+        button: true,
         handle: [{
           title: '查看',
           method: 'details',
@@ -504,6 +516,10 @@ export default {
     this.queryEmail()
   },
   methods: {
+    dropdownMethods ({ method }) {
+      console.log(method)
+      this[method + 'All']()
+    },
     queryData (form = {}) {
       let page = this.page
       this.searchForm = form
@@ -1041,9 +1057,9 @@ export default {
         this.table,
         'width',
         this.isCollapse === 0
-          ? 500 : this.isCollapse === 1
-            ? 360 : this.isCollapse === 2
-              ? 420 : 470
+          ? 150 : this.isCollapse === 1
+            ? 150 : this.isCollapse === 2
+              ? 150 : 150
       )
     }
   }

+ 1 - 1
src/views/candidateManage/statistics.vue

@@ -7,7 +7,7 @@
  * @LastEditTime: 2020-08-12 18:37:45
 -->
 <template>
-<div>
+<div style="margin-bottom: 20px">
     <el-card class="box-card">
         <div class="flex">
             <div ref="mychart1" :style="{width: '75%', height: '500px'}"></div>

+ 2 - 2
src/views/companyManage/basicInfo.vue

@@ -31,8 +31,7 @@
             </el-form-item>
             <el-form-item :label="$t('title.companyProfile')">
                 <editor-bar class="editor" v-model.trim="form.companyIntroduce"></editor-bar>
-                <div style="color: #666">提示: 1000字以内为佳</div>
-                <div style="color: #666">已输入:{{getText}}字</div>
+                <div style="color: #666">已输入:{{getText}}字(1000字以内为佳)</div>
             </el-form-item>
             <el-form-item v-if="show" class="button-grounp">
                 <el-button type="primary" @click="determine">{{$t('button.confirmTheChanges')}}</el-button>
@@ -187,6 +186,7 @@ export default {
     display: flex;
     justify-content: center;
     align-content: center;
+    margin-bottom: 20px;
 }
 
 .box-card {

+ 1 - 1
src/views/companyManage/procedureManage.vue

@@ -35,7 +35,7 @@
                     </el-select>
                 </div>
                 <div v-else>
-                    <div v-html="item.questionName.replace(/\n/g,'<br/>')">
+                    <div v-html="item.questionName && item.questionName.replace(/\n/g,'<br/>')">
                     </div>
                     <video width="100%" v-if="item.videoIdList && item.videoIdList.length" :src="downList.some(i => i.id === item.videoIdList[item.active]) ? $img + downList.find(i => i.id === item.videoIdList[item.active]).videoPath : ''" controls></video>
                     <div class="flex">