DetailDialog.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <el-dialog :close-on-click-modal="false" title="提示" :visible.sync="allianceVisible" width="890px">
  3. <el-tabs v-model="activeName">
  4. <el-tab-pane label="基本信息" name="base">
  5. <BaseInfo :card="baseInfo"></BaseInfo>
  6. </el-tab-pane>
  7. <el-tab-pane label="参与商家" name="second">
  8. <JoinShop :card-id="baseInfo.id"></JoinShop>
  9. </el-tab-pane>
  10. <el-tab-pane label="购买用户" name="third">
  11. <Buyers :card-id="baseInfo.id"></Buyers>
  12. </el-tab-pane>
  13. </el-tabs>
  14. </el-dialog>
  15. </template>
  16. <script>
  17. import BaseInfo from './BaseInfo'
  18. import JoinShop from './JoinShop'
  19. import Buyers from './Buyers.vue'
  20. export default {
  21. components: { BaseInfo, JoinShop, Buyers },
  22. data() {
  23. return {
  24. activeName: 'base',
  25. allianceVisible: false,
  26. baseInfo: {}
  27. }
  28. },
  29. watch: {
  30. allianceVisible(value) {
  31. if (!value) {
  32. this.baseInfo = {}
  33. this.activeName = 'base'
  34. }
  35. }
  36. },
  37. methods: {
  38. handleOpen(row) {
  39. this.allianceVisible = true
  40. this.baseInfo = row
  41. }
  42. }
  43. }
  44. </script>
  45. <style lang="scss" scoped>
  46. ::v-deep .el-descriptions__header {
  47. margin-bottom: 10px;
  48. }
  49. </style>