1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <div class="studioBox">
- <div class="studioBoxTop">
- <div class="studioBoxTLeft">
- <StudioEvaBasicData></StudioEvaBasicData>
- <ActLineChat></ActLineChat>
- </div>
- <div class="tudioBoxTRight">
- <div>活动类型统计</div>
- <div>
- <ActTypeTable></ActTypeTable>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import StudioEvaBasicData from "./components/studioEvaBasicData.vue";
- import ActLineChat from "./components/actLineChat.vue";
- import ActTypeTable from './components/actTypeTable.vue';
- export default {
- components: {
- StudioEvaBasicData,
- ActLineChat,
- ActTypeTable,
- },
- data() {
- return {};
- },
- };
- </script>
- <style scoped>
- .studioBox {
- width: 100%;
- background: #fff;
- height: 100%;
- }
- .studioBoxTop {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- align-items: flex-start;
- }
- .tudioBoxTRight {
- width: 410px;
- border: 1px solid #e6e6e6;
- box-shadow: 0px 0px 5px 0px #e6e6e6;
- border-radius: 10px;
- padding: 15px 10px;
- margin: 0 0 0 30px;
- }
- .tudioBoxTRight > div:first-child {
- color: #3050c2;
- font-size: 18px;
- font-weight: bold;
- }
- </style>
|