fast_upload.vue 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb :crumbs='crumbs'></bread-crumb>
  5. </div>
  6. <div class="app-container">
  7. <div class="service-box">
  8. <el-tabs v-model="activeName">
  9. <!-- <el-tab-pane label="国家质控平台" name="first">
  10. <fast-country></fast-country>
  11. </el-tab-pane> -->
  12. <el-tab-pane label="省级质控平台" name="first">
  13. <fast-province></fast-province>
  14. </el-tab-pane>
  15. <el-tab-pane label="市级质控平台">
  16. <fast-city></fast-city>
  17. </el-tab-pane>
  18. </el-tabs>
  19. </div>
  20. </div>
  21. </div>
  22. </template>
  23. <script>
  24. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  25. import FastCountry from './fast/FastCountry'
  26. import FastProvince from './fast/FastProvince'
  27. import FastCity from './fast/FastCity'
  28. export default {
  29. name: 'export',
  30. components: {
  31. FastCity,
  32. FastProvince,
  33. FastCountry,
  34. BreadCrumb
  35. },
  36. data(){
  37. return{
  38. crumbs: [
  39. { path: false, name: '质控上报' },
  40. { path: '/upload/fast', name: '快捷上报' }
  41. ],
  42. activeName: 'first',
  43. }
  44. }
  45. }
  46. </script>
  47. <style scoped>
  48. </style>