telephone-clients 3.0.104-50 → 3.0.104-51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/filiale/qianneng/android/AppInstallationMaterial.vue +878 -845
- package/src/filiale/shexian/android/AddMyTask.vue +7 -0
- package/src/filiale/shexian/android/RepairFirstV.vue +5 -0
- package/src/filiale/shexian/android/RepairInfo.vue +1 -0
- package/src/filiale/yuncheng/pc/WorkListAllNew.vue +722 -0
- package/src/filiale/yuncheng/telephone.js +1 -0
|
@@ -175,6 +175,13 @@
|
|
|
175
175
|
@click.stop.prevent='$parent.$parent.$parent.makeAPhoneCall(row.f_contact_phone)'>
|
|
176
176
|
</p>
|
|
177
177
|
</div>
|
|
178
|
+
<div class="col-xs-12">
|
|
179
|
+
<p class="panel-title col-xs-5 text-left font" style="width: 21%;float: left"><b>租户电话:</b></p>
|
|
180
|
+
<p class="panel-title col-xs-7 text-left input-font">{{ row.f_zuhu_phone || '无' }}
|
|
181
|
+
<img src="../../../assets/telphonesend.png" style="width: 12px;"
|
|
182
|
+
@click.stop.prevent='$parent.$parent.$parent.makeAPhoneCall(row.f_zuhu_phone)'>
|
|
183
|
+
</p>
|
|
184
|
+
</div>
|
|
178
185
|
<div class="col-xs-6">
|
|
179
186
|
<p class="panel-title col-xs-5 text-left font" style="float: left"><b>派单员:</b></p>
|
|
180
187
|
<p class="panel-title col-xs-7 text-left input-font">{{row.f_attendant}} </p>
|
|
@@ -104,6 +104,11 @@
|
|
|
104
104
|
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
105
105
|
用户姓名: {{ row.f_user_name }}
|
|
106
106
|
</div>
|
|
107
|
+
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
108
|
+
租户电话: {{ row.f_zuhu_phone }}
|
|
109
|
+
<img src="../../../assets/telphonesend.png" style="width: 12px;"
|
|
110
|
+
@click.stop.prevent='makeAPhoneCall(row.f_zuhu_phone)'>
|
|
111
|
+
</div>
|
|
107
112
|
<div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
|
|
108
113
|
来电电话: {{ row.f_phone }}
|
|
109
114
|
<img src="../../../assets/telphonesend.png" style="width: 12px;"
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
<!--<p>预约时间: {{service.f_repair_date}}</p>-->
|
|
18
18
|
<p>来电电话: {{service.f_phone}}<img src="../../../assets/telphonesend.png" style="width: 12px;" @click.stop.prevent='makeAPhoneCall(service.f_phone)'></p>
|
|
19
19
|
<p>联系电话: {{service.f_contact_phone}}<img src="../../../assets/telphonesend.png" style="width: 12px;" @click.stop.prevent='makeAPhoneCall(service.f_contact_phone)'></p>
|
|
20
|
+
<p>租户电话: {{service.f_zuhu_phone}}<img src="../../../assets/telphonesend.png" style="width: 12px;" @click.stop.prevent='makeAPhoneCall(service.f_rent_phone)'></p>
|
|
20
21
|
<p>开启录音:<button type="button" class="btn btn-default" @click="openRecord()">开启</button>
|
|
21
22
|
</p>
|
|
22
23
|
<!--<p>用户姓名: {{service.f_user_name}}</p>-->
|