WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2020-12-02 73c27460075c56ebeb696341fb1b9cae220dd7e0
微调主色,优化表单验证错误状态显示
1 files added
8 files modified
44 ■■■■ changed files
forms/chinaArea/cChinaArea.scss 3 ●●●●● patch | view | raw | blame | history
forms/form/cForm.scss 8 ●●●● patch | view | raw | blame | history
forms/imagePicker/cImagePicker.scss 3 ●●●●● patch | view | raw | blame | history
forms/input/CInput.vue 5 ●●●●● patch | view | raw | blame | history
forms/input/cInput.scss 12 ●●●●● patch | view | raw | blame | history
forms/input/cInputPhoneCode.scss 5 ●●●● patch | view | raw | blame | history
forms/select/cSelect.scss 3 ●●●●● patch | view | raw | blame | history
forms/textarea/cTextArea.scss 3 ●●●●● patch | view | raw | blame | history
layout/h5Page/cNavBar.scss 2 ●●● patch | view | raw | blame | history
forms/chinaArea/cChinaArea.scss
@@ -25,4 +25,7 @@
            animation: atRotate 1s linear infinite;
        }
    }
    .at-input__icon {
        display: none;
    }
}
forms/form/cForm.scss
@@ -58,12 +58,12 @@
        [type=primary] {
            font-size: 0.7rem;
            line-height: 2.2;
            border: 1PX solid #1e8ad2;
            background: #1e8ad2;
            border: 1PX solid #2093df;
            background: #2093df;
            &:not([disabled]):active {
                opacity: .6;
                border: 1PX solid #1e8ad2;
                background: #1e8ad2;
                border: 1PX solid #2093df;
                background: #2093df;
            }
        }
    }
forms/imagePicker/cImagePicker.scss
@@ -50,6 +50,9 @@
            }
        }
    }
    .at-input__icon {
        display: none;
    }
    .c-image-picker-view {
        .at-curtain__container {
            width: 95%;
forms/input/CInput.vue
@@ -16,10 +16,9 @@
    >
        <slot />
    </AtInput>
</template>
<script>
</template><script>
import { AtInput } from 'taro-ui-vue';
import './cInput.scss';
export default {
    name: 'CInput',
forms/input/cInput.scss
New file
@@ -0,0 +1,12 @@
/**
 * CInput
 * @author Tevin
 */
@import "../../common/sassMixin";
.c-input {
    .at-input__icon {
        display: none;
    }
}
forms/input/cInputPhoneCode.scss
@@ -9,9 +9,12 @@
    .c-input-phone-btn {
        margin-right: 0.426rem;
        border: none;
        background: #1e8ad2;
        background: #2093df;
        .at-button__text {
            vertical-align: middle;
        }
    }
    .at-input__icon {
        display: none;
    }
}
forms/select/cSelect.scss
@@ -20,4 +20,7 @@
            color: #ccc;
        }
    }
    .at-input__icon {
        display: none;
    }
}
forms/textarea/cTextArea.scss
@@ -19,4 +19,7 @@
            }
        }
    }
    .at-input__icon {
        display: none;
    }
}
layout/h5Page/cNavBar.scss
@@ -8,7 +8,7 @@
.c-nav-bar {
    position: relative;
    .at-nav-bar {
        background-color: #1e8ad2;
        background-color: #2093df;
    }
    .at-nav-bar__left-view,
    .at-nav-bar__right-view,