From 2a402a91765ceadc6e6bbcb5231df9a55e9e11fd Mon Sep 17 00:00:00 2001
From: "HK\\Administrator" <461671400@qq.com>
Date: Mon, 31 Jul 2023 10:06:12 +0800
Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/components/TravelContractNewRB.vue | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/src/components/TravelContractNewRB.vue b/src/components/TravelContractNewRB.vue
index 0565a98ef..cf49e4d6c 100644
--- a/src/components/TravelContractNewRB.vue
+++ b/src/components/TravelContractNewRB.vue
@@ -312,6 +312,9 @@
 
         <input type="button" v-if="CtObj.auditContract!=2" class="btn-warning" @click="submitForm('CtObj')"
           value="保存" />
+        <template v-if="CurrentUserInfo.EmployeeId==615">
+          <input type="button" class="btn-warning" @click="submitForm('CtObj')" value="保存" />
+        </template>
       </div>
     </div>
     <el-form label-width="180px" :model="CtObj" :rules="rules" ref="CtObj">
@@ -710,7 +713,8 @@
                 </tr>
                 <tr>
                   <td colspan="7">
-                    <el-input v-model="CtObj.rbInfo" placeholder="成团送往返国际机票、全程燃油税、机场税(因地接公司企划专案,如有机票自理者团费无减免,不便之处敬请见谅。"> </el-input>
+                    <el-input v-model="CtObj.rbInfo" placeholder="成团送往返国际机票、全程燃油税、机场税(因地接公司企划专案,如有机票自理者团费无减免,不便之处敬请见谅。">
+                    </el-input>
                   </td>
                 </tr>
               </table>
@@ -953,7 +957,7 @@
           contactsMobile: "", //紧急联系电话
           templateType: 1,
           serviceNum: '',
-          rbInfo:"",
+          rbInfo: "",
         },
         //旅客名单
         guestList: [],
@@ -1226,7 +1230,9 @@
             }
 
             if (this.CtObj.auditContract == 2) {
-              this.goContract()
+              if (this.CurrentUserInfo.EmployeeId != 615) {
+                this.goContract()
+              }
             }
           } else {
             this.Error(res.data.message);
-- 
2.18.1