Browse Source

0430团组操作lhj1344

liuhj 1 year ago
parent
commit
44b5308a68
3 changed files with 35 additions and 5 deletions
  1. 9 5
      src/components/OP/OPgroup.vue
  2. 20 0
      src/components/OP/visaAgencyfee.vue
  3. 6 0
      src/router/index.js

+ 9 - 5
src/components/OP/OPgroup.vue

@@ -49,6 +49,14 @@
                             <div v-if="scope.row.department!='国交部'&&scope.row.department!='市场部'">{{ scope.row.department }}</div>
                         </template>
                     </el-table-column>
+                    <el-table-column
+                        prop="teamLev"
+                        label="级 别"
+                        width="70">
+                        <template slot-scope="scope">
+                            {{ scope.row.teamLev=='暂未定级'?'无':scope.row.teamLev }}
+                        </template>
+                    </el-table-column>
                     <el-table-column
                         prop="tourCode"
                         width="100"
@@ -64,11 +72,7 @@
                         label="团组类型"
                         width="110">
                     </el-table-column>
-                    <!-- <el-table-column
-                        prop="teamLev"
-                        label="级 别"
-                        width="80">
-                    </el-table-column> -->
+                    
                     <el-table-column
                         prop="teamName"
                         label="团队名称"

+ 20 - 0
src/components/OP/visaAgencyfee.vue

@@ -0,0 +1,20 @@
+<template>
+    <div class="visaAgencyfee-all">
+        <div></div>
+        签证代办
+    </div>
+</template>
+<script>
+export default {
+      
+}
+</script>
+<style>
+.visaAgencyfee-all {
+    background-color: #fff;
+    padding: 10px;
+    box-shadow: 0 0 5px #0005;
+    border-radius: 10px;
+    min-height: 830px;
+}
+</style>

+ 6 - 0
src/router/index.js

@@ -104,6 +104,7 @@ import Overspend from '@/components/Finance/Overspend';
 import Overspendedit from '@/components/Finance/Overspendedit';
 import backwardtabke from '@/components/OP/backwardtabke'
 import royaltypg from '@/components/Finance/royaltypg';
+import visaAgencyfee from '@/components/OP/visaAgencyfee'
 
 
 Vue.use(Router)
@@ -642,6 +643,11 @@ export default new Router({
           name: 'royaltypg',
           component: royaltypg
         },
+        {
+          path: '/home/visaAgencyfee',
+          name: 'visaAgencyfee',
+          component: visaAgencyfee
+        },
       ]
     },
     {