xiongzhu 4 éve
szülő
commit
d2754303ec

+ 21 - 0
src/main/nine-space/.prettierrc.js

@@ -0,0 +1,21 @@
+module.exports = {
+    printWidth: 120,
+    singleQuote: true,
+    tabWidth: 4,
+    arrowParens: 'avoid',
+    trailingComma: 'none',
+    overrides: [
+        {
+            files: '*.html',
+            options: {
+                parser: 'html'
+            }
+        },
+        {
+            files: '*.vue',
+            options: {
+                parser: 'vue'
+            }
+        }
+    ]
+};

+ 1 - 0
src/main/nine-space/src/views/Discover.vue

@@ -164,6 +164,7 @@ export default {
             size: 20,
             query: {
               onShelf: true,
+              del: false
             },
             sort: "createdAt,desc",
           },

+ 1 - 0
src/main/nine-space/src/views/Home.vue

@@ -161,6 +161,7 @@ export default {
             query: {
               type: type,
               onShelf: true,
+              del: false
             },
             sort: "createdAt,desc",
           },

+ 1 - 0
src/main/nine-space/src/views/creator/Detail.vue

@@ -202,6 +202,7 @@ export default {
               type: this.type,
               onShelf: this.onShelf,
               minterId: this.info.id,
+              del: false
             },
             sort: this.sort,
           },

+ 1 - 0
src/main/nine-space/src/views/product/List.vue

@@ -127,6 +127,7 @@ export default {
             query: {
               type: this.type,
               onShelf: true,
+              del: false
             },
             sort: this.sort,
           },

+ 1 - 0
src/main/nine-space/src/views/product/Search.vue

@@ -100,6 +100,7 @@ export default {
               onShelf: true,
               type: this.type,
               minterId: this.minterId,
+              del: false
             },
             sort: "createdAt,desc",
             search: this.search,