Lijy преди 4 месеца
родител
ревизия
bd8a10a31e
променени са 1 файла, в които са добавени 12 реда и са изтрити 1 реда
  1. 12 1
      fhKeeper/formulahousekeeper/customerBuler-crm/src/pages/header/header.vue

+ 12 - 1
fhKeeper/formulahousekeeper/customerBuler-crm/src/pages/header/header.vue

@@ -47,6 +47,12 @@
     </div>
   </div>
   <div class="flex flex-row justify-start items-center text-white header-right">
+    <div class="cursor-pointer flex items-center">
+      <el-icon :size="24" @click="applicationMarket()">
+        <Menu />
+      </el-icon>
+      <div class="ml-2">应用市场</div>
+    </div>
     <el-badge :value="numberOfLogos" :max="99" class="ml-4 cursor-pointer h-[26px]" :show-zero="false">
       <el-icon :size="26" @click="newsDrawer = true">
         <Bell />
@@ -197,6 +203,11 @@ const changePasswordRules = reactive<FormRules<RuleForm>>({
 const globalPopup = inject<GlobalPopup>('globalPopup')
 const ruleFormRef = ref<FormInstance>()
 
+const applicationMarket = () => {
+  window.location.href = 'https://www.ttkuaiban.com/appMarket.html'
+  // window.open('https://www.ttkuaiban.com/appMarket.html', '_blank'); 
+}
+
 const changePassword = (formEl: FormInstance | undefined) => {
   if (!formEl) return
   if(!changePasswordForm.value.originPassword) {
@@ -424,7 +435,7 @@ watchEffect(() => {
 }
 
 .header-right {
-  width: 135px;
+  width: 220px;
 }
 
 .parentDiv {