Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

index.vue 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb :crumbs='crumbs'></bread-crumb>
  5. </div>
  6. <!--<el-checkbox style="float: right;margin-right: 35px;padding-top: 20px;height: 15px" v-model="is_open" @change="changeOpen">是否启用自动扣减功能</el-checkbox>-->
  7. <div class="app-container" >
  8. <div class="service-box">
  9. <el-tabs v-model="activeName">
  10. <!--<el-tab-pane label="厂家" name="first">-->
  11. <!--<manufacturer></manufacturer>-->
  12. <!--</el-tab-pane>-->
  13. <!--<el-tab-pane label="经销商">-->
  14. <!--<dealer></dealer>-->
  15. <!--</el-tab-pane>-->
  16. <el-tab-pane label="商品类型">
  17. <good-type></good-type>
  18. </el-tab-pane>
  19. <!--<el-tab-pane label="商品信息">-->
  20. <!--<good-info></good-info>-->
  21. <!--</el-tab-pane>-->
  22. <el-tab-pane label="自动扣减">
  23. <automatic-reduce></automatic-reduce>
  24. </el-tab-pane>
  25. </el-tabs>
  26. </div>
  27. </div>
  28. </div>
  29. </template>
  30. <script>
  31. import Dealer from './config/dealer'
  32. import Manufacturer from './config/manufacturer'
  33. import GoodInfo from './config/goodInfo'
  34. import GoodType from './config/goodType'
  35. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  36. import AutomaticReduce from './config/automaticReduce'
  37. export default {
  38. name: 'service',
  39. components: {
  40. AutomaticReduce,
  41. GoodType,
  42. GoodInfo,
  43. Manufacturer,
  44. Dealer,
  45. BreadCrumb
  46. },
  47. data() {
  48. return {
  49. is_open: false,
  50. crumbs: [
  51. { path: false, name: '库存管理' },
  52. { path: '/stock/config', name: '库存配置' }
  53. ],
  54. activeName: 'first',
  55. config:null,
  56. }
  57. },
  58. methods: {
  59. handleClick(tab, event) {
  60. console.log(tab, event, this.activeName)
  61. }
  62. },created(){
  63. }
  64. }
  65. </script>