|
|
@@ -147,9 +147,9 @@
|
|
|
</el-input>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="name" label="姓名/公司名">
|
|
|
+ <el-table-column prop="nameCn" label="姓名/公司名">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-input type="textarea" autosize placeholder="请输入内容" size="small" v-model="scope.row.name">
|
|
|
+ <el-input type="textarea" autosize placeholder="请输入内容" size="small" v-model="scope.row.nameCn">
|
|
|
</el-input>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
@@ -805,6 +805,7 @@ export default {
|
|
|
this.GuideGroundAILoading = false;
|
|
|
return;
|
|
|
}
|
|
|
+ console.log('Selected name:', name); // Debugging line
|
|
|
var url = "/api/Resource/OpLocalServiceAIItemByName/"+name
|
|
|
var that = this
|
|
|
this.$axios({
|
|
|
@@ -821,7 +822,7 @@ export default {
|
|
|
that.language=[];
|
|
|
that.Id=0;
|
|
|
if (res.data.code == 200) {
|
|
|
- that.tableData = res.data.data.aiLocalServiceDetails || [];
|
|
|
+ that.tableData = res.data.data.aiCrawledDetails || [];
|
|
|
that.Id = res.data.data.id || 0;
|
|
|
that.entry = res.data.data.entry || {};
|
|
|
that.initSelection();
|
|
|
@@ -1008,6 +1009,7 @@ export default {
|
|
|
currUserId: that.userid,
|
|
|
},
|
|
|
(data) => {
|
|
|
+ // var infos=JSON.parse(data);
|
|
|
that.loadingtext = data.message;
|
|
|
if (data.progress != -1) {
|
|
|
if (data.progress === 100) {
|