浏览代码

修改bug

Qukatie 1 年之前
父节点
当前提交
3a0c6bccb3

+ 7 - 0
src/api/basicData/customerInformation.js

@@ -188,3 +188,10 @@ export function getById(id) {
     method: 'get'
   })
 }
+export function paramserviceDetail(query) {
+  return request({
+    url: '/api/blade-system/paramservice/detail',
+    method: 'get',
+    params: query
+  })
+}

+ 1 - 1
src/components/fee-info/config/feeInfo.json

@@ -61,7 +61,7 @@
         "label": "金额",
         "prop": "amount",
         "index": 6,
-        "cell": true,
+        "slot": true,
         "overHidden": true,
         "width": 150
     },

+ 13 - 8
src/components/fee-info/main.vue

@@ -48,24 +48,26 @@
           </el-select>
           <span v-else>{{ row.billNo }}</span>
         </template>
-        <template slot="price" slot-scope="{ row }">
+        <template slot="price" slot-scope="{ row,index }">
           <el-input-number v-if="row.$cellEdit" v-model="row.price" placeholder="请输入" size="small" :controls="false"
-            :precision="2" @input="countChange(row)" style="width: 100%"></el-input-number>
+            :precision="2" @input="countChange(row)" style="width: 100%" :min="paramValue==0?0:'-Infinity'"></el-input-number>
           <span v-else>{{ row.price | micrometerFormat2 }}</span>
         </template>
         <template slot="quantity" slot-scope="{ row }">
           <el-input-number v-if="row.$cellEdit && !isDecimal" v-model="row.quantity" size="small" placeholder="请输入"
-            :controls="false" :precision="0" @input="countChange(row)" style="width: 100%"></el-input-number>
+            :controls="false" :precision="0" @input="countChange(row)" style="width: 100%" :min="paramValue==0?0:'-Infinity'"></el-input-number>
           <el-input-number v-if="row.$cellEdit && isDecimal" v-model="row.quantity" size="small" placeholder="请输入"
-            :controls="false" :precision="6" @input="countChange(row)" style="width: 100%"></el-input-number>
+            :controls="false" :precision="6" @input="countChange(row)" style="width: 100%" :min="paramValue==0?0:'-Infinity'"></el-input-number>
           <span v-else>{{ row.quantity | decimalFormat2 }}</span>
         </template>
         <template slot="amount" slot-scope="{ row }">
-          <span>{{ row.amount | micrometerFormat2 }}</span>
+          <el-input-number v-if="row.$cellEdit" v-model="row.amount" size="small" placeholder="请输入"
+            :controls="false" :precision="2" @input="countChange(row)" style="width: 100%" :min="paramValue==0?0:'-Infinity'"></el-input-number>
+          <span v-else>{{ row.amount | micrometerFormat2 }}</span>
         </template>
         <template slot="exchangeRate" slot-scope="{ row }">
           <el-input-number v-if="row.$cellEdit" v-model="row.exchangeRate" size="small" :controls="false" :precision="6"
-            @change="rateChange(row)" style="width: 100%" placeholder="请输入"></el-input-number>
+            @change="rateChange(row)" style="width: 100%" placeholder="请输入" :min="paramValue==0?0:'-Infinity'"></el-input-number>
           <span v-else>{{ row.exchangeRate }}</span>
         </template>
         <template slot="currency" slot-scope="{ row }">
@@ -138,7 +140,7 @@ import {
   paymentApply
 } from "@/api/financialManagement/paymentRequest";
 import { contrastList } from "@/util/contrastData";
-import { allCropList } from "@/api/basicData/customerInformation";
+import { allCropList, paramserviceDetail } from "@/api/basicData/customerInformation";
 import { getCustomerCode, getCustomerName } from "@/enums/management-type";
 import { getParities } from "@/api/basicData/customerInquiry";
 import { dateFormat } from "@/util/date";
@@ -227,6 +229,7 @@ export default {
       tab2: false,
       corpList: [],
       invoiceData: [],
+      paramValue: 1,
     };
   },
   props: {
@@ -332,6 +335,9 @@ export default {
       this.findObject(this.feeOption.column, "corpId").hide = true;
       this.findObject(this.feeOption.column, "corpId").showColumn = false;
     }
+    paramserviceDetail({ paramKey: 'COST_TF_NEG' }).then(res => {
+      this.paramValue = res.data.data.paramValue
+    });
   },
   components: {
     cropDialog,
@@ -540,7 +546,6 @@ export default {
       });
     },
     getCorpData(row) {
-      console.log(row)
       this.$set(this.feeData[row.index], 'corpName', row.cname)
       this.$set(this.feeData[row.index], 'corpId', row.id)
     },

+ 1 - 1
src/views/iosBasicData/PaymentApplication/assembly/finstlbillsitems.vue

@@ -39,7 +39,7 @@
             </el-table-column>
             <el-table-column
                 prop="dc"
-                label="收/付" width="50px">
+                label="收/付" width="60px">
                 <template slot-scope="{ row }">
                     <span>{{row.dc}}</span>
                 </template>

文件差异内容过多而无法显示
+ 213 - 290
src/views/iosBasicData/aeamends/amendsDetails.vue


+ 2 - 1
src/views/iosBasicData/aiamends/amendsDetails.vue

@@ -1125,7 +1125,6 @@ export default {
             this.form.billNoFormat = 'AIA'
             this.form.businessTypeCode = 'AIA'
             amendsSubmit(this.form).then(res=>{
-                this.saveLoading = false
                 // 把费用编辑状态变成不可编辑
                 for (let item of this.form.feeCenterList) {
                     this.$delete(item, 'editType')
@@ -1136,6 +1135,8 @@ export default {
                     message: "操作成功!"
                 });
                 this.amendsDetailfun(res.data.data.id)
+            }).finally(() => {
+                this.saveLoading = false
             })
         },
         // 提交请核

+ 10 - 9
src/views/iosBasicData/release/jobApplication/detailsPage.vue

@@ -7,11 +7,11 @@
                 </el-button>
             </div>
             <div class="add-customer-btn">
-                <el-button class="el-button&#45;&#45;small-yh" style="margin-left: 6px;" type="primary" size="small"
+                <!-- <el-button class="el-button&#45;&#45;small-yh" style="margin-left: 6px;" type="primary" size="small"
                     v-if="form.id && editButton" :disabled="form.issueStatus != 'N'" @click="inEdit">编 辑
-                </el-button>
+                </el-button> -->
                 <el-button class="el-button--small-yh" style="margin-left: 6px;" type="primary" size="small"
-                    v-if="!editButton" @click="submit">保 存
+                    :disabled="form.issueStatus != 'N'" @click="submit">保 存
                 </el-button>
                 <el-button type="success" size="small" v-if="form.id && form.issueStatus == 'N'" @click="subApplication">提
                     交</el-button>
@@ -807,8 +807,6 @@ export default {
     },
     async created() {
         if (this.detailData.id) {
-            this.editButton = true
-            this.optionForm.disabled = true
             this.getDetail(this.detailData.id)
         }
     },
@@ -1059,8 +1057,6 @@ export default {
                         submit(obj).then(res => {
                             this.form = res.data.data
                             this.$message.success("保存成功");
-                            // this.editButton = true;
-                            // this.optionForm.disabled = true
                         }).finally(() => {
                             loading.close();
                         });
@@ -1190,10 +1186,15 @@ export default {
                 spinner: 'el-icon-loading',
                 background: 'rgba(255,255,255,0.7)'
             })
+            this.editButton = false
+            this.optionForm.disabled = false
             getDetails({ id: id }).then(res => {
                 this.form = res.data.data
-                loading.close();
-            }).catch(() => {
+                if (res.data.data.issueStatus != 'N') {
+                    this.editButton = true
+                    this.optionForm.disabled = true
+                }
+            }).finally(() => {
                 loading.close();
             })
         },

+ 17 - 14
src/views/iosBasicData/release/releaseManagement/detailsPage.vue

@@ -7,11 +7,11 @@
                 </el-button>
             </div>
             <div class="add-customer-btn">
-                <el-button class="el-button&#45;&#45;small-yh" style="margin-left: 6px;" type="primary" size="small"
+                <!-- <el-button class="el-button&#45;&#45;small-yh" style="margin-left: 6px;" type="primary" size="small"
                     v-if="form.id && editButton" :disabled="form.issueStatus != 'I'" @click="inEdit">编 辑
-                </el-button>
+                </el-button> -->
                 <el-button class="el-button--small-yh" style="margin-left: 6px;" type="primary" size="small"
-                    v-if="!editButton" @click="submit">保 存
+                    :disabled="form.issueStatus != 'I'" @click="submit">保 存
                 </el-button>
                 <el-button type="success" size="small" v-if="form.id && form.issueStatus == 'I'"
                     @click="subApplication">放单完成</el-button>
@@ -770,12 +770,12 @@ export default {
                             overHidden: true,
                             display: false,
                             dicData: [{
-                            label: '否',
-                            value: 0
-                        }, {
-                            label: '是',
-                            value: 1
-                        }],
+                                label: '否',
+                                value: 0
+                            }, {
+                                label: '是',
+                                value: 1
+                            }],
                         }, {
                             label: '金额',
                             prop: 'overAmountDr',
@@ -907,8 +907,6 @@ export default {
     },
     async created() {
         if (this.detailData.id) {
-            this.editButton = true
-            this.optionForm.disabled = true
             this.getDetail(this.detailData.id)
         }
     },
@@ -1310,12 +1308,17 @@ export default {
                 spinner: 'el-icon-loading',
                 background: 'rgba(255,255,255,0.7)'
             })
+            this.editButton = false
+            this.optionForm.disabled = false
             getDetails({ id: id }).then(res => {
                 this.form = res.data.data
+                if (this.form.issueStatus != 'I') {
+                    this.editButton = true
+                    this.optionForm.disabled = true
+                }
+            }).finally(() => {
                 loading.close();
-            }).catch(() => {
-                loading.close();
-            })
+            });
         },
         //自定义列保存
         async saveColumnTwo(ref, option, optionBack, code) {

+ 13 - 8
src/views/iosBasicData/release/schedulingManagement/detailsPage.vue

@@ -7,11 +7,11 @@
                 </el-button>
             </div>
             <div class="add-customer-btn">
-                <el-button class="el-button&#45;&#45;small-yh" style="margin-left: 6px;" type="primary" size="small"
+                <!-- <el-button class="el-button&#45;&#45;small-yh" style="margin-left: 6px;" type="primary" size="small"
                     v-if="form.id && editButton" :disabled="form.issueStatus != 'D'" @click="inEdit">编 辑
-                </el-button>
+                </el-button> -->
                 <el-button class="el-button--small-yh" style="margin-left: 6px;" type="primary" size="small"
-                    v-if="!editButton" @click="submit">保 存
+                    :disabled="form.issueStatus != 'D'" @click="submit">保 存
                 </el-button>
                 <el-button type="success" size="small" v-if="form.id && form.issueStatus == 'D'"
                     @click="subApplication">调度完成</el-button>
@@ -346,8 +346,8 @@ export default {
     },
     async created() {
         if (this.detailData.id) {
-            this.editButton = true
-            this.optionForm.disabled = true
+            // this.editButton = true
+            // this.optionForm.disabled = true
             this.getDetail(this.detailData.id)
         }
         if (this.dispatchList) {
@@ -569,12 +569,17 @@ export default {
                 spinner: 'el-icon-loading',
                 background: 'rgba(255,255,255,0.7)'
             })
+            this.editButton = false
+            this.optionForm.disabled = false
             getDetails({ id: id }).then(res => {
                 this.form = res.data.data
+                if (res.data.data.issueStatus != 'D') {
+                    this.editButton = true
+                    this.optionForm.disabled = true
+                }
+            }).finally(() => {
                 loading.close();
-            }).catch(() => {
-                loading.close();
-            })
+            });
         },
         generateDis() {
             // generateDispatch({ ids: this.appIds }).then(res => {

+ 2 - 1
src/views/iosBasicData/siamends/amendsDetails.vue

@@ -1109,7 +1109,6 @@ export default {
             this.form.billNoFormat = 'SIA'
             this.form.businessTypeCode = 'SIA'
             amendsSubmit(this.form).then(res=>{
-                this.saveLoading = false
                 // 把费用编辑状态变成不可编辑
                 for (let item of this.form.feeCenterList) {
                     this.$delete(item, 'editType')
@@ -1120,6 +1119,8 @@ export default {
                     message: "操作成功!"
                 });
                 this.amendsDetailfun(res.data.data.id)
+            }).finally(() => {
+                this.saveLoading = false
             })
         },
         // 提交请核

+ 119 - 96
src/views/wel/home/landTransportation/components/quick-launch.vue

@@ -7,19 +7,19 @@
         </span>
       </div>
       <div class="content" v-if="zhcontent == '234557'">
-        <div class="content-icon" @click="entrust?inPage('wt'):'JZ'">
+        <div class="content-icon" @click="entrust ? inPage('wt') : 'JZ'">
           <i class="tradingIcon icon-purchase" style="color:#75CD28"></i>
           <span>委托</span>
         </div>
-        <div class="content-icon" @click="dispatch?inPage('dd'):'JZ'">
+        <div class="content-icon" @click="dispatch ? inPage('dd') : 'JZ'">
           <i class="tradingIcon icon-receipt" style="color:#409EFF"></i>
           <span>调度</span>
         </div>
-        <div class="content-icon" @click="sendACar?inPage('pc'):'JZ'">
+        <div class="content-icon" @click="sendACar ? inPage('pc') : 'JZ'">
           <i class="tradingIcon icon-ship" style="color:#921939"></i>
           <span>派车</span>
         </div>
-        <div class="content-icon" @click="track?inPage('gz'):'JZ'">
+        <div class="content-icon" @click="track ? inPage('gz') : 'JZ'">
           <i class="tradingIcon icon-ship" style="color:#7db4ff"></i>
           <span>跟踪</span>
         </div>
@@ -27,116 +27,126 @@
           <i class="tradingIcon icon-ship" style="color:#efc860"></i>
           <span>散货</span>
         </div>
-        <div class="content-icon" @click="sBook?inPage('lytz'):'JZ'">
+        <div class="content-icon" @click="sBook ? inPage('lytz') : 'JZ'">
           <i class="tradingIcon icon-sales" style="color:#143056"></i>
           <span>台账</span>
         </div>
-        <div class="content-icon" @click="reminder?inPage('dqtx'):'JZ'">
-          <div style="width: 36px;height: 36px;background-color: #3a8ee6;border-radius: 5px;line-height: 36px;text-align: center;padding-top: 4px">
+        <div class="content-icon" @click="reminder ? inPage('dqtx') : 'JZ'">
+          <div
+            style="width: 36px;height: 32px;background-color: #3a8ee6;border-radius: 5px;line-height: 36px;text-align: center;padding-top: 4px">
             <i class="el-icon-bell" style="color:#fff;font-size: 28px;"></i>
           </div>
           <span>到期提醒</span>
         </div>
+        <div class="content-icon" @click="inPage('smart')" v-if="sysType == 7">
+          <div
+            style="width: 36px;height: 32px;background-color: #3a8ee6;border-radius: 5px;line-height: 36px;text-align: center;padding-top: 4px">
+            <i class="el-icon-basketball" style="color:#fff;font-size: 28px;"></i>
+          </div>
+          <span>智慧大屏</span>
+        </div>
       </div>
 
-        <div class="content" v-if="zhcontent == '119111'">
-            <div class="content-icon" @click="entrust?dajian('wt'):'JZ'">
-                <i class="tradingIcon icon-purchase" style="color:#75CD28"></i>
-                <span>特种委托</span>
-            </div>
-            <div class="content-icon" @click="dispatch?dajian('dd'):'JZ'">
-                <i class="tradingIcon icon-receipt" style="color:#409EFF"></i>
-                <span>特种调度</span>
-            </div>
-            <div class="content-icon" @click="sendACar?dajian('pc'):'JZ'">
-                <i class="tradingIcon icon-ship" style="color:#921939"></i>
-                <span>特种派车</span>
-            </div>
-            <div class="content-icon" @click="track?dajian('gz'):'JZ'">
-                <i class="tradingIcon icon-ship" style="color:#7db4ff"></i>
-                <span>特种跟踪</span>
-            </div>
-            <div class="content-icon" @click="sBook?dajian('lytz'):'JZ'">
-                <i class="tradingIcon icon-sales" style="color:#143056"></i>
-                <span>特种台账</span>
-            </div>
+      <div class="content" v-if="zhcontent == '119111'">
+        <div class="content-icon" @click="entrust ? dajian('wt') : 'JZ'">
+          <i class="tradingIcon icon-purchase" style="color:#75CD28"></i>
+          <span>特种委托</span>
+        </div>
+        <div class="content-icon" @click="dispatch ? dajian('dd') : 'JZ'">
+          <i class="tradingIcon icon-receipt" style="color:#409EFF"></i>
+          <span>特种调度</span>
+        </div>
+        <div class="content-icon" @click="sendACar ? dajian('pc') : 'JZ'">
+          <i class="tradingIcon icon-ship" style="color:#921939"></i>
+          <span>特种派车</span>
+        </div>
+        <div class="content-icon" @click="track ? dajian('gz') : 'JZ'">
+          <i class="tradingIcon icon-ship" style="color:#7db4ff"></i>
+          <span>特种跟踪</span>
+        </div>
+        <div class="content-icon" @click="sBook ? dajian('lytz') : 'JZ'">
+          <i class="tradingIcon icon-sales" style="color:#143056"></i>
+          <span>特种台账</span>
         </div>
+      </div>
     </el-card>
-    <el-dialog
-        title="消息提醒"
-        :visible.sync="enclosure"
-        append-to-body
-        width="70%">
+    <el-dialog title="消息提醒" :visible.sync="enclosure" append-to-body width="70%">
       <avue-crud :data="data" @on-load="onLoad" :option="option" :page.sync="page"></avue-crud>
       <span slot="footer" class="dialog-footer">
-          <el-button @click="enclosure = false" size="small">取 消</el-button>
-        </span>
+        <el-button @click="enclosure = false" size="small">取 消</el-button>
+      </span>
     </el-dialog>
   </div>
 </template>
 
 <script>
-import {driverRemind} from "@/api/landTransportation/driver";
-
+import { driverRemind } from "@/api/landTransportation/driver";
+import { getToken } from "@/util/auth";
 export default {
   name: "basicContainer",
   data() {
     return {
-      enclosure:false,
-      data:[],
+      enclosure: false,
+      data: [],
       roleName: localStorage.getItem("roleName").split(','),
-      option:{
-        align:'center',
-        dialogWidth:'85%',
+      option: {
+        align: 'center',
+        dialogWidth: '85%',
         index: true,
         searchIcon: true,
-        addBtn:false,
+        addBtn: false,
         searchIndex: 2,
-        menu:false,
-        refreshBtn:false,
-        searchLabelWidth:100,
-        searchSpan:8,
-        column:[{
+        menu: false,
+        refreshBtn: false,
+        searchLabelWidth: 100,
+        searchSpan: 8,
+        column: [{
           label: '车队',
           prop: 'fleetName',
-        },{
+        }, {
           label: '车号',
           prop: 'plateNo',
-        },{
+        }, {
           label: '司机',
           prop: 'driverName',
-        },{
+        }, {
           label: '电话',
           prop: 'tel',
-        },{
+        }, {
           label: '年审日期',
           prop: 'inspectExpired',
-        },{
+        }, {
           label: '保险日期',
           prop: 'insuranceExpired',
         }]
       },
-      entrust:false,
-      dispatch:false,
-      sBook:false,
-      reminder:false,
-      sendACar:false,
-      track:false,
-        // 租户号
-        zhcontent:null
+      entrust: false,
+      dispatch: false,
+      sBook: false,
+      reminder: false,
+      sendACar: false,
+      track: false,
+      // 租户号
+      zhcontent: null,
+      largeScreenToken:'',
     };
   },
   props: {
     sysType: Number
   },
-    created() {
-      this.$nextTick(()=>{
-          this.zhcontent = JSON.parse(localStorage.getItem('saber-tenantId')).content
-          console.log(JSON.parse(localStorage.getItem('saber-tenantId')).content)
+  created() {
+    this.$nextTick(() => {
+      this.zhcontent = JSON.parse(localStorage.getItem('saber-tenantId')).content
+      console.log(JSON.parse(localStorage.getItem('saber-tenantId')).content)
+    })
+    if (this.sysType == 7) {
+      this.getWorkDicts('large_screen').then(res => {
+        this.largeScreenToken = res.data.data[0].dictKey;
       })
-    },
+    }
+  },
 
-    mounted() {
+  mounted() {
     // entrust
     // 委托
     // dispatch
@@ -149,27 +159,27 @@ export default {
     // 台账
     // reminder
     // 到期提醒
-    if (this.roleName.indexOf('admin') !== -1 || this.roleName.indexOf('演示账号') !== -1){
+    if (this.roleName.indexOf('admin') !== -1 || this.roleName.indexOf('演示账号') !== -1) {
       this.entrust = true
       this.dispatch = true
       this.sBook = true
       this.reminder = true
       this.sendACar = true
       this.track = true
-    }else if (this.roleName.indexOf('平台') !== -1){
-      if (this.roleName.indexOf('总调度') !== -1 || this.roleName.indexOf('分管调度') !== -1){
+    } else if (this.roleName.indexOf('平台') !== -1) {
+      if (this.roleName.indexOf('总调度') !== -1 || this.roleName.indexOf('分管调度') !== -1) {
         // 调度、台账、到期提醒
         this.entrust = true //委托
         this.dispatch = true //调度
         this.sBook = true //台账
         this.reminder = true //到期提醒
       }
-    }else if (this.roleName.indexOf('客户') !== -1){
-      if (this.roleName.indexOf('总经理') !== -1 || this.roleName.indexOf('部门经理') !== -1 || this.roleName.indexOf('业务员') !== -1){
+    } else if (this.roleName.indexOf('客户') !== -1) {
+      if (this.roleName.indexOf('总经理') !== -1 || this.roleName.indexOf('部门经理') !== -1 || this.roleName.indexOf('业务员') !== -1) {
         // 委托、台账
         this.entrust = true //委托
         this.sBook = true //台账
-      }else {
+      } else {
         this.entrust = true
         this.sBook = true
         this.dispatch = false
@@ -177,7 +187,7 @@ export default {
         this.sendACar = false
         this.track = false
       }
-    }else if (this.roleName.indexOf('车队') !== -1){
+    } else if (this.roleName.indexOf('车队') !== -1) {
       this.sendACar = true
       this.track = true
       this.sBook = true
@@ -208,32 +218,39 @@ export default {
         case "dqtx":
           this.enclosure = true
           break;
+        case "smart":
+          if ((localStorage.getItem("roleName").split(',')).indexOf('admin') !== -1) {
+            window.open('http://114.115.238.226:9527/view/' + this.largeScreenToken + '?token=' + getToken())
+          } else {
+            this.$message.error('此帐号无权限');
+          }
+          break;
       }
     },
 
-      dajian(type) {
-          switch (type) {
-              case "wt":
-                  this.$router.push("/SpecialTrade/placeAnOrder/index");
-                  break;
-              case "dd":
-                  this.$router.push("/SpecialTrade/dispatchingCars/index");
-                  break;
-              case "pc":
-                  this.$router.push("/SpecialTrade/motorcadeDriver/index");
-                  break;
-              case "gz":
-                  this.$router.push("/SpecialTrade/driver/index");
-                  break;
-              case "lytz":
-                  this.$router.push("/SpecialTrade/reportAnalysis/index");
-                  break;
-          }
-      },
+    dajian(type) {
+      switch (type) {
+        case "wt":
+          this.$router.push("/SpecialTrade/placeAnOrder/index");
+          break;
+        case "dd":
+          this.$router.push("/SpecialTrade/dispatchingCars/index");
+          break;
+        case "pc":
+          this.$router.push("/SpecialTrade/motorcadeDriver/index");
+          break;
+        case "gz":
+          this.$router.push("/SpecialTrade/driver/index");
+          break;
+        case "lytz":
+          this.$router.push("/SpecialTrade/reportAnalysis/index");
+          break;
+      }
+    },
 
     //查询
     onLoad() {
-      driverRemind().then(res=>{
+      driverRemind().then(res => {
         this.data = res.data.data
       })
     }
@@ -246,32 +263,38 @@ export default {
   padding: 5px;
   box-sizing: border-box;
   height: 100%;
+
   ::v-deep .el-card__body {
     padding: 10px 15px;
     font-size: 14px;
   }
+
   &__card {
     width: 100%;
     height: 100%;
   }
+
   .title {
     display: flex;
     justify-content: space-between;
   }
 }
+
 .tradingIcon {
   font-size: 36px;
 }
+
 .content {
   display: flex;
+
   &-icon {
     display: flex;
     flex-direction: column;
     align-items: center;
     margin: 1.5vh 1vw 0vh 1vw;
+
     span {
       margin-top: 1vh;
     }
   }
-}
-</style>
+}</style>

+ 1 - 1
src/views/wel/index.vue

@@ -3,7 +3,7 @@
         <dev v-if="billType != 12">
             <div v-if="billType && saberTenantId != 212186 && saberTenantId != 504978 && billType != 11">
                 <tongjiSchool v-if="billType == 1"></tongjiSchool>
-                <landTransportation v-else-if="billType == 7"></landTransportation>
+                <landTransportation v-else-if="billType == 7" :sysType="billType"></landTransportation>
                 <jiatongPage v-else-if="billType == 8"></jiatongPage>
                 <noctite v-else-if="billType == 9"></noctite>
                 <equipment-control v-else-if="billType == 10"></equipment-control>

部分文件因为文件数量过多而无法显示