jinx hace 1 año
padre
commit
5982470847

+ 0 - 2
packages/admin/src/views/tab5/index.vue

@@ -456,7 +456,6 @@ export default {
           }
 
           const res = await addEntity(params)
-          console.error(res)
           if (res.code === 0) {
             this.$message({
               message: res.msg,
@@ -609,7 +608,6 @@ export default {
     },
     beforeFileUpload (file) {
       const isLt2M = file.size / 1024 / 1024 < 5
-      console.error(file.type)
       const isFormat =
         file.type === 'image/jpeg' ||
         file.type === 'image/jpg' ||

+ 1 - 1
packages/mobile/src/views/Search.vue

@@ -80,7 +80,7 @@ export default {
 <style lang='less' scoped>
 .search {
   padding: 18px 12px 0;
-  z-index: 3;
+  z-index: 10000;
   position: absolute;
   top: 0;
   left: 0;

+ 2 - 2
packages/mobile/src/views/topic/details.vue

@@ -24,7 +24,7 @@
 </template>
 
 <script>
-import { getTopicList, getTopicSecondaryList } from "@/utils/api";
+import { getTopicSecondaryList } from "@/utils/api";
 export default {
   //import引入的组件需要注入到对象中才能使用
   components: {},
@@ -55,7 +55,7 @@ export default {
     },
     async handleSecondaryList() {
       // const res = await getTopicSecondaryList(this.secondId);
-      const res = await getTopicSecondaryList(15);
+      const res = await getTopicSecondaryList(this.secondId);
       console.log("res", res.data);
       this.secondaryList = res.data || [];
     },

+ 0 - 1
packages/pc/src/views/topic/details.vue

@@ -52,7 +52,6 @@ export default {
   //方法集合
   methods: {
     gotoLink(i) {
-      console.error(i);
       window.open(i.link);
     },
     onBack() {

+ 0 - 3
packages/pc/src/views/topic/index.vue

@@ -55,9 +55,7 @@ export default {
       };
     },
     cardListW: function () {
-      console.error(this);
       let w = this.secondaryList.length * (423 + 50);
-      console.error(window.innerWidth);
       if (w > window.innerWidth) {
         w = window.innerWidth;
       }
@@ -121,7 +119,6 @@ export default {
     gotoItem(i) {
       this.secondId = i.id;
       this.secondName = i.name;
-      console.error(this.secondName);
     },
     handleClick(id) {
       this.activeName = String(id);