|
|
@@ -507,7 +507,7 @@ |
|
|
|
argtextindex1: 0, |
|
|
|
argtextindex2: 0, |
|
|
|
isSw: false, |
|
|
|
info: {}, // 详细信息 |
|
|
|
info: null, // 详细信息 |
|
|
|
}; |
|
|
|
}, |
|
|
|
filters: { |
|
|
@@ -527,6 +527,12 @@ |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
onLoad(options) { |
|
|
|
if (options.info) this.info = JSON.parse(options.info); |
|
|
|
this.customerId = options.customerId; |
|
|
|
}, |
|
|
|
|
|
|
|
onShow() { |
|
|
|
this.intention = false; |
|
|
|
this.kehuyixiangcenterindex = 0; |
|
|
@@ -545,14 +551,14 @@ |
|
|
|
var info = currPage.data.info; |
|
|
|
if (info) { |
|
|
|
info = info; |
|
|
|
console.log('1') |
|
|
|
console.log('1', info) |
|
|
|
} else { |
|
|
|
info = { |
|
|
|
bg: 0 |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (Object.keys(this.info).length > 0) { |
|
|
|
if (this.info) { |
|
|
|
info = this.info |
|
|
|
} |
|
|
|
|
|
|
@@ -568,10 +574,6 @@ |
|
|
|
this.TimeUpdate() |
|
|
|
this.init(info) |
|
|
|
}, |
|
|
|
onLoad(options) { |
|
|
|
this.customerId = options.customerId; |
|
|
|
if (options.info) this.info = JSON.parse(options.info); |
|
|
|
}, |
|
|
|
// 在组件实例被从页面节点树移除时执行 |
|
|
|
destroyed: function() { |
|
|
|
//暂停 |
|
|
@@ -945,7 +947,7 @@ |
|
|
|
this.newluyinList = [] |
|
|
|
uni.request({ |
|
|
|
url: config.service.getCorpusAnal + '?corpusId=' + this.luyinList[this.csdFileindex].id + |
|
|
|
"&bg=" + info.bg + "&speaker=" + this.roleindex, //仅为示例,并非真实接口地址。并非真实接口地址。 |
|
|
|
"&bg=" + (info.bg || 0) + "&speaker=" + this.roleindex, //仅为示例,并非真实接口地址。并非真实接口地址。 |
|
|
|
method: "GET", |
|
|
|
header: { |
|
|
|
'content-type': 'application/json', |
|
|
|