wupengfei
3 天以前 fe7d6323fb2d1c425be239c5a281abbb3df674e6
apps/housekeepingMiniApp/src/subpackages/sercice/chooseSupplier/InnerPage.vue
@@ -12,7 +12,7 @@
        :serviceCount="item.serviceCount"
      >
        <template #actions>
          <nut-button type="primary" plain>查看详情</nut-button>
          <nut-button type="primary" plain @click="goSupplierDetail(item)">查看详情</nut-button>
          <nut-button type="primary" @click="goEnterpriseEmployee(item)">选择</nut-button>
        </template>
      </ChooseSupplierCard>
@@ -69,4 +69,10 @@
    },
  });
}
function goSupplierDetail(item: API.GetStandardServiceSupplierEnterprisesQueryResultItem) {
  Taro.navigateTo({
    url: `${RouterPath.supplierDetail}?id=${item.id}`,
  });
}
</script>