Parcourir la source

通用的学习系统

y595705120 il y a 2 ans
Parent
commit
e2375b29ad

+ 1 - 1
config/index.js

@@ -4,7 +4,7 @@
 //
 // const TARGET = "http://study.ndjsxh.cn:8888/"
 // const TARGET = "http://localhost:8000/"
-const TARGET = "https://sm.hqedust.com/"
+const TARGET = "https://edu.hqedust.com/"
 const path = require('path')
 
 module.exports = {

+ 1 - 1
index.html

@@ -9,7 +9,7 @@
     <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
     <!-- <meta name="referrer" content="origin"> -->
 
-    <title>三明市建设人才服务中心</title>
+    <title>福建鸿锵教育科技有限公司</title>
   </head>
   <body style="margin:0px;">
     <div id="app"></div>

+ 8 - 4
src/App.vue

@@ -7,14 +7,12 @@
     <div class="ng-scope">
       <div class="footer ng-scope" style="z-index: 10">
         <div class="footer-bd">
-          <p>技术支持:三明市建设人才服务中心【0598-5157296】</p>
+          <p>技术支持:{{settings.title}}</p>
           <p>
               <span> ©2021 </span>
-              <!-- <a href="http://beian.miit.gov.cn/" target="_blank">闽ICP备19021760号-1</a> -->
               <img class="beian" src="./assets/images/beian_hashc9b229c96d.png" alt="">
-              <!-- <a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=35010202001216" target="_blank"> -->
               <a href="http://beian.miit.gov.cn/" target="_blank">
-                网站备案:闽ICP备19021760号-2
+                网站备案:{{settings.beian}}
               </a>
            </p>
         </div>
@@ -25,11 +23,17 @@
 
 <script>
   import { mapActions } from "vuex";
+  import settings from '@/settings';
   export default {
     name: 'App',
     methods:{
       ...mapActions("user", ["loadTypeList"]),
     },
+    data(){
+      return {
+        settings
+      }
+    },
     created(){
       this.loadTypeList()
     }

+ 7 - 2
src/components/nav/navbar.vue

@@ -3,8 +3,7 @@
     <div class="m-header ng-scope">
       <div class="p-wrap-full tc" @click="goto('/')">
         <span class="logo " style="color: white;font-size: 56px;">
-
-          三明市建设人才服务中心  </span>
+          {{settings.title}}  </span>
       </div>
     </div>
 
@@ -12,7 +11,13 @@
 </template>
 
 <script>
+  import settings from '@/settings';
   export default {
+    data(){
+      return {
+        settings
+      }
+    },
     methods:{
       goto( path ){
         if( this.$route.path != path){

+ 7 - 1
src/containers/center/components/navbar/index.vue

@@ -4,7 +4,7 @@
       <div class="logo fl" style="padding-top: 24px;">
         <a href="javascript:void(0)" style="text-decoration: none"
             class="rel ng-binding" @click="$router.push('/')">
-           三明市建设人才服务中心
+           {{settings.title}}
           <div class="hover-block" style="padding-top: 24px;">
 
             <div class="hover-bd ng-scope" style="width:137px;margin-top: -20px" @click="$router.push('/')">
@@ -42,7 +42,13 @@
 
 <script>
   import { mapActions } from "vuex";
+  import settings from '@/settings';
   export default {
+	data(){
+		return {
+			settings
+		}
+	},
     props: {
       user: {
         type: Object,

+ 2 - 0
src/containers/login/login.vue

@@ -91,6 +91,7 @@ import navbar from "@/components/nav/navbar.vue";
 import Friendlink from "./components/friendlink/friendlink.vue";
 import { httpServer } from "@/components/httpServer/httpServer.js";
 import { mapGetters,mapActions } from "vuex";
+import settings from '@/settings';
 
 export default {
   components: {
@@ -102,6 +103,7 @@ export default {
   },
   data() {
     return {
+      settings,
       loginOk: false,
       periodObj: {
         userName: "",

+ 2 - 2
src/settings.js

@@ -1,6 +1,6 @@
 module.exports = {
-  title: '建设从业人员继续教育系统服务平台'
-  ,beian:'闽ICP备2121760号-1'
+  title: '福建鸿锵教育科技有限公司'
+  ,beian:'闽ICP备2021006867号'
   ,exam:{
     username:'福建省爱数信息技术有限公司'
     ,bankName: '中国银行厦门市分行'

+ 1 - 1
sync.bat

@@ -1,2 +1,2 @@
-go run build.go -dir=study_sm
+go run build.go -dir=study_edu
 pause