WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2020-12-01 9b2f52f8e276d6a80a19c2d487163e34273ec03a
forms/chinaArea/CChinaArea.vue
@@ -23,7 +23,7 @@
                    :placeholder="placeholder"
                    :value="selected"
                >
                    <view class="at-icon at-icon-chevron-right" />
                    <AtIcon :value="loading ? 'loading':'chevron-right'" />
                </AtInput>
            </view>
        </picker>
@@ -31,7 +31,7 @@
</template>
<script>
import { AtInput } from 'taro-ui-vue';
import { AtInput, AtIcon } from 'taro-ui-vue';
import ChinaLocations from './ChinaLocations';
import './cChinaArea.scss';
@@ -41,8 +41,13 @@
    name: 'CChinaArea',
    components: {
        AtInput,
        AtIcon,
    },
    props: {
        loading: {
            type: Boolean,
            default: false,
        },
        placeholder: String,
        itemData: Object,
    },