朱鑫波 4 年之前
父節點
當前提交
046729b981

二進制
dist.zip


+ 5 - 3
src/views/modules/advertiser/UserAllocationList.vue

@@ -467,7 +467,7 @@ export default {
       this.visibleAccount = true
       this.accountId = item.accountId
       this.projectId = item.projectId
-
+      this.accountLoading = false
       setTimeout(() => {
         this.formAccount.setFieldsValue({
           projectId: item.projectId,
@@ -475,12 +475,13 @@ export default {
       }, 0)
     },
     handleOkAccount(e) {
-      this.accountLoading = true
+      
 
       this.formAccount.validateFieldsAndScroll((err, values) => {
         if (err) {
           // 这里做逻辑处理
         } else {
+          this.accountLoading = true
           var params = qs.stringify({
             projectId: values.projectNewId,
             accountId: this.accountId,
@@ -499,12 +500,13 @@ export default {
       })
     },
     handleOkAdd(e) {
-      this.confirmLoading = true
+      
 
       this.form.validateFieldsAndScroll((err, values) => {
         if (err) {
           // 这里做逻辑处理
         } else {
+          this.confirmLoading = true
           var params = {
             ...values,
           }

+ 8 - 5
src/views/modules/material/materialList.vue

@@ -413,7 +413,7 @@ import { getAction, postAction, postFile, downFile, downFilePost, deleteAction,
 import { mapGetters } from 'vuex'
 import moment from 'moment'
 
-import selectTable from '@/views/modules/Statistics/components/selecTable.vue'
+import selectTable from '@/views/modules/Statistics/components/selectPagination.vue'
 
 import BMF from 'browser-md5-file'
 
@@ -766,11 +766,14 @@ export default {
     },
     getList(value) {
       if (value) {
-        this.mediaId = this.dataElse.filter(item => {
-          if (value == item.projectId) {
-            return item
+       getAction('/ctop/projectMember/participateListV2', {
+          userId: this.userInfo().id,
+          projectId: value,
+        }).then((res) => {
+          if (res.code == 0) {
+            this.mediaId = res.result.records[0].mediaId
           }
-        })[0].mediaId
+        })
       }
 
       this.loadData()

+ 1 - 0
src/views/modules/material/videoMaterial.vue

@@ -1905,6 +1905,7 @@ export default {
       if (!n) {
         this.refuseFile = []
         this.refuseReason = ''
+        closeAllVideoFun()
       }
     },
   },