Browse Source

no message

una 2 months ago
parent
commit
078ad4b3d4
3 changed files with 1056 additions and 513 deletions
  1. 525 298
      src/views/goods/create.vue
  2. 527 213
      src/views/goods/edit.vue
  3. 4 2
      src/views/goods/list.vue

File diff suppressed because it is too large
+ 525 - 298
src/views/goods/create.vue


File diff suppressed because it is too large
+ 527 - 213
src/views/goods/edit.vue


+ 4 - 2
src/views/goods/list.vue

@@ -577,10 +577,12 @@ export default {
           });
         });
     },
-    channelsFilter(value) {
-      if (value == undefined || value == '' || value.length == 0) {
+    channelsFilter(val) {
+        if (val == undefined || val == '' || val==null) {
         return '';
       }
+      let value=val.split(',');
+    
       let str = '';
       this.channels.forEach(e => {
         value.forEach(v => {