zhaogongxue 1 år sedan
förälder
incheckning
cf5b743cf5

BIN
dist.zip


+ 4 - 1
src/components/ConsultComponent.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="consult" :style="{height:height+'px'}">
-<div class="consultTitle u-row-between">
+<div class="consultTitle">
 <div>热搜资讯</div>
 <span @click="toConsult" v-if="isShow">全部资讯>></span>
 </div>
@@ -67,9 +67,12 @@ const props= defineProps({
 background: #FFFFFF;
 border-radius: 10px;
 .consultTitle{
+    display: flex;
+    align-items: center;
     font-weight: bold;
     font-size: 18px;
     span{
+        margin-left: 40px;
         color: #1677FF;
         font-size: 14px;
     }

+ 9 - 5
src/components/Index.vue

@@ -107,15 +107,19 @@ let hotClick=(item)=>{
 let searchKey=ref('')
 
 let getSearch=()=>{
-    if(!localStorage.getItem('token')){
-    ElMessage.error("请先登录");
+    if (!key.value) {
+        isShow.value=true
+        isSearch.value=false
     return;
   }
-    if (!key.value) {
-    ElMessage.error("请输入要搜索的内容");
+    if(!localStorage.getItem('token')){
+    ElMessage.error("请先登录");
     return;
   }
- 
+   
+  member_info().then(res=>{
+     isVip.value=res.data.is_vip
+    })
 
    isShow.value=false
    const loading = ElLoading.service({

+ 4 - 3
src/components/LoginBox.vue

@@ -110,16 +110,16 @@ let bindPhone=()=>{
     ElMessage.error("请输入验证码");
     return;
   }
-  console.log(123,props.openid);
   binding_phone({
     phone:phone.value,
     code:code.value,
     openid:props.openid
   }).then(res=>{
+    code.value=''
     localStorage.setItem('token',res.data.token)
     ElMessage.success(res.msg);
     setTimeout(() => {
-      window.location.href='https://zhitq.hdlkeji.com/dist'
+      window.location.href='https://cmpfd.com/dist'
     }, 1000);
     // window.location.href='http://127.0.0.1:5176'
   })
@@ -136,6 +136,7 @@ let toLogin = () => {
   }
   verification_code_login({phone:phone.value,code:code.value}).then(res=>{
     if(res.code==1){
+      code.value=''
       localStorage.setItem('token',res.data.token)
       emit('getInfo')
     }
@@ -153,7 +154,7 @@ let changeLogin = (type) => {
  id:"login_container", 
  appid: "wxf62030ccd5f90b10", 
  scope: "snsapi_login", 
- redirect_uri: encodeURIComponent('https://zhitq.hdlkeji.com/dist'),
+ redirect_uri: encodeURIComponent('https://cmpfd.com/dist'),
  state: "",
  style: "",
  href: ""

+ 10 - 2
src/components/SearchResult.vue

@@ -7,6 +7,7 @@
       </div>
       <div class="tableBox">
         <el-table
+        height="800"
           :data="resultList"
           style="width: 100%"
           :row-class-name="tableRowClassName"
@@ -66,7 +67,8 @@
     </div>
   </div>
   <div class="page" v-if="isVip">
-        <el-pagination background @current-change="pageChange" :page-size="10" layout="prev, pager, next" :total="count" />
+    
+        <el-pagination  v-model:page-size="pageSize"  v-model:current-page="currentPage" @size-change="handleSizeChange" background @current-change="pageChange" :page-sizes="[10, 50, 100]"  layout="total, sizes, prev, pager, next, jumper" :total="count" />
     </div>
 </div>
 </template>
@@ -97,11 +99,17 @@ if(url){
   window.open(url, '_blank');
 }
 }
+const handleSizeChange = (val) => {
+  pageSize.value=val
+  getResultList(1)
+}
 let getResultList=(page)=>{
-  data_list({page:page,page_num:10,type:props.type,keyword:props.keyLabel}).then(res=>{
+  data_list({page:page,page_num:pageSize.value,type:props.type,keyword:props.keyLabel}).then(res=>{
     resultList.value=res.data.list
   })
 }
+let currentPage=ref(1)
+let pageSize=ref(10)
 let toSpecial=()=>{
   router.push('special')
 }

+ 3 - 2
src/components/SpecialInfo.vue

@@ -10,7 +10,7 @@
         </div>
         <div class="douwnloadBox" v-if="info.accessory">
             <div class="douwnload u-row-between">
-                <span>{{info.accessory_name}}</span>
+                <span @click="toDownload">{{info.accessory_name}}</span>
                 <span @click="toDownload">下载</span>
             </div>
             
@@ -63,10 +63,11 @@ background: #F5F5F5;
 border-radius: 10px;
 border-left: 10px solid #4EDD92;
     .douwnload{
+      
         line-height: 30px;
         font-weight: bold;
         span{
-            
+            cursor: pointer;
 color: #305FF9;
 outline: bottom;
 text-decoration: underline;

+ 2 - 1
src/utils/request.js

@@ -1,6 +1,7 @@
 import axios from 'axios'
 import { ElMessage } from 'element-plus'
-let baseUrl = 'https://zhitq.hdlkeji.com'
+// let baseUrl = 'https://zhitq.hdlkeji.com'
+let baseUrl = 'https://cmpfd.com'
 // let baseUrl = ''
 export default function request(config) {
 

+ 2 - 1
src/view/layout.vue

@@ -104,7 +104,7 @@ watch(()=>router.currentRoute.value.name,(newVal,oldVal)=>{
         }
         if(res.data.token){
           localStorage.setItem('token',res.data.token)
-          window.location.href='https://zhitq.hdlkeji.com/dist'
+          window.location.href='https://cmpfd.com/dist'
         }
       })
     }
@@ -208,6 +208,7 @@ if(e==2){
     .then(() => {
       localStorage.removeItem('token')
       isLogin.value=false
+      router.replace('index')
       ElMessage({
         type: 'success',
         message: '已成功退出',