更新记录

2.0.4(2024-01-07)

组件优化

2.0.3(2024-01-07)

组件优化

2.0.2(2023-10-11)

组件优化, 设置默认地址

查看更多

平台兼容性

Vue2 Vue3
App 快应用 微信小程序 支付宝小程序 百度小程序 字节小程序 QQ小程序
HBuilderX 3.8.0 app-vue app-nvue
钉钉小程序 快手小程序 飞书小程序 京东小程序
H5-Safari Android Browser 微信浏览器(Android) QQ浏览器(Android) Chrome IE Edge Firefox PC-Safari

关注我的技术微信公众号

查看更多前端组件和框架信息,请关注我的技术微信公众号【前端组件开发】

图片

cc-inputSelView

使用方法


<!-- leftTitle:左边标题 name:输入框名字 value:输入框选择值  placeholder:占位符 @click:点击事件-->
<cc-inputSelView leftTitle="收获地点" name="location" :value="mapSelData.name" placeholder="请选择位置" @click="chooseAddress"></cc-inputSelView>

HTML代码实现部分


<template>
    <view class="content">

        <form @submit="formSubmit" @reset="formReset">

            <!-- leftTitle:左边标题 name:输入框名字 value:输入框选择值  placeholder:占位符 @click:点击事件-->
            <cc-inputSelView leftTitle="收获地点" name="location" :value="mapSelData.name" placeholder="请选择位置"
                @click="chooseAddress"></cc-inputSelView>

            <ccInputView leftTitle="详细地址" name="address" :value="mapSelData.address" placeholder="请输入详细地址">
            </ccInputView>

            <view class="uni-btn-v">
                <button class="botBtn" type="primary" form-type="submit">下一步</button>
                <view class="tipText"> 注意事项: 请确保您填写的房屋信息真实无误 </view>

            </view>
        </form>

    </view>
</template>

<script>
    import ccInputView from '../../components/ccInputView.vue'

    export default {
        components: {

            ccInputView
        },
        data() {
            return {

                mapSelData: {},
            }
        },

        methods: {

            formSubmit: function(e) {
                console.log('form发生了submit事件,携带数据为:' + JSON.stringify(e));
                var formdata = e.detail.value;
                uni.showModal({
                    title: '温馨提示',
                    content: 'formsubmit事件携带数据为:' + JSON.stringify(e.detail.value)
                })

            },
            // 选择地址
            chooseAddress(e) {
                let myThis = this;

                // 需要运行手机硬件才可以选
                uni.chooseLocation({

                    success: function(res) {

                        myThis.mapSelData = res;

                        console.log('位置名称:' + res.name);
                        console.log('详细地址:' + res.address);
                        console.log('纬度:' + res.latitude);
                        console.log('经度:' + res.longitude);
                    }
                });

                // 模拟地图选位数据
                myThis.mapSelData = {
                    'name': '桂花便利店',
                    'address': '广东省佛山市南海区桂城街道南新四路36号',
                    'longitude': '113.22',
                    'latitude': '23.89',
                };

            },

        }
    }
</script>

<style>
    .content {
        display: flex;
        flex-direction: column;

    }

    .uni-btn-v {
        width: 100%;
        height: auto;
    }

    .botBtn {
        width: 90%;
        margin-top: 36px;
    }

    .tipText {
        width: 100%;
        margin-left: 0px;
        text-align: center;
        color: #666666;
        margin-top: 36px;
        margin-bottom: 36px;
        font-size: 28rpx;
    }
</style>

隐私、权限声明

1. 本插件需要申请的系统权限列表:

2. 本插件采集的数据、发送的服务器地址、以及数据用途说明:

3. 本插件是否包含广告,如包含需详细说明广告表达方式、展示频率:

许可协议

MIT协议

使用中有什么不明白的地方,就向插件作者提问吧~ 我要提问