telephone-clients 3.0.104-21 → 3.0.104-22

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "telephone-clients",
3
- "version": "3.0.104-21",
3
+ "version": "3.0.104-22",
4
4
  "description": "呼叫模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -177,9 +177,9 @@
177
177
  </div>
178
178
  <div class="col-xs-12">
179
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_rent_phone || '无' }}
180
+ <p class="panel-title col-xs-7 text-left input-font">{{ row.f_zuhu_phone || '无' }}
181
181
  <img src="../../../assets/telphonesend.png" style="width: 12px;"
182
- @click.stop.prevent='$parent.$parent.$parent.makeAPhoneCall(row.f_rent_phone)'>
182
+ @click.stop.prevent='$parent.$parent.$parent.makeAPhoneCall(row.f_zuhu_phone)'>
183
183
  </p>
184
184
  </div>
185
185
  <div class="col-xs-6">
@@ -105,9 +105,9 @@
105
105
  用户姓名: {{ row.f_user_name }}
106
106
  </div>
107
107
  <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
108
- 租户电话: {{ row.f_rent_phone }}
108
+ 租户电话: {{ row.f_zuhu_phone }}
109
109
  <img src="../../../assets/telphonesend.png" style="width: 12px;"
110
- @click.stop.prevent='makeAPhoneCall(row.f_rent_phone)'>
110
+ @click.stop.prevent='makeAPhoneCall(row.f_zuhu_phone)'>
111
111
  </div>
112
112
  <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
113
113
  来电电话: {{ row.f_phone }}
@@ -17,7 +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_rent_phone}}<img src="../../../assets/telphonesend.png" style="width: 12px;" @click.stop.prevent='makeAPhoneCall(service.f_rent_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>
21
21
  <p>开启录音:<button type="button" class="btn btn-default" @click="openRecord()">开启</button>
22
22
  </p>
23
23
  <!--<p>用户姓名: {{service.f_user_name}}</p>-->
package/src/main.js CHANGED
@@ -1,22 +1,22 @@
1
- import Vue from 'vue'
2
- import App from './App'
3
- import all from 'vue-client/src/all'
4
- import system from 'system-clients/src/system'
5
- import telephone from './telephone'
6
- import echarts from 'echarts'
7
- Vue.prototype.$echarts = echarts
8
-
9
- /** **************************通用组件******************************/
10
- all()
11
- system(false)
12
- telephone()
13
- require('./expandcss.less')
14
- require('system-clients/src/styles/less/bootstrap.less')
15
- require('./telephoneanaly.less')
16
- // 测试
17
-
18
- Vue.component('test', (resolve) => { require(['./components/Test'], resolve) })
19
- new Vue({
20
- el: 'body',
21
- components: { App }
22
- })
1
+ import Vue from 'vue'
2
+ import App from './App'
3
+ import all from 'vue-client/src/all'
4
+ import system from 'system-clients/src/system'
5
+ import telephone from './telephone'
6
+ import echarts from 'echarts'
7
+ Vue.prototype.$echarts = echarts
8
+
9
+ /** **************************通用组件******************************/
10
+ all()
11
+ system(false)
12
+ telephone('shexian')
13
+ require('./expandcss.less')
14
+ require('system-clients/src/styles/less/bootstrap.less')
15
+ require('./telephoneanaly.less')
16
+ // 测试
17
+
18
+ Vue.component('test', (resolve) => { require(['./components/Test'], resolve) })
19
+ new Vue({
20
+ el: 'body',
21
+ components: { App }
22
+ })