变更
This commit is contained in:
@@ -30,6 +30,7 @@ export interface InputProps {
|
||||
max?: number;
|
||||
min?: number;
|
||||
qfw?: boolean;
|
||||
align?: string;
|
||||
}
|
||||
|
||||
const props = withDefaults(defineProps<InputProps>(), {
|
||||
@@ -41,6 +42,7 @@ const props = withDefaults(defineProps<InputProps>(), {
|
||||
modelValue: "",
|
||||
size: "md",
|
||||
qfw: false,
|
||||
align: "left",
|
||||
});
|
||||
|
||||
interface InputEmits {
|
||||
@@ -217,6 +219,9 @@ const showPassword = () => {
|
||||
></lay-icon>
|
||||
</span>
|
||||
<input
|
||||
:style="{
|
||||
textAlign: align,
|
||||
}"
|
||||
:type="type"
|
||||
:name="name"
|
||||
:disabled="disabled"
|
||||
|
||||
@@ -730,6 +730,6 @@ const radioProps = props.getRadioProps(props.data, props.index);
|
||||
|
||||
<style scoped>
|
||||
.layui-table-cell :deep(.layui-input input) {
|
||||
padding-left: 0;
|
||||
//padding-left: 0;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user