miaofuhao 1 vuosi sitten
vanhempi
commit
f806e9d759

+ 70 - 0
CallCenterWeb.UI/RMYY/src/api/callScreen/callScreen.js

@@ -90,3 +90,73 @@ export function GetPatientModel(params) {
90 90
     params
91 91
   })
92 92
 }
93
+
94
+// 眼睛
95
+export function GetRegistrationl(params) {
96
+  return request({
97
+    url: 'Registration/getlist',
98
+    method: 'get',
99
+    params
100
+  })
101
+}
102
+// 院区
103
+export function GetRegHospital(params) {
104
+  return request({
105
+    url: 'Registration/gethospital',
106
+    method: 'get',
107
+    params
108
+  })
109
+}
110
+// 科室
111
+export function GetRegDept(params) {
112
+  return request({
113
+    url: 'Registration/Getdept',
114
+    method: 'get',
115
+    params
116
+  })
117
+}
118
+// 科室
119
+export function GetRegWid(params) {
120
+  return request({
121
+    url: 'Registration/getwid',
122
+    method: 'get',
123
+    params
124
+  })
125
+}
126
+// 预约挂号
127
+export function GetYygh(params) {
128
+  return request({
129
+    url: 'Registration/Yygh',
130
+    method: 'post',
131
+    data: params
132
+  })
133
+}
134
+
135
+// 获取号源
136
+export function getinum(params) {
137
+  return request({
138
+    url: 'Registration/getinum',
139
+    method: 'get',
140
+    params
141
+  })
142
+}
143
+
144
+// 取消预约列表
145
+export function getRegList(params) {
146
+  return request({
147
+    url: 'Registration/getlist',
148
+    method: 'get',
149
+    params
150
+  })
151
+}
152
+
153
+// 取消预约
154
+export function regCancel(params) {
155
+  return request({
156
+    url: 'Registration/cancel',
157
+    method: 'post',
158
+    data: params
159
+  })
160
+}
161
+
162
+

+ 192 - 0
CallCenterWeb.UI/RMYY/src/views/callScreen/components/NoRegList.vue

@@ -0,0 +1,192 @@
1
+<template>
2
+  <div class="app-container">
3
+    <div class="filter-container" style="margin-top: 10px">
4
+      <el-input
5
+        v-model="searchData.name"
6
+        size="medium"
7
+        class="filter-item"
8
+        style="width: 160px;"
9
+        clearable
10
+        placeholder="请输入患者姓名"
11
+      />
12
+      <el-input
13
+        v-model="searchData.tel"
14
+        size="medium"
15
+        class="filter-item"
16
+        style="width: 160px;"
17
+        clearable
18
+        placeholder="请输入患者手机号"
19
+      />
20
+      <el-input
21
+        v-model="searchData.jzh"
22
+        size="medium"
23
+        class="filter-item"
24
+        style="width: 160px;"
25
+        clearable
26
+        placeholder="请输入就诊号"
27
+      />
28
+      <el-button
29
+        type="primary"
30
+        size="medium"
31
+        @click="btn_search"
32
+      >搜索</el-button
33
+      >
34
+    </div>
35
+    <div class="regList">
36
+      <div class="regItem" v-for="(item, index) in tableData">
37
+        <div class="itemLine1">
38
+          <div class="lineSpan1">{{item.F_PatientName}}</div>
39
+          <div class="lineSpan2">手机号:{{item.F_Tel}}</div>
40
+          <div class="lineSpan3">就诊号:{{item.F_PatientCode}}</div>
41
+        </div>
42
+        <div class="itemLine2">
43
+          <div class="lineSpan1">{{item.F_Hospital}}</div>
44
+          <div class="lineSpan2">{{item.F_Dept}}</div>
45
+          <div class="lineSpan3">急诊医生:{{item.F_Doctor}}</div>
46
+          <div class="lineSpan3">预约时间:{{item.F_RegisterDate}}</div>
47
+          <div class="lineSpan4">挂号费用:{{item.F_Price}}</div>
48
+          <div class="lineSpan4">
49
+            <el-button class="btn" size="small" type="primary" @click="handleReg(item)">取消预约</el-button>
50
+          </div>
51
+        </div>
52
+      </div>
53
+    </div>
54
+  </div>
55
+</template>
56
+
57
+<script>
58
+import { getHos, GetRegistrationl,getRegList,regCancel } from '@/api/callScreen/callScreen'
59
+
60
+import Pagination from '@/components/context/Pagination' // 对el-pagination 二次封装
61
+import hischange from './hischange'
62
+export default {
63
+  name: 'VisitList',
64
+  components: {
65
+    Pagination
66
+  },
67
+  props: {
68
+    callinNum: {
69
+      type: String,
70
+      default: ''
71
+    }
72
+  },
73
+
74
+  data() {
75
+    return {
76
+      searchData: {
77
+        name: '',
78
+        tel: '',
79
+        jzh: ''
80
+      },
81
+      hosarr: [],
82
+      tableData: []
83
+    }
84
+  },
85
+  created() {
86
+    // this.getHospital()
87
+    this.getList()
88
+  },
89
+  methods: {
90
+    handleReg(item){
91
+      const confirmText = '确认取消 '+item.F_PatientName+' 手机号:'+item.F_Tel+' '+item.F_Hospital+' '+item.F_Dept
92
+      this.$confirm(confirmText, '取消预约', {
93
+        confirmButtonText: '确定',
94
+        cancelButtonText: '取消',
95
+        type: 'warning'
96
+      }).then(() => {
97
+        const params = {
98
+          F_OrderId:item.F_OrderId,
99
+          F_PatientName:item.F_PatientName,
100
+          F_PatientCode:item.F_PatientCode
101
+        }
102
+        console.log(params)
103
+        return
104
+        regCancel(params).then((res) => {
105
+          console.log(res)
106
+          this.tableData = []
107
+          if (res.rows.length > 0) {
108
+            this.tableData = res.rows
109
+          }
110
+        })
111
+        // this.$message({
112
+        //   type: 'success',
113
+        //   message: '取消成功!'
114
+        // });
115
+      })
116
+    },
117
+    getList() {
118
+      const params = {
119
+        // datetime: this.searchData.searchTime,
120
+        // id: this.searchData.hosid
121
+      }
122
+      getRegList(params).then((res) => {
123
+        console.log(res)
124
+        this.tableData = []
125
+        if (res.rows.length > 0) {
126
+          this.tableData = res.rows
127
+        }
128
+      })
129
+    },
130
+    btn_search() {
131
+      this.getList()
132
+    },
133
+    getHospital() {
134
+      const params = {
135
+        pageindex: 1,
136
+        pagesise: 10
137
+      }
138
+      getHos(params).then((res) => {
139
+        this.hosarr = res.rows
140
+      })
141
+    }
142
+  }
143
+}
144
+</script>
145
+
146
+<style rel="stylesheet/scss" lang="scss">
147
+.regList{
148
+  height: 590px;
149
+  overflow-y: auto;
150
+  .regItem{
151
+    border-top: 1px solid #DCDFE6;
152
+    padding: 10px;
153
+    .itemLine1{
154
+      display: flex;
155
+      
156
+      line-height: 30px;
157
+      .lineSpan1{
158
+        font-size: 18px;
159
+      }
160
+      .lineSpan2{
161
+        font-size: 16px;
162
+        padding-left: 10px;
163
+      }
164
+      .lineSpan3{
165
+        font-size: 12px;
166
+        padding-left: 10px;
167
+      }
168
+    }
169
+    .itemLine2{
170
+      display: flex;
171
+      line-height: 30px;
172
+      font-size: 14px;
173
+      .lineSpan1{}
174
+      .lineSpan2{
175
+        padding-left: 10px;
176
+      }
177
+      .lineSpan3{
178
+        padding-left: 10px;
179
+      }
180
+      .lineSpan4{
181
+        padding-left: 10px;
182
+        .btn{
183
+          font-size: 12px;
184
+          padding: 5px 10px;
185
+        }
186
+      }
187
+    }
188
+  }
189
+}
190
+
191
+
192
+</style>

+ 408 - 0
CallCenterWeb.UI/RMYY/src/views/callScreen/components/RegList.vue

@@ -0,0 +1,408 @@
1
+<template>
2
+  <div class="app-container">
3
+    <div class="filter-container" style="margin-top: 10px">
4
+      <el-date-picker v-model="searchData.searchTime" type="date" class="filter-item" value-format="yyyy-MM-dd"
5
+        size="medium" style="width: 150px;" clearable placeholder="选择日期" />
6
+      <el-select v-model="searchData.hosid" size="medium" class="filter-item" style="width: 150px;" clearable
7
+        placeholder="请选择院区" @change="handleHospital">
8
+        <el-option 
9
+          v-for="(item, index) in hosarr" 
10
+          :key="index" 
11
+          :label="item.hospitalname" 
12
+          :value="item.hospitalcode" 
13
+        />
14
+      </el-select>
15
+      <el-select v-model="searchData.deptid" size="medium" class="filter-item" style="width: 150px;" clearable
16
+        placeholder="请选择科室" @change="handleDept">
17
+        <el-option 
18
+          v-for="(item, index) in deptarr" 
19
+          :key="index" 
20
+          :label="item.name" 
21
+          :value="item.id" 
22
+        />
23
+      </el-select>
24
+      <el-input v-model="searchData.deptname" size="medium" class="filter-item" style="width: 150px;" clearable
25
+        placeholder="医生姓名" />
26
+      <el-button type="primary" size="medium" @click="btn_search">搜索</el-button>
27
+    </div>
28
+    <div class="regList">
29
+      <div class="regItem" v-for="(item, index) in tableData">
30
+        <div class="itemLine1">
31
+          <div class="lineSpan1">{{item.doctorname}}</div>
32
+          <div class="lineSpan2">{{ rankidObj[item.rankid]}}</div>
33
+          <div class="lineSpan3">{{item.czlx == 1 ? '专家':item.czlx == 8 ?'普通':'未知'}}</div>
34
+        </div>
35
+        <div class="itemLine2">
36
+          <div class="lineSpan1">{{ hospitalcodObj[item.hospitalcod] ? hospitalcodObj[item.hospitalcod]: '未知'}}</div>
37
+          <div class="lineSpan2">{{item.ksmc?item.ksmc:'未知'}}</div>
38
+          <div class="lineSpan3">坐诊时间:{{pcodeObj[item.pcode]?pcodeObj[item.pcode]:'未知'}}  {{item.date}} {{item.stime}}-{{item.etime}}</div>
39
+          <div class="lineSpan4">挂号费用:{{item.price}}</div>
40
+          <div class="lineSpan4">余号:{{item.acount}}</div>
41
+          <div class="lineSpan4">
42
+            <el-button class="btn" size="small" @click="handleReg(item)" type="primary" v-if="item.acount">预约</el-button>
43
+            <el-button class="btn" size="small" type="primary" v-if="!item.acount" disabled>预约</el-button>
44
+          </div>
45
+
46
+        </div>
47
+      </div>
48
+    </div>
49
+    <el-drawer title="预约挂号" :visible.sync="drawer" :direction="direction" :before-close="handleClose">
50
+      <el-form label-width="120px" style="width: 90%;">
51
+        <el-row>
52
+          <el-col :span="20">
53
+            <el-form-item label="预约时间"  >
54
+              <el-select v-model="ruleForm.PatientCode" 
55
+                size="medium" clearable
56
+                @change="handlePatient"
57
+                placeholder="请选择预约时间">
58
+                <el-option 
59
+                  v-for="(item, index) in PatientArr" 
60
+                  :key="index" 
61
+                  :label="item.time" 
62
+                  :value="item.id" 
63
+                />
64
+              </el-select>
65
+            </el-form-item>
66
+          </el-col>
67
+        </el-row>
68
+
69
+        <el-row>
70
+          <el-col :span="20">
71
+            <el-form-item label="患者姓名">
72
+              <el-input v-model="ruleForm.PatientName" placeholder="请输入患者姓名" />
73
+            </el-form-item>
74
+          </el-col>
75
+        </el-row>
76
+
77
+        <el-row>
78
+          <el-col :span="20">
79
+            <el-form-item label="身份证号">
80
+              <el-input v-model="ruleForm.identityCard" placeholder="请输入身份证号" />
81
+            </el-form-item>
82
+          </el-col>
83
+        </el-row>
84
+
85
+        <el-row>
86
+          <el-col :span="20">
87
+            <el-form-item label="性别">
88
+              <el-input v-model="ruleForm.Sex" placeholder="请输入性别" />
89
+            </el-form-item>
90
+          </el-col>
91
+        </el-row>
92
+
93
+        <el-row>
94
+          <el-col :span="20">
95
+            <el-form-item label="出生日期">
96
+              <el-input v-model="ruleForm.Birthday" placeholder="请输入出生日期" />
97
+            </el-form-item>
98
+          </el-col>
99
+        </el-row>
100
+
101
+        <!-- <el-row>
102
+          <el-col :span="20">
103
+            <el-form-item label="民族">
104
+              <el-input v-model="ruleForm.name7" placeholder="请输入客户名称" />
105
+            </el-form-item>
106
+          </el-col>
107
+        </el-row> -->
108
+
109
+        <el-row>
110
+          <el-col :span="20">
111
+            <el-form-item label="联系方式">
112
+              <el-input v-model="ruleForm.tel" placeholder="请输入联系方式" />
113
+            </el-form-item>
114
+          </el-col>
115
+        </el-row>
116
+
117
+        <el-row>
118
+          <el-col :span="20">
119
+            <el-form-item label="家庭住址">
120
+              <el-input v-model="ruleForm.Address" placeholder="请输入家庭住址" />
121
+            </el-form-item>
122
+          </el-col>
123
+        </el-row>
124
+
125
+        <el-row>
126
+          <el-col :span="20">
127
+            <el-form-item label="预约医生姓名">
128
+              <el-input v-model="ruleForm.doctor" placeholder="请输入医生姓名" />
129
+            </el-form-item>
130
+          </el-col>
131
+        </el-row>
132
+
133
+        <el-row>
134
+          <el-col :span="20">
135
+            <el-form-item label="预约院区">
136
+              <el-input v-model="ruleForm.hospital" placeholder="请输入预约院区" />
137
+            </el-form-item>
138
+          </el-col>
139
+        </el-row>
140
+
141
+        <el-row>
142
+          <el-col :span="20">
143
+            <el-form-item label="预约科室">
144
+              <el-input v-model="ruleForm.dept" placeholder="请输入预约科室" />
145
+            </el-form-item>
146
+          </el-col>
147
+        </el-row>
148
+        <!-- <el-row>
149
+          <el-col :span="20">
150
+            <el-form-item label="预约时间">
151
+              <el-input v-model="ruleForm.name2" placeholder="请输入客户电话" />
152
+            </el-form-item>
153
+          </el-col>
154
+        </el-row> -->
155
+
156
+        <el-row>
157
+          <el-form-item>
158
+            <el-button type="primary" @click="submitForm">提交</el-button>
159
+          </el-form-item>
160
+        </el-row>
161
+
162
+      </el-form>
163
+    </el-drawer>
164
+  </div>
165
+</template>
166
+
167
+<script>
168
+  import axios from 'axios'
169
+  import { getHos,GetRegHospital,GetRegDept, GetRegistrationl,GetRegWid,GetYygh,getinum } from '@/api/callScreen/callScreen'
170
+
171
+  import Pagination from '@/components/context/Pagination' // 对el-pagination 二次封装
172
+  import hischange from './hischange'
173
+  export default {
174
+    name: 'VisitList',
175
+    components: {
176
+      Pagination
177
+    },
178
+    props: {
179
+      callinNum: {
180
+        type: String,
181
+        default: ''
182
+      }
183
+    },
184
+
185
+    data() {
186
+      return {
187
+        widarr:[],
188
+        deptarr:[],
189
+        drawer: false,
190
+        direction: 'rtl',
191
+        PatientArr:[],
192
+        ruleForm: {
193
+          PatientCode:'',
194
+          PatientName: '', // 患者姓名
195
+          identityCard: '', // 身份证号
196
+          Sex: '', // 性别
197
+          Birthday: '', // 出生日期
198
+          tel: '', // 联系方式
199
+          Address: '', // 家庭住址
200
+          doctor: '', // 预约医生姓名
201
+          hospital: '', // hospital
202
+          dept: '', // 预约科室
203
+          inum:'', // 挂号序号  Registration/getinum
204
+          wid:'', // 排班标识 Registration/getwid
205
+          price : '', // 挂号费 Registration/getwid
206
+        },
207
+        searchData: {
208
+          searchTime: '',
209
+          hosid: '',
210
+          deptid:'',
211
+          deptname: ''
212
+        },
213
+        hospitalcodObj:{
214
+          1:'总院',
215
+          11:'和平分院',
216
+          12:'胜利分院',
217
+        },
218
+        pcodeObj:{
219
+          10:'上午',
220
+          20:	'中午',
221
+          30:'下午',
222
+          40:'夜班',
223
+          50:'全天',
224
+          60:'急诊上午',
225
+          70:'急诊下午',
226
+          80:'夏令',
227
+          90:'绿色通道',
228
+        },
229
+        rankidObj:{
230
+          10:'名特专家',
231
+          11:'省优秀专家',
232
+          12:'保健干部医师',
233
+          13:'主任医师',
234
+          14:'主治医师',
235
+          15:'住院医师',
236
+          16:'急诊医师',
237
+          3:'副主任医师',
238
+          4:'国家特贴主任医师',
239
+          6:'建议书',
240
+          9:'门诊挂号',
241
+          5:'未知'
242
+        },
243
+        wrankObj:{
244
+          1 :'名特专家',        
245
+          2 :'省优秀专家',  
246
+          3 :'保健干部医师',
247
+          4:'主任医师',        
248
+          5:'主治医师',        
249
+          6:'住院医师',
250
+          7:'急诊医师',
251
+          8:'副主任医师',      
252
+          9:'国家特贴主任医师'
253
+        },
254
+        hosarr: [],
255
+        tableData: []
256
+      }
257
+    },
258
+    created() {
259
+      this.getHospital()
260
+      // this.handleDept()
261
+      // this.getList()
262
+    },
263
+    methods: {
264
+      submitForm() {
265
+        console.log(this.ruleForm)
266
+        const params = this.ruleForm   
267
+        // axios.get('http://192.168.1.37:8000/Registration/Yygh',
268
+        // {
269
+        //   params,
270
+        //   headers: {
271
+        //     'Content-Type':'pplication/x-www-form-urlencoded;charset=UTF-8'
272
+        //   }
273
+        // }).then(function (response) {
274
+        //   console.log(response)
275
+        // }).catch(function (error) {
276
+        //   console.log(error);
277
+        // });
278
+        GetYygh(this.ruleForm).then((res) => {
279
+          console.log(res)
280
+          this.drawer = false
281
+        })
282
+      },
283
+      handlePatient(e){
284
+        const resultValue = this.PatientArr.find(function(item, index, arr){
285
+          return item.id === e
286
+        })
287
+        console.log(resultValue.inum)
288
+        this.ruleForm.inum = resultValue.inum
289
+      },
290
+      handleReg(item) {
291
+        this.drawer = true
292
+        this.ruleForm.wid = item.wid
293
+        this.ruleForm.price = item.price
294
+        const params = {
295
+          wid:item.wid
296
+        }
297
+        getinum(params).then((res) => {
298
+          console.log(res)
299
+          if (res.no.length > 0) {
300
+            this.PatientArr = res.no
301
+          }
302
+          console.log(this.PatientArr)
303
+        })
304
+      },
305
+      handleClose(done) {
306
+        this.drawer = false
307
+      },
308
+      btn_search() {
309
+        this.getList()
310
+      },
311
+      handleDept(e){
312
+        console.log(e)
313
+        const params = {
314
+          deptid:e
315
+        }
316
+        GetRegWid(params).then((res) => {
317
+          this.widarr = []
318
+          if (res.works.length>0) {
319
+            // this.widarr = res.works
320
+            this.tableData =  res.works
321
+          }
322
+          
323
+        })
324
+      },
325
+     
326
+      handleHospital(e){
327
+        console.log(e)
328
+        const params = {
329
+          preetype:6,
330
+          hospitalcode:e
331
+        }
332
+        GetRegDept(params).then((res) => {
333
+          this.deptarr = []
334
+          if (res.depts.length>0) {
335
+            this.deptarr = res.depts
336
+          }
337
+          
338
+        })
339
+      }, 
340
+      getHospital() {
341
+        const params = {}
342
+        GetRegHospital(params).then((res) => {
343
+          this.hosarr = []
344
+          if (res.reportlist.length>0) {
345
+            this.hosarr = res.reportlist
346
+          }
347
+        })
348
+      }
349
+    }
350
+  }
351
+</script>
352
+
353
+<style rel="stylesheet/scss" lang="scss">
354
+  .regList {
355
+    height: 590px;
356
+    overflow-y: auto;
357
+
358
+    .regItem {
359
+      border-top: 1px solid #DCDFE6;
360
+      padding: 10px;
361
+
362
+      .itemLine1 {
363
+        display: flex;
364
+
365
+        line-height: 30px;
366
+
367
+        .lineSpan1 {
368
+          font-size: 18px;
369
+        }
370
+
371
+        .lineSpan2 {
372
+          font-size: 16px;
373
+          padding-left: 10px;
374
+        }
375
+
376
+        .lineSpan3 {
377
+          font-size: 12px;
378
+          padding-left: 10px;
379
+        }
380
+      }
381
+
382
+      .itemLine2 {
383
+        display: flex;
384
+        line-height: 30px;
385
+        font-size: 14px;
386
+
387
+        .lineSpan1 {}
388
+
389
+        .lineSpan2 {
390
+          padding-left: 10px;
391
+        }
392
+
393
+        .lineSpan3 {
394
+          padding-left: 10px;
395
+        }
396
+
397
+        .lineSpan4 {
398
+          padding-left: 10px;
399
+
400
+          .btn {
401
+            font-size: 12px;
402
+            padding: 5px 10px;
403
+          }
404
+        }
405
+      }
406
+    }
407
+  }
408
+</style>

+ 17 - 3
CallCenterWeb.UI/RMYY/src/views/callScreen/components/callScreen.vue

@@ -24,11 +24,21 @@
24 24
               <his-List :callin-num="callinNum" :callid="callinCallid" @patientMsg="getPatient"/>
25 25
             </div>
26 26
           </el-tab-pane>
27
-          <el-tab-pane label="坐诊信息" name="visitInfo">
27
+          <el-tab-pane label="挂号预约" name="RegList">
28 28
             <div class="tab_body">
29
-              <visit-list :callin-num="callinNum" :callid="callinCallid" />
29
+              <reg-list :callin-num="callinNum" :callid="callinCallid" />
30
+            </div>
31
+          </el-tab-pane>
32
+          <el-tab-pane label="取消预约" name="NoRegList">
33
+            <div class="tab_body">
34
+              <no-reg-list :callin-num="callinNum" :callid="callinCallid" />
30 35
             </div>
31 36
           </el-tab-pane>
37
+          <!-- <el-tab-pane label="坐诊信息" name="visitInfo">
38
+            <div class="tab_body">
39
+              <visit-list :callin-num="callinNum" :callid="callinCallid" />
40
+            </div>
41
+          </el-tab-pane> -->
32 42
           <!-- <el-tab-pane label="药品信息" name="drugInfo">
33 43
             <div class="tab_body">
34 44
               <drug-list :callin-num="callinNum" :callid="callinCallid" />
@@ -73,6 +83,8 @@ import KnowledgeList from './KnowledgeList'
73 83
 import HisList from './hisList'
74 84
 import AddOrEditOrder from './AddOrEditOrder'
75 85
 import VisitList from './VisitList'
86
+import RegList from './RegList'
87
+import NoRegList from './NoRegList'
76 88
 import drugList from './drugList'
77 89
 
78 90
 export default {
@@ -87,6 +99,8 @@ export default {
87 99
     HisList,
88 100
     AddOrEditOrder,
89 101
     drugList,
102
+    RegList,
103
+    NoRegList,
90 104
     VisitList
91 105
   },
92 106
   data() {
@@ -148,7 +162,7 @@ export default {
148 162
             this.$refs.tabs.$children[0].$refs.tabs[0].style.display = 'none'
149 163
             this.$refs.tabs.$children[0].$refs.tabs[1].style.display = 'none'
150 164
           } else {
151
-            this.activeName = 'first'
165
+            this.activeName = 'NoRegList'
152 166
             this.$refs.tabs.$children[0].$refs.tabs[0].style.display = 'inline-block'
153 167
             this.$refs.tabs.$children[0].$refs.tabs[1].style.display = 'inline-block'
154 168
           }

+ 1 - 1
CallCenterWeb.UI/RMYY/static/config/serverConfig.json

@@ -1,6 +1,6 @@
1 1
 {
2 2
   "NODE_ENV": "development",
3
-  "BASE_API": "https://zyfb.zzrmyy.com/", 
3
+  "BASE_API": "http://192.168.1.37:8000/", 
4 4
   "TTS_API": "http://39.164.159.192:8000/",
5 5
   "IVR_API":"http://172.16.10.21:9000/",
6 6
   "CORP_ID":"dingbb1314af9ad8e421f2c783f7214b6d69",

+ 2 - 1
CallCenterWeb.UI/RMYYAPP/manifest.json

@@ -46,7 +46,8 @@
46 46
                     "<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
47 47
                     "<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>",
48 48
                     "<uses-permission android:name=\"android.permission.WRITE_SMS\"/>"
49
-                ]
49
+                ],
50
+                "abiFilters" : [ "armeabi-v7a", "arm64-v8a", "x86" ]
50 51
             },
51 52
             /* ios打包配置 */
52 53
             "ios" : {

+ 1 - 2
CallCenterWeb.UI/RMYYAPP/pages/myTask/myTask.vue

@@ -408,8 +408,7 @@
408 408
 									success: function(res) {
409 409
 										if (res.confirm) {
410 410
 											plus.runtime.openURL(data.FileUrl[0].F_FileUrl, err => {
411
-												plus.runtime.openURL(data.FileUrl[0]
412
-													.F_FileUrl);
411
+												plus.runtime.openURL(data.FileUrl[0].F_FileUrl);
413 412
 											}, 'com.android.browser');
414 413
 										} else if (res.cancel) {
415 414
 											this.$mHelper.toast("取消更新");