Browse Source

init

newStyle
wangxiaohua 3 years ago
parent
commit
d77814ed47
3 changed files with 32 additions and 10 deletions
  1. +10
    -0
      src/api/modules/http.js
  2. +20
    -8
      src/views/Receive/index.vue
  3. +2
    -2
      vue.config.js

+ 10
- 0
src/api/modules/http.js View File

@@ -694,6 +694,16 @@ export function findSystemAnalysis(query) {
} }




// 获取销讲违禁执行
export function findBannedWordsByCusId(query) {
return request({
url: 'autoSR/customer/findBannedWordsByCusId',
method:'get',
params:query
})
}






// 录音文件列表 // 录音文件列表


+ 20
- 8
src/views/Receive/index.vue View File

@@ -41,16 +41,21 @@
</div> </div>
<div style="display: flex;font-size:15px;margin-top: 8px;"> <div style="display: flex;font-size:15px;margin-top: 8px;">
<div style="width:40%;"> <div style="width:40%;">
<div style="margin-top: 6px;">负责顾问:{{userinformationlist.agentName|| ''}}</div>
<div style="margin-top: 6px;">接待时长:{{userinformationlist.mm|| ''}}min</div>
<div style="margin-top: 6px;">客户等级:A</div>
<div>负责顾问:{{userinformationlist.agentName|| ''}}</div>
<div style="margin-top: 8px;">客户等级:
<span v-if="userinformationlist.level"></span>
<span v-if="userinformationlist.level==1">A</span>
<span v-if="userinformationlist.level==2">B</span>
<span v-if="userinformationlist.level==3">C</span>
<span v-if="userinformationlist.level==4">D</span>
</div>
</div> </div>
<div style="width:60%;"> <div style="width:60%;">
<div style="margin-top: 6px;">到访次数:{{userinformationlist.agentName|| ''}}次</div>
<div style="margin-top: 6px;">最近到访:{{userinformationlist.agentName|| ''}}</div>
<div style="margin-top: 6px;">客户阶段:{{userinformationlist.agentName|| ''}}</div>
<div >到访次数:{{userinformationlist.visitRecord|| ''}}次</div>
<div style="margin-top: 8px;">客户阶段:</div>
</div> </div>
</div> </div>
<div style="font-size:15px;margin-top: 8px;">最近到访时间:{{userinformationlist.createTime|| ''}}</div>
</div> </div>
</div> </div>


@@ -516,8 +521,6 @@ export default {
mounted() { mounted() {
this.fileId=this.$route.query.flag; this.fileId=this.$route.query.flag;
this.AudioIdx=this.$route.query.AudioIdx; this.AudioIdx=this.$route.query.AudioIdx;

// this.bofangchushihua();
this.init() this.init()
}, },
methods: { methods: {
@@ -540,6 +543,7 @@ export default {
this.kehuyixiangcenterindex=1; this.kehuyixiangcenterindex=1;
} }
this.findCARKeywords() this.findCARKeywords()
this.findBannedWordsByCusId()
this.Getsthetransliteratecontent() this.Getsthetransliteratecontent()
}) })
}, },
@@ -558,6 +562,14 @@ export default {
this.dialogFormVisible=true; this.dialogFormVisible=true;
this.argtextindex=index; this.argtextindex=index;
}, },
//获取销讲词违禁词
findBannedWordsByCusId(){
this.$api.http.findBannedWordsByCusId({cusId:this.fileId}).then((res) => {
console.log(res)
})
},


//系统分析切换人工校准 //系统分析切换人工校准
customerofintention(i){ customerofintention(i){
this.kehuyixiangcenterindex=i; this.kehuyixiangcenterindex=i;


+ 2
- 2
vue.config.js View File

@@ -5,9 +5,9 @@
// const url = 'http://pigx-gateway' // const url = 'http://pigx-gateway'
// const url = 'http://39.97.167.65:9999' //测试 // const url = 'http://39.97.167.65:9999' //测试
// const url = 'http://192.168.31.169:9999' //长龙 // const url = 'http://192.168.31.169:9999' //长龙
// const url = 'http://192.168.31.134:9999' //嘉豪
const url = 'http://192.168.31.134:9999' //嘉豪
// const url = 'http://192.168.31.100:9999' //王笑 // const url = 'http://192.168.31.100:9999' //王笑
const url = 'http://nitu5e.natappfree.cc' //王笑
// const url = 'http://nitu5e.natappfree.cc' //王笑


const CompressionWebpackPlugin = require('compression-webpack-plugin') const CompressionWebpackPlugin = require('compression-webpack-plugin')
const productionGzipExtensions = ['js', 'css'] const productionGzipExtensions = ['js', 'css']


Loading…
Cancel
Save