Browse Source

提交发版的需求

new23.10.9
风继续吹 6 months ago
parent
commit
e813769841
3 changed files with 29 additions and 3 deletions
  1. +24
    -3
      src/views/Customer/index.vue
  2. +3
    -0
      src/views/ReceivingRecords/index.vue
  3. +2
    -0
      src/views/Statistics/InvalidReceptionAnalysis.vue

+ 24
- 3
src/views/Customer/index.vue View File

@@ -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


+ 3
- 0
src/views/ReceivingRecords/index.vue View File

@@ -694,6 +694,9 @@ export default {
if (this.$route.query.marketingBusiness) {
this.searchForm.marketingBusiness = [this.$route.query.marketingBusiness];
}
if (this.$route.query.invalidReason) {
this.searchForm.invalidReason = Number(this.$route.query.invalidReason) || ''
}

if (
this.$route.query.endDate &&


+ 2
- 0
src/views/Statistics/InvalidReceptionAnalysis.vue View File

@@ -382,6 +382,8 @@ export default {

// 查看详情
Toview(item, items) {
console.log(item, items)
// return
let obj = {
...this.pageParams,
accountId: this.pageParams.agentId, // 顾问id


Loading…
Cancel
Save