schangxiang@126.com
2024-12-08 df485888ecb9f69c0051fc192b87aec700cc4f89
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
<template>
    <view class="width background_fff border_top_F2F2F2 flex align-center justify-between border_bottom_fff padding_surround">
        <view class="width70  flex align-center">
            <text class=" margin_right10rpx iconfont icon-chaxun"></text>
            <input class="fontSize32rpx width"  disabled
            type="text" :placeholder="placeholder" @click="inputchange" />
        </view>
        <!-- <text class=" margin_right30rpx iconfont icon-zelvxuanzefeiyongzhengsanjiaoxingzhichi"
            :class="modalshow?'transition_rotate180':'transition_rotate0'"
        ></text> -->
        <cu-modal placeholder='工单编号' :modalshow='modalshow' @hideModal='inputchange' />
    </view>
</template>
 
<script>
    export default {
        name:"SelectList",
        data() {
            return {
                modalshow:false
            };
        },
        props:{
            placeholder:{
                type:String,
                default:'请选择工单编号'
            }
        },
        methods:{
            inputchange(){
                this.modalshow=!this.modalshow
            }
        }
    }
</script>
 
<style lang="scss">
 
</style>