| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <template>
- <a-card style="width: 100%; height:100%;">
- <a-tabs default-active-key="1">
- <!-- <a-tab-pane key="1">-->
- <!-- <span slot="tab">-->
- <!-- <a-icon type="picture" />-->
- <!-- 门店照片-->
- <!-- </span>-->
- <!-- <store-images></store-images>-->
- <!-- </a-tab-pane>-->
- <!-- <a-tab-pane key="2">-->
- <!-- <span slot="tab">-->
- <!-- <a-icon type="audit" />-->
- <!-- 实名信息-->
- <!-- </span>-->
- <!-- <store-auth-info></store-auth-info>-->
- <!-- </a-tab-pane>-->
- <!-- <a-tab-pane key="3">-->
- <!-- <span slot="tab">-->
- <!-- <a-icon type="shop" />-->
- <!-- 门店信息-->
- <!-- </span>-->
- <!-- <store-infos></store-infos>-->
- <!-- </a-tab-pane>-->
- <a-tab-pane key="1">
- <span slot="tab">
- <a-icon type="picture" />
- 门店信息
- </span>
- <store-information></store-information>
- </a-tab-pane>
- <a-tab-pane key="2">
- <span slot="tab">
- <a-icon type="picture" />
- 实名登记
- </span>
- <store-auth-information></store-auth-information>
- </a-tab-pane>
- </a-tabs>
- </a-card>
- </template>
- <script>
- import storeImages from './components/storeImages.vue';
- import storeAuthInfo from './components/storeAuthInfo.vue';
- import storeInfos from './components/storeInfos.vue';
- import StoreInformation from './components/storeInformation'
- import StoreAuthInformation from './components/storeAuthInformation'
- export default {
- components:{
- StoreAuthInformation,
- StoreInformation,
- storeImages,
- storeAuthInfo,
- storeInfos
- },
- data() {
- return {
- }
- }
- }
- </script>
- <style scoped>
- .main{
- height: 70% !important;
- }
- </style>
|