zhengyiming
3 天以前 9c2cb0c24dabf68ca5f4703340ed2b1f13ddf969
apps/bMiniApp/src/subpackages/flexJobManage/flexJobManage/InnerPage.vue
@@ -18,7 +18,21 @@
    :key="queryState.userSignContractStatus"
  >
    <template #renderItem="{ item }">
      <FlexJobCard :show-done-detail="false" :show-footer-left="false" @click="goDetail(item)">
      <FlexJobCard
        :show-done-detail="false"
        :show-footer-left="false"
        :name="item.name"
        :gender="item.gender"
        :age="item.age"
        :isReal="item.userIsReal"
        :personalIdentityContent="item.personalIdentityContent"
        :educationalBackgroundContent="item.educationalBackgroundContent"
        :taskCount="item.taskCount"
        :avatar="item.avatar"
        :workExperience="item.workExperience"
        :workSeniority="item.workSeniority"
        @click="goDetail(item)"
      >
        <template #footerRight>
          <span></span>
          <!-- <template
@@ -88,7 +102,7 @@
function goDetail(item: API.GetEnterpriseEmployeesQueryResultItem) {
  Taro.navigateTo({
    url: `${RouterPath.flexJobDetailFromManage}?userId=${item.id}`,
    url: `${RouterPath.flexJobDetailFromManage}?enterpriseEmployeeId=${item.id}`,
  });
}