123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <template>
- <div class="m-color__list">
- <div class="m-color__section">
- <div class="m-color__top" :style="{ backgroundColor: state1.currentColor }">
- <p class="m-color__title">Brand Color</p>
- <p class="m-color__desc">{{ state1.currentColor }}</p>
- </div>
- <div class="m-color__bottom">
- <div @click="mColorItemAction1(index)" :style="{ backgroundColor: item }"
- v-for="(item, index) in state1.colorList" :key="index" class="m-color__item"></div>
- </div>
- </div>
- <div class="m-color__section">
- <div class="m-color__top" :style="{ backgroundColor: state2.currentColor }">
- <p class="m-color__title">Brand Color</p>
- <p class="m-color__desc">{{ state2.currentColor }}</p>
- </div>
- <div class="m-color__bottom">
- <div @click="mColorItemAction2(index)" :style="{ backgroundColor: item }"
- v-for="(item, index) in state2.colorList" :key="index" class="m-color__item"></div>
- </div>
- </div>
- <div class="m-color__section">
- <div class="m-color__top" :style="{ backgroundColor: state3.currentColor }">
- <p class="m-color__title">Brand Color</p>
- <p class="m-color__desc">{{ state3.currentColor }}</p>
- </div>
- <div class="m-color__bottom">
- <div @click="mColorItemAction3(index)" :style="{ backgroundColor: item }"
- v-for="(item, index) in state3.colorList" :key="index" class="m-color__item"></div>
- </div>
- </div>
- <div class="m-color__section">
- <div class="m-color__top" :style="{ backgroundColor: state4.currentColor }">
- <p class="m-color__title">Brand Color</p>
- <p class="m-color__desc">{{ state4.currentColor }}</p>
- </div>
- <div class="m-color__bottom">
- <div @click="mColorItemAction4(index)" :style="{ backgroundColor: item }"
- v-for="(item, index) in state4.colorList" :key="index" class="m-color__item"></div>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import { reactive } from 'vue-demi';
- const state1 = reactive({
- currentColor: '#67C23A',
- colorList: ['#67C23A', '#529B2E', '#95D475', '#B3E19D', '#D1EDC4', '#E1F3D8', '#F0F9EB']
- })
- const state2 = reactive({
- currentColor: '#E6A23C',
- colorList: ['#E6A23C', '#B88230', '#EEBE77', '#F3D19E', '#F8E3C5', '#FAECD8', '#FDF6EC']
- })
- const state3 = reactive({
- currentColor: '#F56C6C',
- colorList: ['#F56C6C', '#C45656', '#F89898', '#FAB6B6', '#FCD3D3', '#FDE2E2', '#FEF0F0']
- })
- const state4 = reactive({
- currentColor: '#909399',
- colorList: ['#909399', '#73767A', '#B1B3B8', '#C8C9CC', '#DEDFE0', '#E9E9EB', '#F4F4F5']
- })
- const mColorItemAction1 = (index) => {
- state1.currentColor = state1.colorList[index];
- }
- const mColorItemAction2 = (index) => {
- state2.currentColor = state2.colorList[index];
- }
- const mColorItemAction3 = (index) => {
- state3.currentColor = state3.colorList[index];
- }
- const mColorItemAction4 = (index) => {
- state4.currentColor = state4.colorList[index];
- }
- </script>
- <style lang="scss" scoped>
- // @import '../../styles/components/button.scss';
- .m-color__list {
- display: flex;
- .m-color__section {
- width: 210px;
- height: 112px;
- border-radius: 5px;
- margin-left: 20px;
- &:first-child {
- margin-left: 0px;
- }
- .m-color__top {
- color: #fff;
- height: 60%;
- padding: 10px 0 0 20px;
- border-top-left-radius: 5px;
- border-top-right-radius: 5px;
- .m-color__title {
- font-size: 16px;
- }
- .m-color__desc {
- font-size: 14px;
- }
- }
- .m-color__bottom {
- height: 40%;
- display: flex;
- .m-color__item {
- width: calc(100% / 7);
- cursor: pointer;
- }
- }
- }
- }
- </style>
|