wuxw
2020-01-25 d7809e779e6a0ebf4bc92d367f0c3093edd77196
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
<div class="row">
    <div class="col-lg-12">
        <div class="ibox ">
            <div class="ibox-title">
                <h5>业主信息</h5>
                <div class="ibox-tools" style="top:10px;">
                    <button type="button" class="btn btn-primary btn-sm" v-if="viewOwnerInfo.showCallBackButton=='true'"
                            v-on:click="_callBackListOwner(viewOwnerInfo.ownerId)">
                        返回
                    </button>
                    <button type="button" class="btn btn-primary btn-sm" v-if="viewOwnerInfo.viewOwnerFlag!='Owner'"
                            v-on:click="_openChooseOwner()">
                        选择业主
                    </button>
                </div>
            </div>
            <div class="ibox-content">
                <div class="row">
                    <div class="col-sm-2">
                        <image width="120px" height="140px" v-bind:src="viewOwnerInfo.ownerPhoto"
                               @error="errorLoadImg"/>
                    </div>
                    <div class="col-sm-9">
                        <div class="row">
                            <div class="col-sm-4">
                                <div class="form-group">
                                    <label class="col-form-label">业主ID:</label>
                                    <label class="">{{viewOwnerInfo.ownerId}}</label>
                                </div>
                            </div>
                            <div class="col-sm-4">
                                <div class="form-group">
                                    <label class="col-form-label">名称:</label>
                                    <label class="">{{viewOwnerInfo.name}}</label>
                                </div>
                            </div>
                            <div class="col-sm-4">
                                <div class="form-group">
                                    <label class="col-form-label">性别:</label>
                                    <label class="">{{viewOwnerInfo.sex == 0 ? '男' : '女'}}</label>
                                </div>
                            </div>
                        </div>
                        <div class="row">
                            <div class="col-sm-4">
                                <div class="form-group">
                                    <label class="col-form-label">年龄:</label>
                                    <label class="">{{viewOwnerInfo.age}}</label>
                                </div>
                            </div>
                            <div class="col-sm-4">
                                <div class="form-group">
                                    <label class="col-form-label">身份证:</label>
                                    <label class="">{{viewOwnerInfo.idCard}}</label>
                                </div>
                            </div>
                            <div class="col-sm-4">
                                <div class="form-group">
                                    <label class="col-form-label">联系方式:</label>
                                    <label class="">{{viewOwnerInfo.link}}</label>
                                </div>
                            </div>
                        </div>
 
                        <div class="row">
                            <div class="col-sm-4">
                                <div class="form-group">
                                    <label class="col-form-label">创建员工:</label>
                                    <label class="">{{viewOwnerInfo.userName}}</label>
                                </div>
                            </div>
                            <div class="col-sm-4">
                                <div class="form-group">
                                    <label class="col-form-label">备注:</label>
                                    <label class="">{{viewOwnerInfo.remark}}</label>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
 
            </div>
        </div>
    </div>
 
    <vc:create name="searchOwner"
               emitChooseOwner="viewOwnerInfo"
               emitLoadData="viewOwnerInfo"
    ></vc:create>
</div>