ソースを参照

需求挖掘分析调试

newStyle
corala 2年前
コミット
4725d7795d
1個のファイルの変更9行の追加7行の削除
  1. +9
    -7
      src/views/Template/requireminingAnalysis.vue

+ 9
- 7
src/views/Template/requireminingAnalysis.vue ファイルの表示

@@ -439,7 +439,7 @@
</div>
</template>
<script>
import * as echarts from "echarts";
import echarts from "echarts";
export default {
data() {
return {
@@ -744,8 +744,8 @@ export default {
// console.log(data);
if (data.code == 0) {
this.activeCustomer = data.data.first.activeCustomer;
this.tableData = data.data.first.results;
this.total = data.data.first.totalRecord;
this.tableData = data.data.first.records;
this.total = data.data.first.total;
} else {
this.tableData = [];
}
@@ -892,11 +892,10 @@ export default {
},
}).then((data) => {
// console.log("执行明细");
// console.log(data);
if (data.code == 0) {
this.activeCustomer = data.data.cus.activeCustomer;
this.detail.tableData = data.data.list.results;
this.detail.total = data.data.list.totalRecord;
this.detail.tableData = data.data.list.records||[];
this.detail.total = data.data.list.total;
}
});
},
@@ -998,9 +997,12 @@ export default {
"?houseId=" + this.houseId +
"&deptId=" + this.fromobj.team +
"&createUser=" + this.fromobj.consultant +
"&dateType=" + TimetoAhoose +
"&firstStartDate=" + firstStartDate +
"&firstEndDate=" + firstEndDate;
if(this.TimetoAhoose!=7){
daochuparams = daochuparams+ "&dateType=" + this.TimetoAhoose
}

if (type == "rank") {
//排行
window.location.href ="/autoSR/customer/wordMiningRankExport" + daochuparams;


読み込み中…
キャンセル
保存