普兆健康管家前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

45 lines
803 B

<template>
<uv-input
:type="type"
:inputAlign="inputAlign"
:value="value"
@input="$emit('input', $event)"
:placeholder="placeholder"
placeholderStyle="color: #C6C6C6; font-size: 32rpx; font-weight: 400;"
:customStyle="{
backgroundColor: 'transparent',
padding: '0',
boxSizing: 'border-box',
fontSize: '32rpx',
border: 'none',
transform: 'translateX(-4px)'
}"
></uv-input>
</template>
<script>
export default {
props: {
value: {
default: null
},
placeholder: {
type: String,
default: '请输入'
},
type: {
type: String,
default: 'text'
},
inputAlign: {
type: String,
default: 'left'
},
},
data() {
return {
}
},
}
</script>