liuhj před 6 měsíci
rodič
revize
0aa3ed687c

+ 15 - 0
src/components/EvaluationForm.vue

@@ -0,0 +1,15 @@
+<template>
+    <div>
+        评价
+    </div>
+</template>
+<script>
+export default {
+    
+}
+</script>
+<style>
+    
+</style>
+
+

+ 2 - 3
src/components/Finance/ExpenseReview.vue

@@ -65,8 +65,7 @@
                     </el-table-column>
                     <el-table-column
                         prop="clientName"
-                        label="客户名称"
-                        width="100">
+                        label="客户名称">
                     </el-table-column>
                     <el-table-column
                         prop="clientUnit"
@@ -93,7 +92,7 @@
                         label="接团操作人"
                         width="110">
                     </el-table-column>
-                    <el-table-column label="操作">
+                    <el-table-column label="操作" width="135">
                         <template slot-scope="scope">
                           <el-button Inquireclick
                             type="primary"

+ 6 - 0
src/router/index.js

@@ -124,6 +124,7 @@ import GroupUnreviewed from '@/components/Finance/GroupUnreviewed';
 import VisaCommission from '@/components/OP/VisaCommission';
 import SuppliesInventory from '@/components/OP/SuppliesInventory';
 import CardReconciliation from '@/components/Finance/CardReconciliation';
+import EvaluationForm from '@/components/EvaluationForm'
 
 Vue.use(Router)
 
@@ -771,6 +772,11 @@ export default new Router({
       path: '/Sankunginfo',
       name: 'Sankunginfo',
       component: Sankunginfo
+    },
+    {
+      path: '/EvaluationForm',
+      name: 'EvaluationForm',
+      component: EvaluationForm
     }
   ]
 })