wupengfei
2 天以前 d6ec7528f6694aee6d2c57d1d9b2aab3ceddcdeb
apps/housekeepingMiniApp/src/subpackages/sercice/chooseEnterpriseEmployee/InnerPage.vue
@@ -16,7 +16,9 @@
        :workExperience="item.workExperience"
      >
        <template #actions>
          <nut-button type="primary" plain>查看详情</nut-button>
          <nut-button type="primary" plain @click="goEnterpriseEmployeeDetail(item)"
            >查看详情</nut-button
          >
          <nut-button type="primary" @click="handleChoose(item)">选择</nut-button>
        </template>
      </ChooseServerCard>
@@ -70,4 +72,10 @@
  } as SelectEnterpriseEmployeeEvent);
  goBack(2);
}
function goEnterpriseEmployeeDetail(item: API.GetStandardServiceServersQueryResultItem) {
  Taro.navigateTo({
    url: `${RouterPath.EnterpriseEmployeeDetail}?id=${item.id}&userId=${item.userId}`,
  });
}
</script>