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
| <!--
| * @Author: c.y
| * @Date: 2019-09-02 09:01:22
| * @LastEditors : 小明丶
| * @LastEditTime : 2019-12-27 10:50:14
| * @Description:
| -->
| <template>
| <div class="open-xyg-page">
| <group>
| <x-input title='营业员姓名' v-model.trim="storeInfo.staffName" placeholder='请输入营业员姓名' text-align='right'></x-input>
| <x-input title='营业员电话' v-model.trim="storeInfo.staffPhone" placeholder='请输入营业员电话' :max='11' text-align='right'></x-input>
| <x-input title='营业员职务' v-model.trim="storeInfo.post" placeholder='请输入营业员职务' text-align='right'></x-input>
| <x-input title='营业员编号' v-model.trim="storeInfo.oprId" placeholder='请输入营业员编号' text-align='right'></x-input>
| </group>
| </div>
| </template>
|
| <script>
| import {
| Datetime,
| XAddress
| } from 'vux';
| export default {
| name: 'xygMgrBase',
| components: {
| Datetime,
| XAddress
| },
| data() {
| return {
|
| };
| },
| props: {
| storeInfo: {
| type: Object
| },
| },
| computed:{
|
| },
| methods: {
|
| }
| };
|
| </script>
|
| <style lang="less" scoped>
| .open-xyg-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>
|
|