hotelInfo.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <template>
  2. <a-card style="width: 100%; height:100%;">
  3. <a-tabs default-active-key="1">
  4. <!-- <a-tab-pane key="1">-->
  5. <!-- <span slot="tab">-->
  6. <!-- <a-icon type="picture" />-->
  7. <!-- 门店照片-->
  8. <!-- </span>-->
  9. <!-- <store-images></store-images>-->
  10. <!-- </a-tab-pane>-->
  11. <!-- <a-tab-pane key="2">-->
  12. <!-- <span slot="tab">-->
  13. <!-- <a-icon type="audit" />-->
  14. <!-- 实名信息-->
  15. <!-- </span>-->
  16. <!-- <store-auth-info></store-auth-info>-->
  17. <!-- </a-tab-pane>-->
  18. <!-- <a-tab-pane key="3">-->
  19. <!-- <span slot="tab">-->
  20. <!-- <a-icon type="shop" />-->
  21. <!-- 门店信息-->
  22. <!-- </span>-->
  23. <!-- <store-infos></store-infos>-->
  24. <!-- </a-tab-pane>-->
  25. <a-tab-pane key="1">
  26. <span slot="tab">
  27. <a-icon type="picture" />
  28. 门店信息
  29. </span>
  30. <store-information></store-information>
  31. </a-tab-pane>
  32. <a-tab-pane key="2">
  33. <span slot="tab">
  34. <a-icon type="picture" />
  35. 实名登记
  36. </span>
  37. <store-auth-information></store-auth-information>
  38. </a-tab-pane>
  39. </a-tabs>
  40. </a-card>
  41. </template>
  42. <script>
  43. import storeImages from './components/storeImages.vue';
  44. import storeAuthInfo from './components/storeAuthInfo.vue';
  45. import storeInfos from './components/storeInfos.vue';
  46. import StoreInformation from './components/storeInformation'
  47. import StoreAuthInformation from './components/storeAuthInformation'
  48. export default {
  49. components:{
  50. StoreAuthInformation,
  51. StoreInformation,
  52. storeImages,
  53. storeAuthInfo,
  54. storeInfos
  55. },
  56. data() {
  57. return {
  58. }
  59. }
  60. }
  61. </script>
  62. <style scoped>
  63. .main{
  64. height: 70% !important;
  65. }
  66. </style>