#
whycq
2024-03-30 9ab6b38c098f857f2ce0772693142c930e4f9b6d
#
2个文件已修改
8 ■■■■■ 已修改文件
pages/test/test01.vue 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
uni_modules/mtview-ui/components/mt-input/mt-input.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/test/test01.vue
@@ -1,7 +1,9 @@
<template>
    <view>
        <mt-card></mt-card>
        <mt-input></mt-input>
        <hr>
        <view>{{inputVal}}</view>
        <mt-input tips="Tips" v-model="inputVal"></mt-input>
    </view>
</template>
@@ -9,7 +11,7 @@
    export default {
        data() {
            return {
                inputVal: ''
                
            }
        },
uni_modules/mtview-ui/components/mt-input/mt-input.vue
@@ -3,7 +3,7 @@
        <view class="tips">{{tips}}</view>
        <view class="input">
            <uni-icons class="input-icon" type="scan" size="16" color="#a6a6a6" @click="scan" />
            <input class="input-input" type="text">
            <input class="input-input" type="text" v-model="data">
            <uni-icons class="input-icon" type="close" size="16" color="#a6a6a6" @click="clear" />
        </view>
        <view class="option"></view>