From 8dcecb78f2b67c692f054ed5c37531af43943bde Mon Sep 17 00:00:00 2001 From: 18500206848 Date: Fri, 16 Feb 2024 15:02:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/manage/works/count/index.vue | 303 ++++ src/views/manage/works/count/table/detail.vue | 248 +++ src/views/manage/works/count/table/gather.vue | 198 +++ src/views/manage/works/delayDialog.vue | 89 ++ src/views/manage/works/index.vue | 568 +++++++ src/views/manage/works/wageView.vue | 177 +++ src/views/manage/works/zpView.vue | 170 ++ .../policy}/Dialog/addGroups.vue | 0 .../policy}/Dialog/transferGroups.vue | 0 .../tenant/{talents => main/policy}/index.vue | 0 .../tenant/main/talents/Dialog/addGroups.vue | 146 ++ .../main/talents/Dialog/transferGroups.vue | 110 ++ src/views/tenant/main/talents/index.vue | 908 +++++++++++ src/views/tenant/mission/Dialog/Employ.vue | 38 +- .../mission/Dialog/EmployInformation.vue | 2 +- .../tenant/mission/Dialog/EmployNumber.vue | 3 +- src/views/tenant/mission/Dialog/Recommend.vue | 4 +- .../tenant/mission/Table/ExpiredMission.vue | 4 +- .../tenant/mission/Table/WaitingMission.vue | 10 +- src/views/tenant/mission/index.vue | 17 - .../tenant/postzp/Table/ExpiredMission.vue | 4 +- .../tenant/postzp/Table/WaitingMission.vue | 4 +- src/views/tenant/works/Dialog/Appraise.vue | 419 +++++ src/views/tenant/works/Dialog/Contrast.vue | 188 +++ src/views/tenant/works/Dialog/CopyMission.vue | 1412 +++++++++++++++++ src/views/tenant/works/Dialog/Employ.vue | 1078 +++++++++++++ .../tenant/works/Dialog/EmployInformation.vue | 526 ++++++ .../tenant/works/Dialog/EmployNumber.vue | 606 +++++++ src/views/tenant/works/Dialog/Recommend.vue | 495 ++++++ src/views/tenant/works/Dialog/Skill.vue | 293 ++++ src/views/tenant/works/Dialog/noEmployed.vue | 212 +++ .../tenant/works/Table/ExpiredMission.vue | 360 +++++ .../tenant/works/Table/FinishedMission.vue | 334 ++++ .../tenant/works/Table/OngoingMission.vue | 354 +++++ .../tenant/works/Table/WaitingMission.vue | 461 ++++++ src/views/tenant/works/Table/missionView.vue | 35 + src/views/tenant/works/Table/saveButton.vue | 38 + src/views/tenant/works/index.vue | 238 +++ 38 files changed, 9982 insertions(+), 70 deletions(-) create mode 100644 src/views/manage/works/count/index.vue create mode 100644 src/views/manage/works/count/table/detail.vue create mode 100644 src/views/manage/works/count/table/gather.vue create mode 100644 src/views/manage/works/delayDialog.vue create mode 100644 src/views/manage/works/index.vue create mode 100644 src/views/manage/works/wageView.vue create mode 100644 src/views/manage/works/zpView.vue rename src/views/tenant/{talents => main/policy}/Dialog/addGroups.vue (100%) rename src/views/tenant/{talents => main/policy}/Dialog/transferGroups.vue (100%) rename src/views/tenant/{talents => main/policy}/index.vue (100%) create mode 100644 src/views/tenant/main/talents/Dialog/addGroups.vue create mode 100644 src/views/tenant/main/talents/Dialog/transferGroups.vue create mode 100644 src/views/tenant/main/talents/index.vue create mode 100644 src/views/tenant/works/Dialog/Appraise.vue create mode 100644 src/views/tenant/works/Dialog/Contrast.vue create mode 100644 src/views/tenant/works/Dialog/CopyMission.vue create mode 100644 src/views/tenant/works/Dialog/Employ.vue create mode 100644 src/views/tenant/works/Dialog/EmployInformation.vue create mode 100644 src/views/tenant/works/Dialog/EmployNumber.vue create mode 100644 src/views/tenant/works/Dialog/Recommend.vue create mode 100644 src/views/tenant/works/Dialog/Skill.vue create mode 100644 src/views/tenant/works/Dialog/noEmployed.vue create mode 100644 src/views/tenant/works/Table/ExpiredMission.vue create mode 100644 src/views/tenant/works/Table/FinishedMission.vue create mode 100644 src/views/tenant/works/Table/OngoingMission.vue create mode 100644 src/views/tenant/works/Table/WaitingMission.vue create mode 100644 src/views/tenant/works/Table/missionView.vue create mode 100644 src/views/tenant/works/Table/saveButton.vue create mode 100644 src/views/tenant/works/index.vue diff --git a/src/views/manage/works/count/index.vue b/src/views/manage/works/count/index.vue new file mode 100644 index 0000000..83e3a20 --- /dev/null +++ b/src/views/manage/works/count/index.vue @@ -0,0 +1,303 @@ + + + + + diff --git a/src/views/manage/works/count/table/detail.vue b/src/views/manage/works/count/table/detail.vue new file mode 100644 index 0000000..0a740c4 --- /dev/null +++ b/src/views/manage/works/count/table/detail.vue @@ -0,0 +1,248 @@ + + + + + diff --git a/src/views/manage/works/count/table/gather.vue b/src/views/manage/works/count/table/gather.vue new file mode 100644 index 0000000..86c6206 --- /dev/null +++ b/src/views/manage/works/count/table/gather.vue @@ -0,0 +1,198 @@ + + + + + diff --git a/src/views/manage/works/delayDialog.vue b/src/views/manage/works/delayDialog.vue new file mode 100644 index 0000000..bfcd78d --- /dev/null +++ b/src/views/manage/works/delayDialog.vue @@ -0,0 +1,89 @@ + + + + + \ No newline at end of file diff --git a/src/views/manage/works/index.vue b/src/views/manage/works/index.vue new file mode 100644 index 0000000..1d99f95 --- /dev/null +++ b/src/views/manage/works/index.vue @@ -0,0 +1,568 @@ + + + + + diff --git a/src/views/manage/works/wageView.vue b/src/views/manage/works/wageView.vue new file mode 100644 index 0000000..fac27be --- /dev/null +++ b/src/views/manage/works/wageView.vue @@ -0,0 +1,177 @@ + + + + + diff --git a/src/views/manage/works/zpView.vue b/src/views/manage/works/zpView.vue new file mode 100644 index 0000000..9e4a6f2 --- /dev/null +++ b/src/views/manage/works/zpView.vue @@ -0,0 +1,170 @@ + + + + + diff --git a/src/views/tenant/talents/Dialog/addGroups.vue b/src/views/tenant/main/policy/Dialog/addGroups.vue similarity index 100% rename from src/views/tenant/talents/Dialog/addGroups.vue rename to src/views/tenant/main/policy/Dialog/addGroups.vue diff --git a/src/views/tenant/talents/Dialog/transferGroups.vue b/src/views/tenant/main/policy/Dialog/transferGroups.vue similarity index 100% rename from src/views/tenant/talents/Dialog/transferGroups.vue rename to src/views/tenant/main/policy/Dialog/transferGroups.vue diff --git a/src/views/tenant/talents/index.vue b/src/views/tenant/main/policy/index.vue similarity index 100% rename from src/views/tenant/talents/index.vue rename to src/views/tenant/main/policy/index.vue diff --git a/src/views/tenant/main/talents/Dialog/addGroups.vue b/src/views/tenant/main/talents/Dialog/addGroups.vue new file mode 100644 index 0000000..4598053 --- /dev/null +++ b/src/views/tenant/main/talents/Dialog/addGroups.vue @@ -0,0 +1,146 @@ + + + + + \ No newline at end of file diff --git a/src/views/tenant/main/talents/Dialog/transferGroups.vue b/src/views/tenant/main/talents/Dialog/transferGroups.vue new file mode 100644 index 0000000..0b60c78 --- /dev/null +++ b/src/views/tenant/main/talents/Dialog/transferGroups.vue @@ -0,0 +1,110 @@ + + + + + diff --git a/src/views/tenant/main/talents/index.vue b/src/views/tenant/main/talents/index.vue new file mode 100644 index 0000000..85f8bf8 --- /dev/null +++ b/src/views/tenant/main/talents/index.vue @@ -0,0 +1,908 @@ + + + + + diff --git a/src/views/tenant/mission/Dialog/Employ.vue b/src/views/tenant/mission/Dialog/Employ.vue index 2d0922f..8b21d7a 100644 --- a/src/views/tenant/mission/Dialog/Employ.vue +++ b/src/views/tenant/mission/Dialog/Employ.vue @@ -327,11 +327,11 @@ export default { personType: [ { value: 1, - label: "待录用", + label: "待登记", }, { value: 2, - label: "已录用", + label: "已录用登记", }, ], drawer: false, @@ -435,40 +435,6 @@ export default { slot: true, width: 110 }, - { - label: "最新保期", - prop: "period", - searchSpan: 5, - display: false, - slot: true, - width: 190 - }, - { - label: "商保状态", - prop: "serviceStatus", - searchSpan: 5, - display: false, - type: 'select', - dicData: [ - { - label: '未生效', - value: 0 - }, - { - label: '生效中', - value: 1 - }, - { - label: '即将失效', - value: 2 - }, - { - label: '已失效', - value: 3 - }, - ], - slot: true, - }, { label: "工种", prop: "workTypes", diff --git a/src/views/tenant/mission/Dialog/EmployInformation.vue b/src/views/tenant/mission/Dialog/EmployInformation.vue index 8b6f5e3..a137f9b 100644 --- a/src/views/tenant/mission/Dialog/EmployInformation.vue +++ b/src/views/tenant/mission/Dialog/EmployInformation.vue @@ -7,7 +7,7 @@ :before-close="drawerClose" class="createOrderTable">
-

+

diff --git a/src/views/tenant/mission/Dialog/EmployNumber.vue b/src/views/tenant/mission/Dialog/EmployNumber.vue index 572c760..8558871 100644 --- a/src/views/tenant/mission/Dialog/EmployNumber.vue +++ b/src/views/tenant/mission/Dialog/EmployNumber.vue @@ -1,14 +1,13 @@