account.vue 44.2 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
<template>
  <div style="background-color:#f7f7f7;padding:10px 10px;">
    <div class="zhuti">
      <div style="height:58px;line-height:58px;">
        <div style="color:#0006"> <span>媒体推广</span>   <span style="padding:0 5px;">></span>  <span style="color:#000000e6">渠道管理</span></div>
      </div>
    <!-- 搜索 -->
    <div class="formSearch">
      <div class="demo-input-suffix">
        <div style="width: 68px;height:36px;line-height:32px;">渠道名称</div>
        <el-input placeholder="请输入" v-model="channelName" style="width:168px;">
        </el-input>
      </div>
      </el-form-item>
      </el-form>
      <div style="">
        <el-button @click="onSubmit"  style="background-color: #3F9B6A;color: #fff">查询
        </el-button>
        <el-button @click="chong"
        class="buttonHover"
           style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">重置
        </el-button>
      </div>
    </div>
    <div style="margin:20px 0;">
      <el-button icon="el-icon-circle-plus-outline"  @click="addbuss(1)"
        style="background-color: #3F9B6A;color: #fff;">新增</el-button>
        <el-button  style="background-color: #fff;color: #000;border: 1px solid #B1B1B1;"
          icon="el-icon-folder-add" class="buttonHover" @click="xinFenlei">渠道分类管理</el-button>
          <el-button  @click="toufang('投放周期管理')"
            style="background-color: #3F9B6A;color: #fff;">投放周期管理</el-button>
            <el-button  @click="toufang('投放费用管理')"
              style="background-color: #3F9B6A;color: #fff;">投放费用管理</el-button>
              <el-button  @click="toufang('投放效果评价管理')"
                style="background-color: #3F9B6A;color: #fff;">投放效果评价管理</el-button>
          <el-button @click="xiaoguo"
            style="background-color: #3F9B6A;color: #fff;">渠道发布内容汇总统计</el-button>
            <!-- <el-button @click=""
              style="background-color: #3F9B6A;color: #fff;">发布历史效果评估</el-button> -->

    </div>
    <div class="fenlan">
        <div class="souLei">
          <div style="line-height:42px;height:42px;background-color:#f2f3f5;border-bottom:1px solid #d7d7d7;padding-left:12px;color:#0009">
            标签分类
          </div>
          <div calss="souList">
            <div class="souTabs">
                 <div style="padding: 5px 0 0 10px;color:#000000e6;line-height:40px;cursor: pointer;" >
                   <span @click="getFenAll">全部分类</span>
                 <span style="font-size: 15px !important;color:#606266">
                   <i class="el-icon-circle-plus" @click="xinFenlei()" style="padding: 5px;"></i>
                 </span>
                 </div>
                 <el-tree :data="xianFenlei" :props="defaultProps" @node-click="handleNodeClick" :expand-on-click-node="false">
                   <div class="custom-tree-node" slot-scope="{ node, data }">
                     <span>{{ node.label }}</span>
                     <span style="font-size: 15px !important;">
                       <i class="el-icon-circle-plus" @click="xinFenlei(node,data)" style="padding-right: 5px;"></i>
                       <i class="el-icon-edit" @click="() => editFenlei(node, data)" style="padding-right: 5px;"></i>
                       <i class="el-icon-delete-solid" @click="() => fenDelete(node, data)"></i>
                     </span>
                   </div>
                 </el-tree>
            </div>
          </div>
        </div>
      <!-- 搜索分类 -->

      <div class="tableList">
        <div>
        <!-- 表格 -->

        <el-table :data="tableData.slice((currentPage - 1) * pageSize, currentPage * pageSize)"
           :header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}"
           align="left">
          <el-table-column label="序号"  min-width="100" prop="id" >
            <template slot-scope="scope">
              {{scope.$index +1 }}
              </template>
          </el-table-column>
          <el-table-column label="渠道名称" prop="channelName"  min-width="150">
          </el-table-column>
          <el-table-column label="类型" prop="channelType"  min-width="120">

          </el-table-column>
          <el-table-column label="备注" prop="notes"  min-width="200">

          </el-table-column>
          <el-table-column label="创建人" prop="createUser"  min-width="150" >
          </el-table-column>
          <el-table-column prop="createDate" label="创建时间"  min-width="200" >

          </el-table-column>

          <el-table-column label="操作"  min-width="250">
            <template slot-scope="scope">
              <div @click="addbuss(2,scope.row)" class="tableBtn greens">查看</div>

              <div @click="addbuss(3,scope.row)" class="tableBtn greens">编辑</div>
   <!--           <div @click="" class="tableBtn greens">内容统计数据设置</div>
              <div @click="" class="tableBtn greens">投放统计数据设置</div> -->
              <div @click="handleDelete(scope.row)" class="tableBtn greens">删除</div>
            </template>
          </el-table-column>
        </el-table>
        <div class="fenye">
          <el-pagination class="pagination" :hide-on-single-page="flag" background small :current-page="currentPage" :page-size="pageSize" layout="total,->,prev, pager,next" :total="total "
            @size-change="handleSizeChange" @current-change="handleCurrentChange" />
        </div>
      </div>
    </div>
          </div>

     </div>

    <!-- 新建商家弹框 -->
    <el-dialog :title="index == 1?'新增':index == 2?'详情':'编辑'" :visible.sync="ggXin" custom-class="dialog_css_Xq"
      style="padding: 0;" width="50%" center :close-on-click-modal="false" :show-close="false">
      <div>
        <div style="margin-bottom: 20px;">
          <el-form ref="jibenFrom" :model="formInline" :rules="rules" label-width="80px">
            <el-form-item label="渠道分类" prop="channelClassification">
              <el-cascader
                        v-model="formInline.channelClassification"
                       :options="cascaderList"
                        @change="ADDChange"
                        :props="{ checkStrictly: true }"
                         :show-all-levels="false"
                       clearable
                        :disabled="index == 1?false:index == 2?true:false"
                       style="width: 100%;"
                   ></el-cascader>

              <!-- <el-select v-model="formInline.channelClassification" placeholder="请选择"
                :disabled="index == 1?false:index == 2?true:false" style="width:100%">
                <el-option :label="item.cereClassification.classificationName" :value="item.cereClassification.classificationName" v-for="(item,index) in fenlei" :key="item.cereClassification.id"/>
              </el-select> -->
            </el-form-item>
            <el-form-item label="渠道名称" prop="channelName">
              <el-input v-model="formInline.channelName" :disabled="index == 1?false:index == 2?true:false"
                placeholder="请输入"></el-input>
            </el-form-item>
            <el-form-item label="渠道类型" prop="channelType">
              <el-input v-model="formInline.channelType" :disabled="index == 1?false:index == 2?true:false"
                placeholder="请输入"></el-input>
              <!-- <el-select v-model="formInline.channelType" placeholder="请选择"
                :disabled="index == 1?false:index == 2?true:false" style="width:100%">
                <el-option label="APP" value="APP" />
              </el-select> -->
            </el-form-item>
            <el-form-item label="账号" v-if="index==1?true:false" prop="accountNumber">
              <el-input v-model="formInline.accountNumber"  placeholder="请输入"></el-input>
            </el-form-item>
            <el-form-item label="APPKEY" v-if="index==1?true:false" prop="appKey">
              <el-input v-model="formInline.appKey"  placeholder="请输入"></el-input>
            </el-form-item>
            <el-form-item label="APP图片" v-if="index==1?true:false" prop="coverPoster" style="margin-bottom:20px;">
              <upimg v-model="formInline.coverPoster" :limit="1" :fileSize="1" :isShowTip="false"></upimg>
            </el-form-item>
            <el-form-item label="备注">
              <el-input type="textarea" v-model="formInline.notes" :rows="4"
                :disabled="index == 1?false:index == 2?true:false"></el-input>
            </el-form-item>

          </el-form>

        </div>
        <div style="display: flex;justify-content: flex-end;">
          <el-button plain @click="closeFn(1)"
          class="buttonHover"
            style="background-color: #fff;color: #000;border: 1px solid #dcdfe6;">返回</el-button>
          <el-button plain @click="bianji()" v-if="index == 2"
            style="background-color: #3F9B6A;color: #fff;border-color: #3F9B6A;">编辑</el-button>
          <el-button plain @click="addCheck(index)" v-if="index!= 2"
            style="background-color: #3F9B6A;color: #fff;border-color: #3F9B6A;">确定</el-button>
        </div>
      </div>
      <!-- <div v-if="index==1">
                      <div style="font-weiht:600">添加账号</div>
                      <div>
                         <div>
                            <image url="@/src/asssets/images/dy.png"></image>
                           <div>抖音</div>
                         </div>
                      </div>
                    </div> -->
    </el-dialog>
    <el-dialog  :visible.sync="xinlei" custom-class='fenlei' style="padding: 0;" width="50%"
                      center :close-on-click-modal="false" :close-on-press-escape="false" :show-close="false">
                      <div style="padding:15px;background-color:#F9F9F9;font-size:14px;border:1px solid #ECECEC;margin-bottom:20px;display: flex;justify-content: space-between;">
                            <div>{{editFen == 0 ?'新增':'编辑'}}</div>
                      </div>
                       <div style="padding:0 36px;">
                         <el-form label-position="right" ref="jibenFrom" :model="xinADD" :rules="rules" label-width="120px"
                                style="position: relative">
                                    <el-form-item label="上级分类" class="grid-content bg-purple device-from" prop="fenleis" v-if="editFen==0">
                                      <el-cascader
                                                v-model="xinADD.parentId"
                                               :options="cascaderList"
                                                @change="fenleiChange"
                                                :props="{ checkStrictly: true }"
                                                 :show-all-levels="false"
                                               clearable
                                               style="width: 100%;"
                                           ></el-cascader>
                                    </el-form-item>
                                    <el-form-item label="分类名称" class="grid-content bg-purple device-from" prop="planName">
                                      <el-input v-model="xinADD.classificationName" placeholder="请输入" />
                                        </el-form-item>
                         </el-form>
                       </div>

    <div style="display: flex;justify-content: flex-end;padding: 10px 20px 10px 0">
    <el-button  class="buttonHover"
                  style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;"
          @click="fenqing" >返回</el-button>
        <el-button plain @click="sevLei"  style="background-color: #3F9B6A;color: #fff;" >保存
        </el-button>
      </div>
                    </el-dialog>
                    <el-dialog  :visible.sync="xiaoguoBox" custom-class='xiaoguo_css' style="padding: 0;" width="75%"
                      center :close-on-click-modal="false" :close-on-press-escape="false">
                      <div style="padding:15px;background-color:#F9F9F9;font-size:14px;border:1px solid #ECECEC;margin-bottom:20px">
                          活动效果分析
                      </div>
                      <div style="padding:0 20px;">
                        <div style="font-size:12px;margin-bottom:10px;">统计分析</div>
                            <div style="display:flex;padding:10px 0;" v-for="(item,index) in xiaoguoList">
                                <div style="margin-right:40px;width:17%">
                                  <div style="color:#BBBBBB;font-size:10px;">{{item.channelCategory}}</div>
                                  <div style="color:#BBBBBB;font-size:10px;margin-bottom:10px">{{item.contentCategory}}</div>
                                  <div style="font-size:14px;padding:10px 0"><span style="font-size:20px;font-weight:600;">{{item.contentCategoryNum}}</span></div>
                                  <div style="height:5px;background-color:#FEC03D;"></div>
                                </div>

                            </div>

                      </div>
                      <div style="padding:0 20px;">
                        <div style="font-size:12px;margin-bottom:10px;">数据分析</div>
                            <div style="display:flex;padding:10px 0;" v-for="(item,index) in xiaoguoList">
                                <div style="margin-right:40px;width:17%">
                                  <div style="color:#BBBBBB;font-size:10px;margin-bottom:10px">{{item.contentCategory}}</div>
                                  <div style="font-size:14px;padding:10px 0"><span style="font-size:20px;font-weight:600;">{{item.contentCategoryNum}}</span></div>
                                  <div style="height:5px;background-color:#FEC03D;"></div>
                                </div>

                            </div>

                      </div>
                        <div style="padding:0 20px;margin-top:20px;">
                          <div style="border:1px solid #EFEFEF;padding:20px 15px">
                            <div style="display:flex">
                              <div style="width:30%;margin-right:40px">
                                <div>排名</div>
                                <div style="margin-top:20px;">
                                  <div style="display:flex;justify-content: space-between;margin-bottom:10px;">
                                    <div style="font-size:12px;color:#BBBBBB">主题1</div>
                                    <div>300/100家</div>
                                  </div>
                                  <el-progress :text-inside="true" :stroke-width="15" :percentage="70"></el-progress>
                                  <div style="display:flex;justify-content: space-between;margin:10px 0;">
                                    <div style="font-size:12px;color:#BBBBBB">主题2</div>
                                    <div>300/100家</div>
                                  </div>
                                  <el-progress :text-inside="true" :stroke-width="15" :percentage="100" status="success"></el-progress>
                                  <div style="display:flex;justify-content: space-between;margin:10px 0;">
                                    <div style="font-size:12px;color:#BBBBBB">主题3</div>
                                    <div>300/100家</div>
                                  </div>
                                  <el-progress :text-inside="true" :stroke-width="15" :percentage="80" status="warning"></el-progress>
                                  <div style="display:flex;justify-content: space-between;margin:10px 0;">
                                    <div style="font-size:12px;color:#BBBBBB">主题4</div>
                                    <div>300/100家</div>
                                  </div>
                                  <el-progress :text-inside="true" :stroke-width="15" :percentage="50" status="exception"></el-progress>
                                </div>
                              </div>
                              <div style="width:30%;margin-right:40px">
                                <div>人群占比</div>
                                <div style="height:250px;width:100%;" ref="shopL">
                              </div>
                            </div>
                            <div style="width:30%;margin-right:40px">
                                <div>交易漏斗</div>
                                <div style="height:250px;width:100%;" ref="jiaoL">
                              </div>
                            </div>
                          </div>
                        </div>
                          <div style="padding:55px 10px 10px 10px;background-color:#fff; position:relative">

                                  <el-tabs type="border-card" >
                                    <el-tab-pane label="整体效果分析">
                                      <el-table :data="dataList"
                                        :header-cell-style="{fontSize: '12px', backgroundColor: '#FAFAFA',color:'#000',fontWeight: 'normal'}"
                                         style="width: 100%">
                                        <el-table-column label="主题" width="auto" min-width="12%"  align="center">
                                          <template slot-scope="scope">
                                            {{scope.$index + 1}}
                                                </template>
                                        </el-table-column>
                                        <el-table-column label="环比比较" width="auto" min-width="15%"  align="center">
                                          <template slot-scope="scope">
                                            {{scope.$index + 1}}
                                                </template>
                                        </el-table-column>
                                        <el-table-column label="增长量" width="auto" min-width="15%"  align="center">
                                          <template slot-scope="scope">
                                            {{scope.$index + 1}}
                                                </template>
                                        </el-table-column>
                                        <el-table-column label="增长率" prop="name" width="auto" min-width="15%">
                                          <template slot-scope="scope">
                                            {{scope.row.name}}
                                                </template>
                                        </el-table-column>
                                        <el-table-column label="投入总金额" prop="name" width="auto" min-width="15%">
                                          <template slot-scope="scope">
                                            {{scope.row.name}}
                                                </template>
                                        </el-table-column>
                                        <el-table-column label="投入产出比" prop="name" width="auto" min-width="15%">
                                          <template slot-scope="scope">
                                            {{scope.row.name}}
                                                </template>
                                        </el-table-column>
                                      </el-table>
                                      </el-tab-pane>


                                  </el-tabs>
                            </div>

                      </div>
                    </el-dialog>
                    <el-dialog  :visible.sync="touShow" custom-class='xiaoguo_css' style="padding: 0;" width="75%"
                      center :close-on-click-modal="false" :close-on-press-escape="false">
                      <div style="padding:15px;background-color:#F9F9F9;font-size:14px;border:1px solid #ECECEC;margin-bottom:20px">
                          {{title}}
                      </div>

                        <div style="padding:0 20px;margin-top:20px;">

                                  <el-table :data="tableData"
                                     :header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}"
                                     align="left">
                                    <el-table-column label="序号"   min-width="10%" prop="id" >
                                      <template slot-scope="scope">
                                        {{scope.$index +1 }}
                                        </template>
                                    </el-table-column>
                                    <el-table-column label="渠道名称" prop="channelName"   min-width="30%">
                                    </el-table-column>
                      <el-table-column label="投放周期" prop="releaseCycle"   min-width="30%"  v-if="title=='投放周期管理'">
                      </el-table-column>
                      <el-table-column label="投放费用" prop="deliveryCost"  min-width="30%"  v-if="title=='投放费用管理'">
                      </el-table-column>
                      <el-table-column label="投放效果评价" prop="deliveryEffect"  min-width="30%" v-if="title=='投放效果评价管理'">
                      </el-table-column>

                                    <el-table-column label="操作"   min-width="30%">
                                      <template slot-scope="scope">
                                        <div @click="addbuss(2,scope.row)" class="tableBtn greens">查看</div>
                                        <div @click="peicao('releaseCycle',scope.row)" class="tableBtn greens" v-if="title=='投放周期管理'">投放周期设置</div>
                                        <div @click="peicao('deliveryCost',scope.row)" class="tableBtn greens" v-if="title=='投放费用管理'">投放费用设置</div>
                                        <div @click="peicao('deliveryEffect',scope.row)" class="tableBtn greens" v-if="title=='投放效果评价管理'">评价</div>
                                      </template>
                                    </el-table-column>
                                  </el-table>

                      </div>
                    </el-dialog>
                    <el-dialog :visible.sync="peiShow" custom-class='bian_css' style="padding: 0;" width="45%"
                      :close-on-press-escape="false" center :close-on-click-modal="false" class="dialog_css_Xq" :show-close="false">
                      <div style="padding:20px;">
                        <div style="font-size: 14px;padding-bottom: 20px;color: #000;">{{title}}</div>
                          <el-form label-position="right" ref="jibenFrom" :model="peiForm"  label-width="140px"
                            style="position: relative">
                            <el-form-item label="投放周期" class="grid-content bg-purple device-from" prop="auditReminderTime"  v-if="title=='投放周期管理'">
                              <el-date-picker style="width:240px;margin-right:5px" v-model="peiForm.auditReminderTime"
                                value-format="yyyy-MM-dd HH:mm:ss"    type="datetime" prefix-icon="none" >
                              </el-date-picker>
                            </el-form-item>
                            <el-form-item label="投放费用" class="grid-content bg-purple device-from" prop="auditReminderTime"  v-if="title=='投放费用管理'">
                              <el-input v-model="peiForm.auditReminderTime" placeholder="请输入" />
                            </el-form-item>
                            <el-form-item label="评价" class="grid-content bg-purple device-from" prop="auditReminderTime"  v-if="title=='投放效果评价管理'">
                              <el-input v-model="peiForm.auditReminderTime" placeholder="请输入"   type="textarea"
  :rows="3" />
                            </el-form-item>
                            </el-form>
                        <div style="padding-top:20px;display:flex;justify-content: flex-end;">
                          <el-button  style="background-color: #3F9B6A;color: #fff"
                            @click="peiCheck">确定</el-button>
                          <el-button @click="peiShow = false"  style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;" class="buttonHover">取消</el-button>

                        </div>

                      </div>

                    </el-dialog>
  </div>

</template>

<script>

  import {
    quGetAll,
    quGetOne,
    quAdd,
    quEdit,
    quDel,
    statisticalAnalysis
  } from '@/api/account.js'
  import {
    cereGet,
    cereAdd,
    cereEdit,
    cereDel
  } from '../../api/activityBz'
  import upimg from "@/components/ImageUpload/index"
  import * as echarts from 'echarts'

  export default {
    components: { upimg},
    data() {
      return {
        currentPage: 1,
        total: 100,
        flag: false,
        pageSize: 10,
        ggXin: false,
        index: 1,
        currentPage: 1, // 当前页
        fenlei: [],
        fenleiInex:0,
        formInline: {
          channelClassification:'',//分类
          channelName: '', //渠道名称
          channelType: '', //渠道类型
          createDate: '', //创建时间
          accountNumber: '', //账号
          appKey: '', //appkey
          notes: '', //备注
        },
        planName: '',
        channelName: '', //查询
        rules:{
          channelClassification:[{ required: true, message: '请选择分类', trigger: 'change' }],
          channelName: [{
            required: true,
            message: '请输入渠道名称',
            trigger: 'blur'
          }],
          channelType: [{
            required: true,
            message: '请选择类型',
            trigger: 'change'
          }],
          accountNumber: [{
            required: true,
            message: '请输入账号',
            trigger: 'blur'
          }],
          appKey: [{
            required: true,
            message: '请输入appkey',
            trigger: 'blur'
          }],
        },
        tableData: [],
        pageindex: {
          pageNumber: 1,
          pageSize: 10
        },
        xinlei:false,//分类管理框
        fentcont:true,//分类管理控制
        xinADD:{
          classificationName:'',
          classificationCode:'',
          parentId:'',
          classificationType:'2'
        },
        fenleiDelId:'',
        cascaderList:[],
        submenuId:'',
        defaultProps:{
             children: 'children',
             label: 'classificationName'
        },
        xianFenlei:[],
        xiaoguoBox:false,
        chart: null, //饼图
        chart1: null, //漏斗图
        dataList:[],
        xiaoguoList:[],
        touShow:false,
        title:'',

        peiShow:false,
        peiForm:{
          auditReminderTime:''
        },
        ziduan:'',
        editFen:0,

      }
    },
    computed: {},
    mounted() {
      this.getAll()
    },
    methods: {
      async getAll() {
        const res = await quGetAll(this.pageindex)
        this.tableData = res.data.content
        this.total = res.data.content.length
        let page = {
          pageNumber: 1,
          pageSize: 10,
          classificationType:'2'
        }
        const fenleis =  await cereGet(page)
        this.fenlei = fenleis.data
        this.cascaderList =this.transformData(fenleis.data)
          this.xianFenlei = this.trsData(fenleis.data)
      },
      transformData(data) {
          return data.map(item => ({
            value: item.cereClassification.id,
            label: item.cereClassification.classificationName,
            children: item.childClassifications.map(child => ({
              value: child.id,
              label: child.classificationName,
            })),
          }));
        },
        trsData(data){
          return data.map(item => ({
            ...item.cereClassification,
               children: item.childClassifications || []
              }));
        },
       async getFenAll(){
          this.pageindex={
          pageNumber: 1,
          pageSize: 10
        }
        const res = await quGetAll(this.pageindex)
        this.tableData = res.data.content
        this.total = res.data.content.length
        },
       async handleNodeClick(data){
           this.pageindex.channelClassification = data.id
           const res = await quGetAll(this.pageindex)
           this.tableData = res.data.content
           this.total = res.data.content.length
        },
      //获取当前时间
       updateCurrentTime() {
            const now = new Date();
            const year = now.getFullYear();
            const month = (now.getMonth() + 1).toString().padStart(2, '0');
            const day = now.getDate().toString().padStart(2, '0');
            const hours = now.getHours().toString().padStart(2, '0');
            const minutes = now.getMinutes().toString().padStart(2, '0');
            const seconds = now.getSeconds().toString().padStart(2, '0');

            return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
          },
      addbuss(val, item) {
        if (val == 1) {
          this.formInline = {
          channelClassification:'',//分类
          channelName: '', //渠道名称
          channelType: '', //渠道类型
          createDate: '', //创建时间
          accountNumber: '', //账号
          appKey: '', //appkey
          notes: '', //备注
        }
        } else if (val === 2 || val === 3) {
          this.formInline.id = item.id

        this.formInline = item
         this.formInline.channelClassification = Number(item.channelClassification)
        }
        this.index = val
        this.ggXin = true

      },
      bianji() {
        this.index = 3
      },
      // 确定
      addCheck(index) {
        this.$refs.jibenFrom.validate((valid) => {
          console.log(valid)
            if (valid) {
              if(index == 1){
                this.formInline.createDate = this.updateCurrentTime()
                quAdd(this.formInline).then(res => {
                  this.getAll()
                  this.ggXin = false
                })
              }else{
                quEdit(this.formInline).then(res => {
                  this.getAll()
                  this.ggXin = false
                })
              }
            }else{
                       this.$message({
                           message: '请填写数据',
                           customClass: 'custom-message',
                           offset: 100
                         })
                         return false;
                       }
          }

        )

      },
      async onSubmit() {
        let num = this.fenleiInex
        this.pageindex.channelName = this.channelName
        // this.pageindex.channelClassification = this.fenlei[num]
        let res = await quGetAll(this.pageindex)
        this.currentPage = 1
        this.tableData = res.data.content
        this.total = res.data.content.length
      },
      handleSizeChange() {

      },
      handleCurrentChange(val) {
this.currentPage = val
      },
      closeFn() {
        this.ggXin = false
        this.index = 1
      },
      handleDelete(item) {
        const h = this.$createElement;
        this.$msgbox({
          title: '消息',
          message: h('p', null, [
            h('span', null, '是否删除 '),
          ]),
          showCancelButton: true,
          showClose: false,
          confirmButtonText: '确定',
          cancelButtonText: '取消',
          customClass: 'oe-dialog-btn',
          beforeClose: (action, instance, done) => {
            if (action === 'confirm') {
              quDel({
                id: item.id
              }).then(res => {
                this.$message({
                  message: '删除成功',
                  type: 'success'
                })
                this.getAll()
                done();
              })
            } else {
              done();
            }
          }
        })
      },
      chong() {
        this.pageindex = {
          pageNumber: 1,
          pageSize: 10
        }
        this.channelName = ''
        this.getAll()
      },
      handleClick(tab, event){
        this.fenleiInex = Number(tab.index)
        this.pageindex = {
          pageNumber: 1,
          pageSize: 10
        }
        if(tab.index == '0'){
          this.getAll()
        }else{
        let num = Number(tab.index)
           this.pageindex.channelClassification = this.fenlei[num - 1]
           this.getAll()
        }
      },
      xinFenlei(node,data){
        this.editFen = 0
              if(data){
                this.xinADD.parentId = data.id
              }
             this.xinlei = true
            },
            editFenlei(node,data){
              this.editFen = 1
              if(data){
                 this.xinADD.parentId = data.id
                 this.xinADD.classificationName = data.classificationName
               }
              this.xinlei = true
            },
      fenqing(){
            this.xinADD={
       classificationName:'',
       classificationCode:'',
       parentId:'',
       classificationType:'2'
           }
            this.xinlei = false
      },
      async sevLei(){
        if(this.editFen == 0){
          if(this.xinADD.classificationName ==''){
            this.$message({
              message: '请填写数据',
              customClass: 'custom-message',
              offset: 100
            })
            return;
          }
          this.xinADD.classificationCode = this.xinADD.classificationName

          await cereAdd(this.xinADD)
        }else{
          await cereEdit({id:this.xinADD.parentId,classificationName:this.xinADD.classificationName})
        }

              this.xinlei = false
              this.xinADD={
              classificationName:'',
              classificationCode:'',
              parentId:'',
              classificationType:'2'
                  }
              this.getAll()
            },
       fenleiChange(value){
             this.xinADD.parentId = value[value.length - 1]
       },
       ADDChange(value){
             this.formInline.channelClassification = value[value.length - 1]

       },
      fenDelete(node,data){
              const h = this.$createElement;
                this.$msgbox({
                            title: '消息',
                            message: h('p', null, [
                              h('span', null, '是否当前分类和子分类删除 '),
                            ]),
                            showCancelButton: true,
                            showClose:false,
                            confirmButtonText: '确定',
                            cancelButtonText: '取消',
                            customClass:'oe-dialog-btn',
                            beforeClose: (action, instance, done) => {
                              if (action === 'confirm') {
                                cereDel({id:data.id}).then(res=>{
                                 this.xinlei = false
                                 this.getAll()
                                  done();
                                })
                              } else {
                                done();
                              }
                }
                })
       },
       fenleiMenu(item){
          console.log(item)
           if(item.cereClassification){
              this.pageindex.channelClassification = item.cereClassification.classificationName
           }else{
              this.pageindex.channelClassification = item.classificationName
           }
           this.getAll()
       },
     async xiaoguo() {
     // let res =  await statisticalAnalysis()
     //  this.xiaoguoList = res.data
         this.xiaoguoBox = true
         this.$nextTick(() => {
           this.shopLiu(this.$refs.shopL);
           this.jiaoLiu(this.$refs.jiaoL);
           this.resizeChart = () => {
             try {
               this.chart.resize();
               this.chart1.resize();
             } catch (error) {
               console.log(error);
             }
           };
           window.addEventListener('resize', this.resizeChart, false); // false代表事件句柄在冒泡阶段执行
         })
       },
       shopLiu(Dom){
                   this.chart = echarts.init(Dom)
                   let option = {
                       tooltip: {
                         trigger: 'item'
                       },

                       legend: {
                          textStyle:{
                                         fontSize: 14
                                     },
                                     icon:'circle',
                         top: '40%',
                         left: '65%'
                       },
                       color:['#50B5FF','#FFC542','#8167F5','#FF7474','#58A3F7'],
                       series: [
                         {
                           type: 'pie',
                           radius: ['40%', '70%'],
                            center:['35%','60%'],
                           avoidLabelOverlap: false,
                           padAngle: 5,
                           itemStyle: {
                             borderRadius: 10
                           },
                           label: {
                             show: false,
                             position: 'center',
                             formatter: '{c}'
                           },
                           emphasis: {
                             label: {
                               show: true,
                               fontSize: 16,
                             }
                           },
                           labelLine: {
                             show: false
                           },
                           data: [
                          { value: 1048, name: '0-20' },
                          { value: 735, name: '20-30' },
                          { value: 580, name: '30-40' },
                          { value: 484, name: '40-50' },
                          { value: 300, name: '50-60' }
                           ]
                         }
                       ]
                   }
                   this.chart.setOption(option)
             },
             jiaoLiu(Dom){
               this.chart1 = echarts.init(Dom)
               let option = {
         tooltip: {
           trigger: 'item',
           formatter: '{b} : {c}%'
         },
         series: [
           {
             type: 'funnel',
             left: '10%',
             top: 60,
             bottom: 30,
             width: '70%',
             min: 0,
             max: 100,
             minSize: '45%',
             maxSize: '100%',
             sort: 'descending',
             gap: 2,
             label: {
               show: true,
               position: 'inside'
             },
             labelLine: {
               length: 10,
               lineStyle: {
                 width: 1,
                 type: 'solid'
               }
             },
             itemStyle: {
               borderColor: '#fff',
               borderWidth: 1
             },
             emphasis: {
               label: {
                 fontSize: 20
               }
             },
             color:['#50B5FF','#5AD8A6','#5D7092','#F6BD16'],
             data: [
               { value: 60, name: '访问人数' },
               { value: 40, name: '提交订单' },
               { value: 20, name: '支付成功' },
               { value: 80, name: '到店消费' },
             ]
           }
         ]
       }
               this.chart1.setOption(option)
             },
             toufang(title){

               this.title = title
               this.touShow = true
             },
             peicao(ziduan,item){

               this.peiId= item.id
               this.ziduan = ziduan
               this.peiForm.auditReminderTime = ''
               this.peiShow = true
             },
            async peiCheck(){
              if(this.ziduan == 'releaseCycle'){
                 await quEdit({id:this.peiId,releaseCycle:this.peiForm.auditReminderTime})
              }else if(this.ziduan == 'deliveryCost'){
                 await quEdit({id:this.peiId,deliveryCost:this.peiForm.auditReminderTime})
              }else{
                 await quEdit({id:this.peiId,deliveryEffect:this.peiForm.auditReminderTime})
              }
              this.peiShow =false
              this.getAll()
             },

    }
  }
</script>

<style scoped>
  .custom-tree-node {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    padding-right: 8px;
  }
  .zhuti {
  padding: 0  20px 20px 20px;
    min-height: calc(100vh - 50px - 20px);
    background-color: #Fff;

  }

  /deep/ .el-form-item__content {
    line-height: 0;
  }

  .tableBtn {
    display: inline-block;
    margin-right: 10px;
  }

  .formSearch {
    display: flex;
    width: 100%;
    font-size: 14px;
    justify-content: space-between;
    padding-bottom: 10px;
    align-items: center;
  }

  .greens {
    color: #3F9B6A;
  }

  /deep/ .el-table__row {
    font-size: 14px;
    color:#000000e6;
  }

  .fenye {
    margin-top: 20px;
    position: relative;
  }

  /deep/ .el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: #3F9B6A;
  }

  .el-row {
    margin-bottom: 20px;
  }

  :last-child {
    margin-bottom: 0;
  }

  .el-col {
    border-radius: 4px;
  }


  .grid-content {
    border-radius: 4px;
    min-height: 36px;
  }

  .row-bg {
    padding: 10px 0;
    background-color: #f9fafc;
  }

  /deep/ .el-form--label-top .el-form-item__label {
    padding: 0;
  }


  .pagination {
    text-align: right;
    line-height: 20px;
  }

  /deep/ .el-pagination__total {
    float:left;
  }

/deep/ .bg-purple{
  background: #fff;
  height: 50px;
}
  /deep/ .el-tabs__active-bar {
    background-color: #389865;
  }
  ::v-deep .el-input__inner{
    height:32px;
    line-height:32px;
  }
  ::v-deep .el-select .el-input.is-focus .el-input__inner {
    border-color: #3F9B6A
  }

  ::v-deep .dialog_css_Xq {
    margin-top: 8vh !important;
    margin-left: 25% !important;
    .el-dialog__title {
     font-size: 14px;
     color: #000000e6;
    }
   .el-dialog__header {
      background-color: #fff;
      padding:10px 20px;
    }
  }
  .fenlan {
    display: flex;
  }
::v-deep .el-form-item{
   margin-bottom:16px;
}
  .souLei {
    border: 1px solid #d7d7d7;
    background-color: #fff;
    width:300px;
     margin-right:20px;

  }
  ::v-deep .el-menu{
    border-right:0px;
  }
  ::v-deep .el-menu-item{
    height:36px;
    line-height: 36px;
  }

  ::v-deep .el-submenu__title{
    height:36px;
    line-height: 36px;
    font-weight:600;
    border-radius:4px;
    margin:4px 0;
  }
  ::v-deep .el-menu-item-group__title{
    padding:0px
  }
   ::v-deep .fudan{
        font-weight:600;
       border-radius:4px;
       margin:4px 0;
    }
    ::v-deep .chinddan{
      margin:5px 0;
    }
    ::v-deep .el-tabs__item.is-active {
      color: #3F9B6A;
      opacity: 1;
    }
</style>
<style lang="scss" scoped>
  ::v-deep .souTabs {
    padding:0 15px 0 12px;
    .el-submenu{
      padding:0px;
    }
    .el-menu-item:focus, .el-menu-item:hover{
      background-color: #3F9B6A !important;
    }
    .el-menu-item:hover{
      background-color:#3f9b6a1a !important;
      color:#000 !important;
    }
    .el-tabs--left .el-tabs__header.is-left {
      width: 100%;
      margin-right: 0px;
    }

    .el-tabs--left .el-tabs__item.is-left {
      text-align: center;
    }

    .el-tabs__item.is-active {
      background-color: #DEEBE2;
    }
  }

  ::v-deep .tableList {
    width: 74%;

    .el-button:hover {
      border: none
    }
  }
  ::v-deep .demo-input-suffix {
    display: flex;
    margin-right: 20px;
    width: 75%;
    .el-input__inner{
       height:32px;
    }
  }
  ::v-deep .buttonHover:hover{
    color:#3f9b6a !important;
    border-color: #c5e1d2 !important;
    background-color: #ecf5f0 !important;
    outline: none;
  }

   ::v-deep label{
     font-weight:100
   }
   ::v-deep .xiaoguo_css{
     margin-top:10vh !important;
     margin-left:10% !important;
     .el-dialog__body{
       padding:0px !important;
     }
   }
   ::v-deep .fenlei{
     .el-dialog__body{
       padding:0px !important;
     }
   }

</style>