studioEvaluate.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <div class="studioBox">
  3. <div class="studioBoxTop">
  4. <div class="studioBoxTLeft">
  5. <StudioEvaBasicData></StudioEvaBasicData>
  6. <ActLineChat></ActLineChat>
  7. </div>
  8. <div class="tudioBoxTRight">
  9. <div>活动类型统计</div>
  10. <div>
  11. <ActTypeTable></ActTypeTable>
  12. </div>
  13. </div>
  14. </div>
  15. </div>
  16. </template>
  17. <script>
  18. import StudioEvaBasicData from "./components/studioEvaBasicData.vue";
  19. import ActLineChat from "./components/actLineChat.vue";
  20. import ActTypeTable from './components/actTypeTable.vue';
  21. export default {
  22. components: {
  23. StudioEvaBasicData,
  24. ActLineChat,
  25. ActTypeTable,
  26. },
  27. data() {
  28. return {};
  29. },
  30. };
  31. </script>
  32. <style scoped>
  33. .studioBox {
  34. width: 100%;
  35. background: #fff;
  36. height: 100%;
  37. }
  38. .studioBoxTop {
  39. display: flex;
  40. flex-direction: row;
  41. flex-wrap: nowrap;
  42. align-items: flex-start;
  43. }
  44. .tudioBoxTRight {
  45. width: 410px;
  46. border: 1px solid #e6e6e6;
  47. box-shadow: 0px 0px 5px 0px #e6e6e6;
  48. border-radius: 10px;
  49. padding: 15px 10px;
  50. margin: 0 0 0 30px;
  51. }
  52. .tudioBoxTRight > div:first-child {
  53. color: #3050c2;
  54. font-size: 18px;
  55. font-weight: bold;
  56. }
  57. </style>