Bladeren bron

吉永分页,和汽保首页

caojunjie 1 jaar geleden
bovenliggende
commit
978a7ab329

+ 1 - 1
src/components/boxCost/index.vue

@@ -101,7 +101,7 @@ export default {
             pageSize: 20,
             currentPage: 1,
             total: 0,
-            pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500]
+            pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000]
         },
         search:{},
       leaseIn: {

+ 1 - 1
src/views/boxManagement/importReturnTrip/index.vue

@@ -75,7 +75,7 @@ export default {
         pageSize: 20,
         currentPage: 1,
         total: 0,
-        pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500]
+        pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000]
       },
       option: {},
       optionList: {

+ 1 - 1
src/views/boxManagement/leaseIn/detailsPage.vue

@@ -245,7 +245,7 @@ export default {
             pageSize: 20,
             currentPage: 1,
             total: 0,
-            pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500]
+            pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000]
         },
       checkData: {},
       checkDialog: false,

+ 1 - 1
src/views/boxManagement/leaseIn/index.vue

@@ -63,7 +63,7 @@ export default {
         pageSize: 20,
         currentPage: 1,
         total: 0,
-        pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500]
+        pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000]
       },
       key:0,
       option: {},

+ 1 - 1
src/views/boxManagement/leaseOut/detailsPage.vue

@@ -239,7 +239,7 @@ export default {
             pageSize: 20,
             currentPage: 1,
             total: 0,
-            pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500]
+            pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000]
         },
       checkData: {},
       checkDialog: false,

+ 1 - 1
src/views/boxManagement/leaseOut/index.vue

@@ -63,7 +63,7 @@ export default {
         pageSize: 20,
         currentPage: 1,
         total: 0,
-        pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500]
+        pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000]
       },
       key:0,
       option: {},

+ 23 - 4
src/views/wel/index.vue

@@ -1,5 +1,5 @@
 <template>
-  <div v-if="billType && saberTenantId != 212186">
+  <div v-if="billType && saberTenantId != 212186 && saberTenantId != 504978">
     <tongjiSchool v-if="billType == 1"></tongjiSchool>
     <landTransportation v-else-if="billType == 7"></landTransportation>
     <jiatongPage v-else-if="billType == 8"></jiatongPage>
@@ -16,13 +16,32 @@
                 </span>
             </div>
             <div class="content">
-                <div class="content-icon" @click="inPage()">
+                <div class="content-icon" @click="inPage('/productionManagement/index')">
                     <i class="tradingIcon icon-purchase" style="color:#75CD28"></i>
                     <span style="font-size: 14px">模拟生产</span>
                 </div>
             </div>
         </el-card>
     </div>
+    <div v-else-if="saberTenantId == 504978" style="padding: 10px">
+        <el-card class="home-container__card">
+            <div class="title">
+                <span>
+                    快速发起
+                </span>
+            </div>
+            <div class="content">
+                <div class="content-icon" @click="inPage('/EquipmentArchives/index')">
+                    <i class="tradingIcon icon-purchase" style="color:#75CD28"></i>
+                    <span style="font-size: 14px">设备档案</span>
+                </div>
+                <div class="content-icon" @click="inPage('/maintenanceQ/index')">
+                    <i class="tradingIcon icon-purchase" style="color:#75CD28"></i>
+                    <span style="font-size: 14px">设备维修</span>
+                </div>
+            </div>
+        </el-card>
+    </div>
 </template>
 
 <script>
@@ -69,8 +88,8 @@ export default {
     landTransportation
   },
   methods: {
-      inPage(){
-          this.$router.push("/productionManagement/index");
+      inPage(url){
+          this.$router.push(url);
       },
   }
 };