|
@@ -36,7 +36,7 @@
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
- <!-- <el-row :gutter="10" class="mb8">
|
|
|
+ <el-row :gutter="10" class="mb8">
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
type="warning"
|
|
@@ -49,7 +49,7 @@
|
|
|
>导出</el-button>
|
|
|
</el-col>
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
- </el-row> -->
|
|
|
+ </el-row>
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="externalContactList" @selection-change="handleSelectionChange" border>
|
|
@@ -69,7 +69,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { exportExternalContact, delLossStatistics } from "@/api/qw/externalContact";
|
|
|
+import { delLossStatisticsExport, delLossStatistics } from "@/api/qw/externalContact";
|
|
|
export default {
|
|
|
name: "ExternalContact",
|
|
|
data() {
|
|
@@ -153,7 +153,7 @@ export default {
|
|
|
type: "warning"
|
|
|
}).then(() => {
|
|
|
this.exportLoading = true;
|
|
|
- return exportExternalContact(queryParams);
|
|
|
+ return delLossStatisticsExport(queryParams);
|
|
|
}).then(response => {
|
|
|
this.download(response.msg);
|
|
|
this.exportLoading = false;
|