mashengyi 3 лет назад
Родитель
Сommit
a1d8a64021

+ 1 - 0
src/config/globle.js

@@ -0,0 +1 @@
+window.hostUrl = "http://127.0.0.1:18080/";

+ 1 - 0
src/main.js

@@ -10,6 +10,7 @@ import moment from 'moment';
 import './config/rem.js';
 // import axios from 'axios';
 import myaxios from '@/plugins/MyAxios';
+import   './config/globle.js';
 import MyBreadcrumb from '@/components/MyBreadcrumb';
 import 'babel-polyfill';
 

+ 2 - 4
src/views/customer/Customer.vue

@@ -928,9 +928,8 @@ import XLSX from "xlsx";
                   }
           },
           generateWord(){
-            const BASEURL = "http://127.0.0.1:18080/"
             const token = sessionStorage.getItem('token');
-            window.open(BASEURL+'customer/generateWord?customerRecId='+this.customerRec['id']+'&token='+token);
+            window.open(hostUrl+'customer/generateWord?customerRecId='+this.customerRec['id']+'&token='+token);
           },
           async customerRecConform(){
              const response = await this.$http.post(`customer/customeRec`, this.customerRec);
@@ -975,9 +974,8 @@ import XLSX from "xlsx";
                   }
           },
           contractDownload(){
-            const BASEURL = "http://127.0.0.1:18080/"
             const token = sessionStorage.getItem('token');
-            window.open(BASEURL+'customer/contractDownload?customerRecId='+this.customerRec['id']+'&token='+token);
+            window.open(hostUrl+'customer/contractDownload?customerRecId='+this.customerRec['id']+'&token='+token);
           },
           // 列表展示
           async loadData() {

+ 3 - 3
src/views/platform/waybill/history.vue

@@ -75,7 +75,7 @@
             label="操作"
             width="80">
             <template slot-scope="scope" show-overflow-tooltip>
-              <span style="cursor:pointer;" @click="checkLook(scope.row.batchNumber)">查看</span>
+              <span style="cursor:pointer;color: blue;" @click="checkLook(scope.row.batchNumber)">查看</span>
             </template>
           </el-table-column>
         </el-table>
@@ -249,8 +249,8 @@ export default{
     },
     // 下载模板
     DownloadTemplate() {
-      var url = 'http://invoice.back.jkcredit.com/carFreeCarrierBill/downTemp';
-
+      //var url = 'http://invoice.back.jkcredit.com/carFreeCarrierBill/downTemp';
+      var url = hostUrl+"noCar/templateDownload?fileName=3"
       window.location.href= url;
 
     },

+ 1 - 2
src/views/platform/waybill/over.vue

@@ -210,8 +210,7 @@ export default{
     },
     // 下载模板
     DownloadTemplate() {
-      var url = 'http://invoice.back.jkcredit.com/carFreeCarrierBill/downEndTemp';
-
+      var url = hostUrl+"noCar/templateDownload?fileName=2"
       window.location.href= url;
 
     },

+ 1 - 2
src/views/platform/waybill/waybill.vue

@@ -252,8 +252,7 @@ export default{
     },
     // 下载模板
     DownloadTemplate() {
-      var url = 'http://invoice.back.jkcredit.com/carFreeCarrierBill/downTemp';
-
+      var url = hostUrl+"noCar/templateDownload?fileName=1"
       window.location.href= url;
 
     },