zhaoxiaoqiang
2021-07-28 9e6e98a8c6541354619f15e81009082db8d3ad14
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
<!--
* @Author: c.y
 * @Date: 2019-09-02 09:01:22
 * @LastEditors: 小明丶
 * @LastEditTime: 2019-09-02 09:15:03
 * @Description:
 -->
<template>
    <div class="open-heyd-page">
        <group>
            <x-input title='营业员姓名' v-model.trim="mgrReqVo.staffName" placeholder='请输入'  text-align='right'></x-input>
            <x-input title='营业员电话' v-model.trim="mgrReqVo.staffPhone" placeholder='请输入' :max='11'  text-align='right'></x-input>
            <x-input title='营业员职务' v-model.trim="mgrReqVo.post" placeholder='请输入'  text-align='right'></x-input>
        </group>
    </div>
</template>
 
<script>
    import {
        Datetime,
        XAddress
    } from 'vux';
    export default {
        name: 'heydStoreMgrBase',
        components: {
            Datetime,
            XAddress
        },
        data() {
            return {
 
            };
        },
        props: {
            mgrReqVo: {
                type: Object
            },
        },
        computed:{
            calcAddress:{
                get(){
                    return this.address || [];
                },
                set(newV){
                    this.$emit('addr-change', newV);
                }
            }
 
        },
        methods: {
 
        }
    };
 
</script>
 
<style lang="less" scoped>
    .open-heyd-page {
        .title {
            padding: 14px 12px;
            font-size: 15px;
            color: #333;
 
            .line {
                display: inline-block;
                width: 2px;
                height: 16px;
                margin-right: 8px;
                background: @color-text-three;
                vertical-align: middle;
                margin-top: -1px;
            }
        }
 
        .vux-datetime {
            font-size: 15Px;
        }
 
        .vux-datetime-value {
            span {
                width: 100%;
                text-align: right;
            }
        }
    }
 
</style>