zs
2025-05-14 3ec65a96dd073e598e58c12fb0b5af31e38bc20e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<template>
    <view class="long-width-height-form-item-compontent">
        <view class="p-form-label" v-if="label"><text v-if="required" class="required-tag">*</text>{{label}}:</view>
        <view class="input-row">
            <view class="input-view">
                <input v-model="innerLong" class="my-input" type="digit" :placeholder="longPlaceholder" />
            </view>
            <view class="divider-text">*</view>
            <view class="input-view">
                <input v-model="innerWidth" class="my-input" type="digit" :placeholder="widthPlaceholder" />
            </view>
            <view class="divider-text">*</view>
            <view class="input-view">
                <input v-model="innerHeight" class="my-input" type="digit" :placeholder="heightPlaceholder" />
            </view>
        </view>
        <view class="msg-row" v-if="msg">{{msg}}</view>
    </view>
</template>
 
<script>
export default {
    name:'LongWidthHeightFormItemComponent',
    emits:['update:long','update:width','update:height'],
    props:{
        long:{
            type:[Number,String],
            default:0
        },
        width:{
            type:[Number,String],
            default:0
        },
        height:{
            type:[Number,String],
            default:0
        },
        label:{
            type:String,
            default:'长宽高'
        },
        longPlaceholder:{
            type:String,
            default:'长'
        },
        widthPlaceholder:{
            type:String,
            default:'宽'
        },
        heightPlaceholder:{
            type:String,
            default:'高'
        },
        msg:{
            type:String,
            default:''
        },
        required:{
            type:Boolean,
            default:false
        }
    },
    data(){
        return {
            innerLong:0,
            innerWidth:0,
            innerHeight:0
        }
    },
    watch:{
        long(newVal,oldVal){
            if (newVal!==this.innerValue) {
                this.innerLong = newVal
            }
        },
        innerLong(newVal,oldVal){
            if (newVal!==this.value) {
                this.$emit('update:long',newVal)
            }
        },
        width(newVal,oldVal){
            if (newVal!==this.innerValue) {
                this.innerWidth = newVal
            }
        },
        innerWidth(newVal,oldVal){
            if (newVal!==this.value) {
                this.$emit('update:width',newVal)
            }
        },
        height(newVal,oldVal){
            if (newVal!==this.innerValue) {
                this.innerHeight = newVal
            }
        },
        innerHeight(newVal,oldVal){
            if (newVal!==this.value) {
                this.$emit('update:height',newVal)
            }
        }
    },
    created() {
        this.innerLong = this.long
        this.innerWidth = this.width
        this.innerHeight = this.height
    }
}
</script>
 
<style scoped lang="scss">
.long-width-height-form-item-compontent{
    width: 100%;
    .p-form-label{
        font-size: 32rpx;
        color: $u-tips-color;
        padding-bottom: 12rpx;
        padding-left: 20rpx;
        .required-tag{
            color:#ff0000;
        }
    }
    .input-row{
        width: 100%;
        height: 90rpx;
        overflow: hidden;
        background-color: $uni-bg-color;
        display: flex;
        align-items: center;
        .input-view{
            flex-grow: 1;
            width: 1px;
        }
        .divider-text{
            flex-shrink: 0;
            font-size: 1.5em;
            height: 100%;
            background-color: transparent;
            display: flex;
            align-items: center;
            padding: 0 10rpx;
            
        }
    }
    .msg-row{
        padding: 6rpx 20rpx 0 20rpx;
        line-height: 1.3;
        font-size: 24rpx;
        color: $u-error;
    }
    .my-input{
        text-align: center;
    }
}
</style>