WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2022-03-01 846a5ab3a1f0d399a9891bc0880765fbf1e14608
forms/datePicker/CDatePicker.vue
@@ -6,7 +6,7 @@
<template>
    <view
        class="c-date-picker"
        :class="readyOnly ? 'read-only':''"
        :class="readOnly ? 'read-only':''"
    >
        <CDateRangeAction
            v-if="mode==='dateRange'"
@@ -23,7 +23,7 @@
                :placeholder="placeholder"
            >
                <view
                    v-show="!readyOnly"
                    v-show="!readOnly"
                    class="at-icon at-icon-chevron-right"
                />
            </AtInput>
@@ -43,7 +43,7 @@
                :placeholder="placeholder"
            >
                <view
                    v-show="!readyOnly"
                    v-show="!readOnly"
                    class="at-icon at-icon-chevron-right"
                />
            </AtInput>
@@ -65,7 +65,7 @@
                    :placeholder="placeholder"
                >
                    <view
                        v-show="!readyOnly"
                        v-show="!readOnly"
                        class="at-icon at-icon-chevron-right"
                    />
                </AtInput>
@@ -104,7 +104,7 @@
        // 结束日期
        limitEnd: String,
        // 是否只读
        readyOnly: {
        readOnly: {
            type: Boolean,
            default: false,
        },