gaoluyang
3 天以前 b92ea6fb8b4a75a0d7c561bd045f1a8b1720ddd1
src/views/personnelManagement/onboarding/index.vue
@@ -4,177 +4,245 @@
      <div>
        <span class="search_title">姓名:</span>
        <el-input
            v-model="searchForm.customerName"
            style="width: 240px"
            placeholder="请输入名称搜索"
            @change="handleQuery"
            clearable
            :prefix-icon="Search"
          v-model="searchForm.staffName"
          style="width: 240px"
          placeholder="请输入姓名搜索"
          @change="handleQuery"
          clearable
          :prefix-icon="Search"
        />
        <el-button type="primary" @click="handleQuery" style="margin-left: 10px">搜索</el-button>
        <el-button type="primary" @click="handleQuery" style="margin-left: 10px"
          >搜索</el-button
        >
      </div>
      <div>
        <el-button type="primary" @click="openForm">新增入职</el-button>
        <el-button type="primary" @click="openForm('add')">新增入职</el-button>
        <el-button @click="handleOut">导出</el-button>
        <el-button type="danger" plain @click="handleDelete">删除</el-button>
      </div>
    </div>
    <div class="table_list">
      <PIMTable :column="tableColumn" :tableData="tableData" :page="page" :isSelection="true"
                :handleSelectionChange="handleSelectionChange" :tableLoading="tableLoading" @pagination="pagination"
                :total="total"></PIMTable>
      <PIMTable
        rowKey="id"
        :column="tableColumn"
        :tableData="tableData"
        :page="page"
        :isSelection="true"
        @selection-change="handleSelectionChange"
        :tableLoading="tableLoading"
        @pagination="pagination"
        :total="total"
      ></PIMTable>
    </div>
    <form-dia ref="formDia" @close="handleQuery"></form-dia>
  </div>
</template>
<script setup>
import {Search} from "@element-plus/icons-vue";
import {ref} from "vue";
import { Search } from "@element-plus/icons-vue";
import {onMounted, ref} from "vue";
import FormDia from "@/views/personnelManagement/onboarding/components/formDia.vue";
import {staffJoinDel, staffJoinListPage} from "@/api/personnelManagement/onboarding.js";
import {ElMessageBox} from "element-plus";
const data = reactive({
  searchForm: {
    customerName: '',
    staffName: "",
  },
  form: {
    salesLedgerId: '',
    customerName: '',
    salesman: '',
    projectName: '',
    productData: []
  },
  rules: {
    salesLedgerId: [{ required: true, message: "请选择", trigger: "change" }]
  }
})
const { searchForm, form, rules } = toRefs(data)
});
const { searchForm } = toRefs(data);
const tableColumn = ref([
  {
    label: '状态',
    prop: 'paymentDate',
    dataType: 'tag',
    label: "状态",
    prop: "staffState",
    dataType: "tag",
    formatData: (params) => {
      if (params == 0) {
        return '在职';
        return "离职";
      } else if (params == 1) {
        return '离职';
        return "在职";
      } else {
        return null
        return null;
      }
    },
    formatType: (params) => {
      if (params == 0) {
        return 'primary';
        return "danger";
      } else if (params == 1) {
        return 'danger';
        return "primary";
      } else {
        return null
        return null;
      }
    }
    },
  },
  {
    label: '员工编号',
    prop: 'supplierName',
    label: "员工编号",
    prop: "staffNo",
  },
  {
    label: '姓名',
    prop: 'currentPaymentAmount',
    label: "姓名",
    prop: "staffName",
  },
  {
    label: '性别',
    prop: 'paymentMethod'
    label: "性别",
    prop: "sex",
  },
  {
    label: '籍贯',
    prop: 'registrant'
    label: "籍贯",
    prop: "nativePlace",
  },
  {
    label: '岗位',
    prop: 'registrationtDate'
    label: "岗位",
    prop: "postJob",
  },
  {
    label: '家庭住址',
    prop: 'registrationtDate'
    label: "家庭住址",
    prop: "adress",
  },
  {
    label: '第一学历',
    prop: 'registrationtDate'
    label: "第一学历",
    prop: "firstStudy",
  },
  {
    label: '专业',
    prop: 'registrationtDate'
    label: "专业",
    prop: "profession",
  },
  {
    label: '身份证号',
    prop: 'registrationtDate'
    label: "身份证号",
    prop: "identityCard",
  },
  {
    label: '年龄',
    prop: 'registrationtDate'
    label: "年龄",
    prop: "age",
  },
  {
    label: '联系电话',
    prop: 'registrationtDate'
    label: "联系电话",
    prop: "phone",
  },
  {
    label: '紧急联系人',
    prop: 'registrationtDate'
    label: "紧急联系人",
    prop: "emergencyContact",
    width: 120
  },
  {
    label: '联系电话',
    prop: 'registrationtDate'
    label: "联系电话",
    prop: "emergencyContactPhone",
  },
  {
    label: '合同年限',
    prop: 'registrationtDate'
    label: "合同年限",
    prop: "contractTerm",
  },
  {
    label: '合同开始日期',
    prop: 'registrationtDate'
    label: "合同开始日期",
    prop: "contractStartTime",
    width: 120
  },
  {
    label: '合同结束日期',
    prop: 'registrationtDate'
    label: "合同结束日期",
    prop: "contractEndTime",
    width: 120
  },
])
const tableData = ref([])
const selectedRows = ref([])
const tableLoading = ref(false)
  {
    dataType: "action",
    label: "操作",
    align: "center",
    fixed: 'right',
    operation: [
      {
        name: "编辑",
        type: "text",
        clickFun: (row) => {
          openForm("edit", row);
        },
      },
    ],
  },
]);
const tableData = ref([]);
const selectedRows = ref([]);
const tableLoading = ref(false);
const page = reactive({
  current: 1,
  size: 100,
})
const total = ref(0)
});
const total = ref(0);
const formDia = ref()
const { proxy } = getCurrentInstance()
// 查询列表
/** 搜索按钮操作 */
const handleQuery = () => {
  page.current = 1
  getList()
}
  page.current = 1;
  getList();
};
const pagination = (obj) => {
  page.current = obj.page;
  page.size = obj.limit;
  getList()
}
  getList();
};
const getList = () => {
  tableLoading.value = true
  ledgerListPage({...searchForm.value, ...page}).then(res => {
    tableLoading.value = false
    tableData.value = res.records;
    total.value = res.total
  tableLoading.value = true;
  staffJoinListPage({...page, ...searchForm.value, staffState: 1}).then(res => {
    tableLoading.value = false;
    tableData.value = res.data.records
    total.value = res.data.total;
  }).catch(err => {
    tableLoading.value = false;
  })
}
};
// 表格选择数据
const handleSelectionChange = (selection) => {
  console.log('selection', selection)
  selectedRows.value = selection.filter(item => item.salesContractNo !== undefined);
}
  selectedRows.value = selection;
};
// 打开弹框
const openForm = () => {
const openForm = (type, row) => {
  nextTick(() => {
    formDia.value?.openDialog(type, row)
  })
};
}
// 删除
const handleDelete = () => {
  let ids = [];
  if (selectedRows.value.length > 0) {
    ids = selectedRows.value.map((item) => item.id);
  } else {
    proxy.$modal.msgWarning("请选择数据");
    return;
  }
  ElMessageBox.confirm("选中的内容将被删除,是否确认删除?", "导出", {
    confirmButtonText: "确认",
    cancelButtonText: "取消",
    type: "warning",
  })
      .then(() => {
        staffJoinDel(ids).then((res) => {
          proxy.$modal.msgSuccess("删除成功");
          getList();
        });
      })
      .catch(() => {
        proxy.$modal.msg("已取消");
      });
};
// 导出
const handleOut = () => {
  ElMessageBox.confirm("选中的内容将被导出,是否确认导出?", "导出", {
    confirmButtonText: "确认",
    cancelButtonText: "取消",
    type: "warning",
  })
      .then(() => {
        proxy.download("/staff/staffJoinLeaveRecord/export", {staffState: 1}, "人员入职.xlsx");
      })
      .catch(() => {
        proxy.$modal.msg("已取消");
      });
};
onMounted(() => {
  getList();
});
</script>
<style scoped>
</style>
<style scoped></style>