zhuxinbo %!s(int64=5) %!d(string=hai) anos
pai
achega
d2d454d2a4

+ 142 - 159
src/views/modules/achievements/adminDetail.vue

@@ -1,18 +1,22 @@
-<style>
-</style>
+<style></style>
 <template>
   <div class="admin-detail">
     <a-row :gutter="10" style="margin-top:10px">
       <a-col :span="24">
         <a-card style="width:100%;">
-          <a-table :columns="columns" :dataSource="dataList" bordered :loading="loading" size="middle"
-            :pagination="false">
+          <a-table
+            :columns="columns"
+            :dataSource="dataList"
+            bordered
+            :loading="loading"
+            size="middle"
+            :pagination="false"
+          >
             <span slot-scope="text" slot="url">
               <video class="video" :src="text" controls="controls" style="height:200px">
                 您的浏览器不支持 video 标签。
               </video>
             </span>
-
           </a-table>
         </a-card>
       </a-col>
@@ -21,192 +25,171 @@
 </template>
 
 <script>
-  import ChartCard from '@/components/ChartCard'
-  import ACol from 'ant-design-vue/es/grid/Col'
-  import ATooltip from 'ant-design-vue/es/tooltip/Tooltip'
-  import MiniArea from '@/components/chart/MiniArea'
-  import MiniBar from '@/components/chart/MiniBar'
-  import MiniProgress from '@/components/chart/MiniProgress'
-  import RankList from '@/components/chart/RankList'
-  import Bar from '@/components/chart/Bar'
-  import LineChartMultid from '@/components/chart/LineChartMultid'
-  import HeadInfo from '@/components/tools/HeadInfo.vue'
-
-  import Trend from '@/components/Trend'
-
-  import {
-    getAction,
-    postAction
-  } from '@/api/manage'
-  import {
-    mapGetters
-  } from 'vuex'
+import ACol from 'ant-design-vue/es/grid/Col'
+import ATooltip from 'ant-design-vue/es/tooltip/Tooltip'
 
-  import qs from 'qs'
+import { getAction, postAction } from '@/api/manage'
+import { mapGetters } from 'vuex'
 
-  const barData = []
-  for (let i = 0; i < 12; i += 1) {
-    barData.push({
-      x: `${i + 1}月`,
-      y: Math.floor(Math.random() * 1000) + 200
-    })
-  }
+import qs from 'qs'
 
-  const columns = [{
-      title: '视频',
-      dataIndex: 'url',
-      key: 'url',
-      align: 'center',
-      scopedSlots: {
-        customRender: 'url'
-      },
-      width: 200
-    },
-    {
-      title: '素材名称',
-      dataIndex: 'materialName',
-      key: 'materialName',
-      align: 'center'
-    },
-    {
-      title: '水印素材名称',
-      dataIndex: 'watermarkMaterialName',
-      key: 'watermarkMaterialName',
-      align: 'center'
-    },
-    {
-      title: 'md5',
-      dataIndex: 'code',
-      key: 'code',
-      align: 'center'
+const columns = [
+  {
+    title: '视频',
+    dataIndex: 'url',
+    key: 'url',
+    align: 'center',
+    scopedSlots: {
+      customRender: 'url'
     },
-  ]
-  // 账户名、项目名、优化师姓名、当季消耗、授权名称
-  const columnsYou = [{
+    width: 200
+  },
+  {
+    title: '素材名称',
+    dataIndex: 'materialName',
+    key: 'materialName',
+    align: 'center'
+  },
+  {
+    title: '水印素材名称',
+    dataIndex: 'watermarkMaterialName',
+    key: 'watermarkMaterialName',
+    align: 'center'
+  },
+  {
+    title: 'md5',
+    dataIndex: 'code',
+    key: 'code',
+    align: 'center'
+  }
+]
+// 账户名、项目名、优化师姓名、当季消耗、授权名称
+const columnsYou = [
+  {
     title: '账户',
     dataIndex: 'advertiserName',
     key: 'advertiserName',
-    align: 'center',
-  }, {
+    align: 'center'
+  },
+  {
     title: '项目',
     dataIndex: 'projectName',
     key: 'projectName',
-    align: 'center',
-  }, {
+    align: 'center'
+  },
+  {
     title: '优化师',
     dataIndex: 'userName',
     key: 'userName',
-    align: 'center',
-  }, {
+    align: 'center'
+  },
+  {
     title: '当季消耗',
     dataIndex: 'totalCost',
     key: 'totalCost',
-    align: 'center',
-  }, {
+    align: 'center'
+  },
+  {
     title: '授权名称',
     dataIndex: 'authName',
     key: 'authName',
-    align: 'center',
-  }]
-  export default {
-    name: 'admin-info',
-    components: {
-      ATooltip,
-      ACol,
-    },
+    align: 'center'
+  }
+]
+export default {
+  name: 'admin-info',
+  components: {
+    ATooltip,
+    ACol
+  },
 
-    data: function () {
-      return {
-        title: '工作台',
-        loginfo: {},
-        barData,
-        visitInfo: [],
-        visitFields: ['ip', 'visit'],
-        loading: false,
-        rankList: [],
-        tabListNoTitle: [{
-            key: 'kuaishou',
-            tab: '快手'
-          },
-          {
-            key: 'toutiao',
-            tab: '头条'
+  data: function() {
+    return {
+      title: '工作台',
+      loading: false,
+      rankList: [],
+      tabListNoTitle: [
+        {
+          key: 'kuaishou',
+          tab: '快手'
+        },
+        {
+          key: 'toutiao',
+          tab: '头条'
+        }
+      ],
+      noTitleKey: 'kuaishou',
+      a: '',
+      columns: columns,
+      dataList: []
+    }
+  },
+  methods: {
+    ...mapGetters(['nickname', 'avatar', 'userInfo'])
+  },
+  created() {
+    var userId = localStorage.getItem('detailUserId')
+    var appType = localStorage.getItem('appType') == 'kuaishou' ? 2 : 1
+    var type = localStorage.getItem('roleData')
+    if (type == 1) {
+      this.columns = columns
+      postAction('/ctop/performance2/getEffiVideoList', {
+        year: '',
+        quarter: '',
+        userId: userId,
+        appType: appType
+      }).then(res => {
+        if (res.success) {
+          this.dataList = res.result.map((item, index) => {
+            return {
+              ...item,
+              key: index
+            }
+          })
+        } else {
+          this.$message.error(res.message)
+        }
+      })
+    } else if (type == 2) {
+      this.columns = columnsYou
+      if (appType == 2) {
+        postAction('/ctop/performance2/getKuaiShouYouhuaAccountsList', {
+          startDate: '',
+          endDate: '',
+          userId: userId,
+          appType: appType
+        }).then(res => {
+          if (res.success) {
+            this.dataList = res.result.map((item, index) => {
+              return {
+                ...item,
+                key: index
+              }
+            })
+          } else {
+            this.$message.error(res.message)
           }
-        ],
-        noTitleKey: 'kuaishou',
-        a: '',
-        columns: columns,
-        dataList: [],
-      }
-    },
-    methods: {
-      ...mapGetters(['nickname', 'avatar', 'userInfo']),
-    },
-    created() {
-      var userId = localStorage.getItem('detailUserId')
-      var appType = localStorage.getItem('appType') == 'kuaishou' ? 2 : 1
-      var type = localStorage.getItem('roleData')
-      if (type == 1) {
-        this.columns = columns
-        postAction('/ctop/performance2/getEffiVideoList', {
-          "year": '',
-          "quarter": '',
-          "userId": userId,
-          "appType": appType
+        })
+      } else {
+        postAction('/ctop/performance2/getToutiaoYouhuaAccountsList', {
+          startDate: '',
+          endDate: '',
+          userId: userId,
+          appType: appType
         }).then(res => {
           if (res.success) {
             this.dataList = res.result.map((item, index) => {
               return {
                 ...item,
-                key: index,
+                key: index
               }
             })
           } else {
             this.$message.error(res.message)
           }
         })
-      } else if (type == 2) {
-        this.columns = columnsYou
-        if (appType == 2) {
-          postAction('/ctop/performance2/getKuaiShouYouhuaAccountsList', {
-            "startDate": "",
-            "endDate": "",
-            "userId": userId,
-            "appType": appType
-          }).then(res => {
-            if (res.success) {
-              this.dataList = res.result.map((item, index) => {
-                return {
-                  ...item,
-                  key: index,
-                }
-              })
-            } else {
-              this.$message.error(res.message)
-            }
-          })
-        } else {
-          postAction('/ctop/performance2/getToutiaoYouhuaAccountsList', {
-            "startDate": "",
-            "endDate": "",
-            "userId": userId,
-            "appType": appType
-          }).then(res => {
-            if (res.success) {
-              this.dataList = res.result.map((item, index) => {
-                return {
-                  ...item,
-                  key: index,
-                }
-              })
-            } else {
-              this.$message.error(res.message)
-            }
-          })
-        }
-
       }
-
     }
   }
-</script>
+}
+</script>

+ 225 - 242
src/views/modules/achievements/adminInfo.vue

@@ -1,21 +1,30 @@
 <style>
-  .admin-info .ant-list-item-content {
-    display: flex;
-    justify-content: space-around;
-  }
+.admin-info .ant-list-item-content {
+  display: flex;
+  justify-content: space-around;
+}
 
-  .admin-info .ant-table-middle tr.ant-table-expanded-row td>.ant-table-wrapper {
-    margin: -12px -9px -13px;
-  }
+.admin-info .ant-table-middle tr.ant-table-expanded-row td > .ant-table-wrapper {
+  margin: -12px -9px -13px;
+}
 </style>
 <template>
   <div class="admin-info">
     <a-row :gutter="10" style="margin-top:10px">
       <a-col :span="24">
-        <a-card style="width:100%;" :tabList="tabListNoTitle" :activeTabKey="noTitleKey"
-          @tabChange="key => onTabChange(key, 'noTitleKey')">
+        <a-card
+          style="width:100%;"
+          :tabList="tabListNoTitle"
+          :activeTabKey="noTitleKey"
+          @tabChange="key => onTabChange(key, 'noTitleKey')"
+        >
           角色选择:
-          <a-select style="width:300px;margin-bottom:30px" placeholder="请选择角色类型" v-model="type" @change="getData">
+          <a-select
+            style="width:300px;margin-bottom:30px"
+            placeholder="请选择角色类型"
+            v-model="type"
+            @change="getData"
+          >
             <a-select-option :value="1">设计</a-select-option>
             <a-select-option :value="2">优化</a-select-option>
           </a-select>
@@ -26,7 +35,7 @@
                 您的浏览器不支持 video 标签。
               </video>
             </span>
-            <span slot="action" slot-scope="text,record">
+            <span slot="action" slot-scope="text, record">
               <a :disabled="record.effiVideoCount == 0" @click="toDetail(record)">查看详情</a>
             </span>
           </a-table>
@@ -37,250 +46,224 @@
 </template>
 
 <script>
-  import ChartCard from '@/components/ChartCard'
-  import ACol from 'ant-design-vue/es/grid/Col'
-  import ATooltip from 'ant-design-vue/es/tooltip/Tooltip'
-  import MiniArea from '@/components/chart/MiniArea'
-  import MiniBar from '@/components/chart/MiniBar'
-  import MiniProgress from '@/components/chart/MiniProgress'
-  import RankList from '@/components/chart/RankList'
-  import Bar from '@/components/chart/Bar'
-  import LineChartMultid from '@/components/chart/LineChartMultid'
-  import HeadInfo from '@/components/tools/HeadInfo.vue'
+import ACol from 'ant-design-vue/es/grid/Col'
+import ATooltip from 'ant-design-vue/es/tooltip/Tooltip'
 
-  import Trend from '@/components/Trend'
+import { getAction, postAction } from '@/api/manage'
+import { mapGetters } from 'vuex'
 
-  import {
-    getAction,
-    postAction
-  } from '@/api/manage'
-  import {
-    mapGetters
-  } from 'vuex'
+import qs from 'qs'
 
-  import qs from 'qs'
-
-  const barData = []
-  for (let i = 0; i < 12; i += 1) {
-    barData.push({
-      x: `${i + 1}月`,
-      y: Math.floor(Math.random() * 1000) + 200
-    })
+const columns = [
+  {
+    title: '姓名',
+    dataIndex: 'realname',
+    key: 'realname',
+    align: 'center',
+    width: 200
+  },
+  {
+    title: '角色',
+    dataIndex: 'roleName',
+    key: 'roleName',
+    align: 'center'
+  },
+  {
+    title: '有效视频数量',
+    dataIndex: 'effiVideoCount',
+    key: 'effiVideoCount',
+    align: 'center'
+  },
+  {
+    title: '总视频数量',
+    dataIndex: 'videoCount',
+    key: 'videoCount',
+    align: 'center'
+  },
+  {
+    title: '消耗',
+    dataIndex: 'cost',
+    key: 'cost',
+    align: 'center'
+  },
+  {
+    title: '操作',
+    dataIndex: 'action',
+    key: 'action',
+    align: 'center',
+    scopedSlots: {
+      customRender: 'action'
+    }
   }
+]
+const columnsYou = [
+  {
+    title: '姓名',
+    dataIndex: 'realname',
+    key: 'realname',
+    align: 'center',
+    width: 200
+  },
+  {
+    title: '角色',
+    dataIndex: 'roleName',
+    key: 'roleName',
+    align: 'center'
+  },
+  {
+    title: '总消耗',
+    dataIndex: 'cost',
+    key: 'effiVideoCount',
+    align: 'center'
+  },
+  {
+    title: '操作',
+    dataIndex: 'action',
+    key: 'action',
+    align: 'center',
+    scopedSlots: {
+      customRender: 'action'
+    }
+  }
+]
 
-  const columns = [{
-      title: '姓名',
-      dataIndex: 'realname',
-      key: 'realname',
-      align: 'center',
-      width: 200
-    },
-    {
-      title: '角色',
-      dataIndex: 'roleName',
-      key: 'roleName',
-      align: 'center'
-    },
-    {
-      title: '有效视频数量',
-      dataIndex: 'effiVideoCount',
-      key: 'effiVideoCount',
-      align: 'center'
-    },
-    {
-      title: '总视频数量',
-      dataIndex: 'videoCount',
-      key: 'videoCount',
-      align: 'center'
-    },
-    {
-      title: '消耗',
-      dataIndex: 'cost',
-      key: 'cost',
-      align: 'center'
-    },
-    {
-      title: '操作',
-      dataIndex: 'action',
-      key: 'action',
-      align: 'center',
-      scopedSlots: {
-        customRender: 'action'
-      },
-    },
-  ]
-  const columnsYou = [{
-      title: '姓名',
-      dataIndex: 'realname',
-      key: 'realname',
-      align: 'center',
-      width: 200
+export default {
+  name: 'admin-info',
+  components: {
+    ATooltip,
+    ACol
+  },
+
+  data: function() {
+    return {
+      type: 1,
+      title: '工作台',
+      loading: false,
+      rankList: [],
+      tabListNoTitle: [
+        {
+          key: 'kuaishou',
+          tab: '快手'
+        },
+        {
+          key: 'toutiao',
+          tab: '头条'
+        }
+      ],
+      noTitleKey: 'kuaishou',
+      a: '',
+      columns: columns,
+      dataList: []
+    }
+  },
+  methods: {
+    ...mapGetters(['nickname', 'avatar', 'userInfo']),
+    addUser() {
+      if (this.noTitleKey == 'kuaishou') {
+        if (this.type == 1) {
+          this.columns = columns
+          this.getKuaishouList()
+        } else if (this.type == 2) {
+          this.columns = columnsYou
+          this.getKuaishouYouHuaList()
+        }
+      } else if (this.noTitleKey == 'toutiao') {
+        if (this.type == 1) {
+          this.columns = columns
+          this.getToutiaoList()
+        } else if (this.type == 2) {
+          this.columns = columnsYou
+          this.getToutiaoYouHuaList()
+        }
+      }
     },
-    {
-      title: '角色',
-      dataIndex: 'roleName',
-      key: 'roleName',
-      align: 'center'
+    getData(data) {
+      this.dataList = []
     },
-    {
-      title: '总消耗',
-      dataIndex: 'cost',
-      key: 'effiVideoCount',
-      align: 'center'
+    onTabChange(key, type) {
+      console.log(key, type)
+      this.type = 1
+      this.columns = columns
+      this[type] = key
+      this.dataList = []
+      // if (key == 'kuaishou') {
+      //   this.getKuaishouList()
+      // } else if (key == 'toutiao') {
+      //   this.getToutiaoList()
+      // }
     },
-    {
-      title: '操作',
-      dataIndex: 'action',
-      key: 'action',
-      align: 'center',
-      scopedSlots: {
-        customRender: 'action'
-      },
+    toDetail(item) {
+      localStorage.setItem('detailUserId', item.userId)
+      localStorage.setItem('appType', this.noTitleKey)
+      localStorage.setItem('roleData', this.type)
+      this.$router.replace({
+        path: '/achievements/adminDetail'
+      })
     },
-  ]
-
-  export default {
-    name: 'admin-info',
-    components: {
-      ATooltip,
-      ACol,
+    getKuaishouList() {
+      postAction('/ctop/performance2/kuaishouPerformanceInfoNow', '').then(res => {
+        console.log(res)
+        if (res.success) {
+          this.dataList = res.result.map((item, index) => {
+            return {
+              ...item,
+              key: index
+            }
+          })
+        } else {
+          this.$message.error(res.message)
+        }
+      })
     },
 
-    data: function () {
-      return {
-        type: 1,
-        title: '工作台',
-        loginfo: {},
-        barData,
-        visitInfo: [],
-        visitFields: ['ip', 'visit'],
-        loading: false,
-        rankList: [],
-        tabListNoTitle: [{
-            key: 'kuaishou',
-            tab: '快手'
-          },
-          {
-            key: 'toutiao',
-            tab: '头条'
-          }
-        ],
-        noTitleKey: 'kuaishou',
-        a: '',
-        columns: columns,
-        dataList: [],
-      }
+    getToutiaoList() {
+      postAction('/ctop/performance2/toutiaoPerformanceInfoNow', '').then(res => {
+        console.log(res)
+        if (res.success) {
+          this.dataList = res.result.map((item, index) => {
+            return {
+              ...item,
+              key: index
+            }
+          })
+        } else {
+          this.$message.error(res.message)
+        }
+      })
     },
-    methods: {
-      ...mapGetters(['nickname', 'avatar', 'userInfo']),
-      addUser() {
-        if (this.noTitleKey == 'kuaishou') {
-          if (this.type == 1) {
-            this.columns = columns
-            this.getKuaishouList()
-          } else if (this.type == 2) {
-            this.columns = columnsYou
-            this.getKuaishouYouHuaList()
-          }
-
-        } else if (this.noTitleKey == 'toutiao') {
-          if (this.type == 1) {
-            this.columns = columns
-            this.getToutiaoList()
-          } else if (this.type == 2) {
-            this.columns = columnsYou
-            this.getToutiaoYouHuaList()
-
-          }
+    getKuaishouYouHuaList() {
+      postAction('/ctop/performance2/kuaishouYouhuaPerformanceInfoNow', '').then(res => {
+        console.log(res)
+        if (res.success) {
+          this.dataList = res.result.map((item, index) => {
+            return {
+              ...item,
+              key: index
+            }
+          })
+        } else {
+          this.$message.error(res.message)
         }
-      },
-      getData(data) {
-        this.dataList = []
-      },
-      onTabChange(key, type) {
-        console.log(key, type)
-        this.type = 1
-        this.columns = columns
-        this[type] = key
-        this.dataList = []
-        // if (key == 'kuaishou') {
-        //   this.getKuaishouList()
-        // } else if (key == 'toutiao') {
-        //   this.getToutiaoList()
-        // }
-      },
-      toDetail(item) {
-        localStorage.setItem('detailUserId', item.userId)
-        localStorage.setItem('appType', this.noTitleKey)
-        localStorage.setItem('roleData', this.type)
-        this.$router.replace({
-          path: '/achievements/adminDetail'
-        })
-      },
-      getKuaishouList() {
-        postAction('/ctop/performance2/kuaishouPerformanceInfoNow', '').then(res => {
-          console.log(res)
-          if (res.success) {
-            this.dataList = res.result.map((item, index) => {
-              return {
-                ...item,
-                key: index,
-              }
-            })
-          } else {
-            this.$message.error(res.message)
-          }
-        })
-      },
-
-      getToutiaoList() {
-        postAction('/ctop/performance2/toutiaoPerformanceInfoNow', '').then(res => {
-          console.log(res)
-          if (res.success) {
-            this.dataList = res.result.map((item, index) => {
-              return {
-                ...item,
-                key: index,
-              }
-            })
-          } else {
-            this.$message.error(res.message)
-          }
-        })
-      },
-      getKuaishouYouHuaList() {
-        postAction('/ctop/performance2/kuaishouYouhuaPerformanceInfoNow', '').then(res => {
-          console.log(res)
-          if (res.success) {
-            this.dataList = res.result.map((item, index) => {
-              return {
-                ...item,
-                key: index,
-              }
-            })
-          } else {
-            this.$message.error(res.message)
-          }
-        })
-      },
-      getToutiaoYouHuaList() {
-        postAction('/ctop/performance2/toutiaoYouhuaPerformanceInfoNow', "").then(res => {
-          console.log(res)
-          if (res.success) {
-            this.dataList = res.result.map((item, index) => {
-              return {
-                ...item,
-                key: index,
-              }
-            })
-          } else {
-            this.$message.error(res.message)
-          }
-        })
-      }
+      })
     },
-    created() {
-      //   this.getKuaishouList()
+    getToutiaoYouHuaList() {
+      postAction('/ctop/performance2/toutiaoYouhuaPerformanceInfoNow', '').then(res => {
+        console.log(res)
+        if (res.success) {
+          this.dataList = res.result.map((item, index) => {
+            return {
+              ...item,
+              key: index
+            }
+          })
+        } else {
+          this.$message.error(res.message)
+        }
+      })
     }
+  },
+  created() {
+    //   this.getKuaishouList()
   }
-</script>
+}
+</script>

+ 0 - 17
src/views/modules/kuaishouapp/account/stepForm/stepModule/targetedPopulation.vue

@@ -699,7 +699,6 @@ export default {
   },
   watch: {
     platform(n, o) {
-      console.log(n, o)
       if (n == 1 || n == 2) {
         // platform_os
         this.allForm.platform_os = '1'
@@ -715,7 +714,6 @@ export default {
     populationData: {
       immediate: true, // immediate选项可以开启首次赋值监听
       handler(n, oldVal) {
-        console.log(n)
 
         if (n.allForm) {
           this.allForm = n.allForm
@@ -897,7 +895,6 @@ export default {
       return new Promise((resolve, reject) => {
         getAction('/kuaishou/batch/getPopulationList', { accountId: localStorage.getItem('accountId') }).then(res => {
           if (res.success) {
-            console.log(res)
             this.dataList = res.result.map((item, index) => {
               return {
                 ...item,
@@ -919,7 +916,6 @@ export default {
     },
     onSelectChange(selectedRowKeys, selectionRows) {
       this.selectedRowKeys = selectedRowKeys
-      console.log(selectionRows)
       this.selectedRowKeysValue = selectionRows.map(item => {
         return { orientationId: item.orientationId, orientationName: item.orientationName }
       })
@@ -933,7 +929,6 @@ export default {
     },
     onSelectChangeNo(selectedRowKeys, selectionRows) {
       this.selectedRowKeysNo = selectedRowKeys
-      console.log(selectionRows)
       this.selectedRowKeysValueNo = selectionRows.map(item => {
         return { orientationId: item.orientationId, orientationName: item.orientationName }
       })
@@ -971,7 +966,6 @@ export default {
     },
     getRegion(data) {
       this.$refs.cascaderRegion.getCheckedNodes()
-      console.log(this.$refs.cascaderRegion.getCheckedNodes())
       var dataName = this.$refs.cascaderRegion.getCheckedNodes()
       var jsonArr = data
       for (let i = 0; i < dataName.length; i++) {
@@ -983,7 +977,6 @@ export default {
           }
         }
       }
-      console.log(jsonArr)
     },
     showAppName(appId) {
       var data = this.checkOptions.filter(item => {
@@ -1047,10 +1040,8 @@ export default {
     },
     handleSubmit() {
       //   e.preventDefault()
-      console.log(this.selectedRowKeysValue)
       this.form.validateFields((err, values) => {
         if (!err) {
-          console.log('Received values of form: ', values)
           //   this.checkArr
           var json = {}
           if (this.allForm.appType == '2') {
@@ -1092,13 +1083,11 @@ export default {
             allForm: this.allForm,
             ...jsonData
           }
-          console.log(dataJson)
           this.$emit('update:populationData', dataJson)
         }
       })
     },
     handleConfirmValue(rule, value, callback) {
-      console.log(value)
       if (Math.abs(value[0] - value[1]) < 5) {
         callback('自定义年龄段需要间隔大于5岁')
       }
@@ -1123,14 +1112,11 @@ export default {
       var data = this.allForm.region.map(item => {
         return item[1] + ''
       })
-      console.log(data)
       var dataElse = data.map(item => {
         return [item.substring(0, 2), item]
       })
-      console.log(dataElse)
     },
     getAppAll(e) {
-      console.log(e.target.value)
 
       if (e.target.value !== '') {
         getAction('/kuaishou/batch/getAppSearch', {
@@ -1152,13 +1138,11 @@ export default {
       }
     },
     getAppType(e) {
-      console.log(e.target.value)
       this.optionsApp = []
       this.form.setFieldsValue({ appInterest: [] })
       this.checkArr = []
       if (e.target.value == '1') {
         getAction('/kuaishou/batch/getTargetList', { tagType: 'APP_INTEREST' }).then(res => {
-          console.log(res)
           if (res.success) {
             this.optionsApp = res.result
           }
@@ -1186,7 +1170,6 @@ export default {
     },
     getDataType(type, dataList) {
       getAction('/kuaishou/batch/getTargetList', { tagType: type }).then(res => {
-        console.log(res)
         if (res.success) {
           this[dataList] = res.result
         }