浏览代码

fix: Admin Console文案调整

liyangbin 5 月之前
父节点
当前提交
d0b98360a6

public/download/PDF Tech Admin Console Guidelines.pdf → public/download/Admin Console Guidelines.pdf


+ 1 - 1
src/components/asideInfo.vue

@@ -17,7 +17,7 @@ export default {
   <div class="w-480px pt-28px pb-141px bg-[#F5FAFF] aside-bg rounded-l-16px" :class="{ 'IS-PB80': isPB80 }">
     <img src="@/assets/images/PDF_logo.png" alt="logo" class="w-251px px-28px">
     <slot name="title">
-      <div class="mt-74px font-500 text-24px leading-36px px-80px text-[#101828]">Welcome to <br /> PDF Tech Admin
+      <div class="mt-74px font-500 text-24px leading-36px px-80px text-[#101828]">Welcome to <br /> Admin
         Console</div>
     </slot>
     <slot name="desc">

+ 11 - 11
src/router/index.js

@@ -8,22 +8,22 @@ Vue.use(VueRouter)
 
 // 重写push||replace方法
 // 先将原始push方法复制
-let originPush=VueRouter.prototype.push
-let originReplace=VueRouter.prototype.replace
+let originPush = VueRouter.prototype.push
+let originReplace = VueRouter.prototype.replace
 // 重写
-VueRouter.prototype.push=function(location,res,rej){
+VueRouter.prototype.push = function (location, res, rej) {
   // 如果传了成功,失败的回调
-  if(res&&rej){
-      originPush.call(this,location,res,rej)
-  }else{
-      originPush.call(this,location,()=>{},()=>{})
+  if (res && rej) {
+    originPush.call(this, location, res, rej)
+  } else {
+    originPush.call(this, location, () => { }, () => { })
   }
 }
-VueRouter.prototype.replace=function(location,res,rej){
+VueRouter.prototype.replace = function (location, res, rej) {
   if (res && rej) {
-      originReplace.call(this, location, res, rej)
+    originReplace.call(this, location, res, rej)
   } else {
-      originReplace.call(this, location, () => { }, () => { })
+    originReplace.call(this, location, () => { }, () => { })
   }
 }
 
@@ -64,7 +64,7 @@ const router = new VueRouter({
       name: "FreeTrial",
       component: () => import("../views/FreeSign.vue"),
       meta: {
-        title: 'Sign up | Free Trial PDF Tech Admin Console'
+        title: 'Sign up | Free Trial Admin Console'
       }
     },
     {

+ 2 - 2
src/views/FreeSign.vue

@@ -257,7 +257,7 @@ export default {
       <AsideInfo :isPB80="true">
         <template v-slot:title>
           <div class="mt-74px font-500 text-24px leading-36px px-80px text-[#101828]">
-            Try PDF Tech Admin Console for Free
+            Try Admin Console for Free
           </div>
         </template>
         <template v-slot:desc>
@@ -275,7 +275,7 @@ export default {
           <div class="text-16px leading-24px text-[#404653] pb-8px border-b-1px border-[#E2E3E5]">
             Sign up to get
             <span class="text-[#12B76A]">14-day free trial</span>
-            of PDF Tech Admin Console (5 licenses).
+            of Admin Console (5 licenses).
           </div>
           <div class="mt-24px">
             <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-position="left" label-width="200px"

+ 1 - 1
src/views/Login.vue

@@ -198,7 +198,7 @@ export default {
           <h1 class="text-24px font-500 mb-8px">Log in</h1>
           <div class="text-16px leading-24px text-[#404653] pb-8px border-b-1px border-[#E2E3E5]">
             Log into
-            <span class="text-[#12B76A]">admin console</span>
+            <span class="text-[#12B76A]">Admin Console</span>
             to manage licenses and devices
           </div>
           <el-form :model="ruleForm" ref="ruleForm" :rules="rules" label-position="top" label-width="100px"

+ 2 - 2
src/views/Support.vue

@@ -52,8 +52,8 @@ const updataUserInfo = () => {
       <div class="w-[49%] mt-24px h-116px bg-[#fff] rounded-8px flex items-center">
         <div class="ml-32px mr-24px"><Phone /></div>
         <div>
-            <p class="text-16px font-bold leading-20px">PDF Tech Admin Console Guidelines</p>
-            <a  href="/download/PDF Tech Admin Console Guidelines.pdf" download="PDF Tech Admin Console Guidelines.pdf" class="flex leading-20px mt-12px text-[#1460F3] underline">Click to download</a>
+            <p class="text-16px font-bold leading-20px">Admin Console Guidelines</p>
+            <a  href="/download/Admin Console Guidelines.pdf" download="Admin Console Guidelines.pdf" class="flex leading-20px mt-12px text-[#1460F3] underline">Click to download</a>
         </div>
       </div>
     </div>