|
|
@@ -284,7 +284,9 @@ |
|
|
|
</el-select> |
|
|
|
|
|
|
|
<el-select |
|
|
|
v-if="trendAnalysisAllLevelListChildren.length > 0 && result1.length > 0" |
|
|
|
v-if=" |
|
|
|
trendAnalysisAllLevelListChildren.length > 0 && result1.length > 0 |
|
|
|
" |
|
|
|
style="margin-left: 12px" |
|
|
|
v-model="result2" |
|
|
|
multiple |
|
|
@@ -321,7 +323,7 @@ |
|
|
|
></i |
|
|
|
></el-button> |
|
|
|
</div> |
|
|
|
<div style="margin-left: auto; margin-right: 10px"> |
|
|
|
<div style="margin-left: auto; margin-right: 10px; display: flex"> |
|
|
|
<el-button :disabled="isBand" type="primary" @click="transfer" |
|
|
|
>批量转交</el-button |
|
|
|
> |
|
|
@@ -331,6 +333,17 @@ |
|
|
|
icon="el-icon-download" |
|
|
|
>导出</el-button |
|
|
|
> |
|
|
|
<el-upload |
|
|
|
style="margin-left: 10px" |
|
|
|
action="/autoSR/customer/import" |
|
|
|
:limit="1" |
|
|
|
:show-file-list="false" |
|
|
|
ref="upload" |
|
|
|
accept=".xls,.xlsx" |
|
|
|
:on-success="uploadSuccess" |
|
|
|
> |
|
|
|
<el-button size="small" type="primary">上传文件</el-button> |
|
|
|
</el-upload> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@@ -606,7 +619,7 @@ export default { |
|
|
|
|
|
|
|
result1() { |
|
|
|
this.trendAnalysisAllLevelListChildren = []; |
|
|
|
this.result2 = [] |
|
|
|
this.result2 = []; |
|
|
|
this.trendAnalysisAllLevelList.filter((item) => { |
|
|
|
if (this.result1.includes(item.name)) { |
|
|
|
this.trendAnalysisAllLevelListChildren = [ |
|
|
@@ -734,6 +747,14 @@ export default { |
|
|
|
console.log(val); |
|
|
|
}, |
|
|
|
|
|
|
|
uploadSuccess() { |
|
|
|
this.$refs.upload.clearFiles(); |
|
|
|
this.$message({ |
|
|
|
message: "上传成功", |
|
|
|
type: "success", |
|
|
|
}); |
|
|
|
}, |
|
|
|
|
|
|
|
downLoad() { |
|
|
|
// this.searchForm |
|
|
|
// /customer/customerManagementExport |
|
|
|