|
|
@@ -92,7 +92,7 @@
|
|
|
import Table from "./RecordDetailTable";
|
|
|
import Count from "../../../components/Count";
|
|
|
import TablePage from "../../../components/TablePage";
|
|
|
-import { env_url } from "../../../config/env"
|
|
|
+import { env_url, php_url } from "../../../config/env"
|
|
|
export default {
|
|
|
components: {
|
|
|
Table,
|
|
|
@@ -125,6 +125,7 @@ export default {
|
|
|
detailData: {},
|
|
|
areaList: [],
|
|
|
onlineUrl: env_url, //'http://8.140.188.129:8080'线上 //http://8.136.230.133:8080 //测试
|
|
|
+ php_url: php_url
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
@@ -249,9 +250,9 @@ export default {
|
|
|
console.log(err);
|
|
|
});
|
|
|
},
|
|
|
- // 导出 接口
|
|
|
+ // 导出记录 接口
|
|
|
exportTem: function (reqStr) {
|
|
|
- let url = this.onlineUrl + "/export?informationId" + reqStr;
|
|
|
+ let url = this.php_url + "/lexus_php/web/information_export.php?informationId" + reqStr;
|
|
|
window.open(url);
|
|
|
},
|
|
|
// 分页获取所有经销商信息接口
|