|
|
@@ -91,13 +91,8 @@
|
|
|
<el-table v-loading="loading" :data="dataList" @selection-change="handleSelectionChange">
|
|
|
<el-table-column type="selection" align="center" width="55" />
|
|
|
<el-table-column label="合同编号" align="center" prop="customerContractCode" min-width="350">
|
|
|
- <!-- <template v-slot="scope">
|
|
|
- <router-link :to="'/finance/expense/type/data/' + scope.row.id" class="link-type">
|
|
|
- <span>{{ scope.row.customerContractCode }}</span>
|
|
|
- </router-link>
|
|
|
- </template> -->
|
|
|
<template v-slot="scope">
|
|
|
- <router-link :to="'/finance/contract/type/data/' + scope.row.customerContractCode" class="link-type">
|
|
|
+ <router-link :to="'/finance/contract/customer/historyData/' + scope.row.customerContractCode" class="link-type">
|
|
|
<span>{{ scope.row.customerContractCode }}</span>
|
|
|
</router-link>
|
|
|
</template>
|
|
|
@@ -799,7 +794,7 @@ export default {
|
|
|
this.exportLoading = true;
|
|
|
return exportCustomer(params);
|
|
|
}).then(response => {
|
|
|
- this.$download.excel(response, '客户信息.xls');
|
|
|
+ this.$download.excel(response, '销售合同信息.xls');
|
|
|
this.exportLoading = false;
|
|
|
}).catch(() => { });
|
|
|
}
|