ccj před 1 rokem
rodič
revize
61d7380a1a

+ 1 - 1
public/static/aduitprint.html

@@ -173,7 +173,7 @@
                     <td class="col col-bgc">金额(元)</td>
                     <td colspan="2" class="col">{{ item.amountMoney }}</td>
                 </tr>
-                <tr class="row">
+                <tr v-if="item.printType!=1" class="row">
                     <td class="col col-bgc">备注</td>
                     <td style="width:65%;" colspan="2" class="col">{{ item.remark }}</td>
                 </tr>

+ 1 - 1
src/model/defalutConfig/indexRx.js

@@ -8,7 +8,7 @@ const instance = axios.create({
 })
 
 instance.interceptors.request.use(
-  (config) => {debugger
+  (config) => {
     // console.info(config.url, 'config.url')
     if (ignoreUrl.indexOf(config.url) === -1) {
       EventBus.$emit('showLoading')

+ 3 - 3
src/views/home/index.vue

@@ -291,7 +291,7 @@ export default {
         let _ew = Number(this.MapList[i].endPlace.split(',')[0])
         let _ej = Number(this.MapList[i].endPlace.split(',')[1])
         let _obj = {
-          val: 33, //数据
+          val: this.MapList[i].name, //数据
           blat: [_j, _w], //发射点
           elon: [_ej, _ew], //接收点
         }
@@ -304,8 +304,8 @@ export default {
         // province.push(lineData[i].bcitysim); //存进去每个省的名字
         // province.push(lineData[i].ecitysim); //存进去每个省的名字
         res.push({
-          // fromName: lineData[i].bcitysim, //发射的省名,保存用于弹框显示
-          // toName: lineData[i].ecitysim, //接收的省名,保存用于弹框显示
+          fromName: lineData[k].name, //发射的省名,保存用于弹框显示
+          toName: lineData[k].name, //接收的省名,保存用于弹框显示
           coords: [
             lineData[k].blat, //发射
             lineData[k].elon, //接收

+ 7 - 0
src/views/home/left-bottom.vue

@@ -110,6 +110,7 @@ export default {
   methods: {
     addressHandle(item,type) {
       let name;
+      debugger
       if(type==0){
          name = item.tranTaskInfos.startPrivate;
       if (item.tranTaskInfos.startCity) {
@@ -117,6 +118,9 @@ export default {
         if (item.tranTaskInfos.startArea) {
           name += '/' + item.tranTaskInfos.startArea;
         }
+        if (item.tranTaskInfos.startDetailedAddress) {
+          name += '/' + item.tranTaskInfos.startDetailedAddress;
+        }
       }
       }else{
          name = item.tranTaskInfos.endPrivate;
@@ -125,6 +129,9 @@ export default {
         if (item.tranTaskInfos.endArea) {
           name += '/' + item.tranTaskInfos.endArea;
         }
+        if (item.tranTaskInfos.endDetailedAddress) {
+          name += '/' + item.tranTaskInfos.endDetailedAddress;
+        }
       }
       }
       return name;