Pārlūkot izejas kodu

头条 创意 文案匹配

jiayufei 4 gadi atpakaļ
vecāks
revīzija
24064802c4

+ 8 - 0
src/api/actor.js

@@ -170,6 +170,14 @@ export function fileEdit(parameter) {
     })
 }
 
+export function fileEditUpdate(parameter) {
+    return axios({
+        url: "/ctop/materialInfo/bytedance/edit",
+        method: 'put',
+        data: parameter
+    })
+}
+
 
 export function fileEditAll(parameter) {
     return axios({

+ 105 - 0
src/views/modules/creative-copywrit/creative-copywrit.less

@@ -0,0 +1,105 @@
+@import '~@assets/less/common.less';
+
+/deep/ .examin-modal {
+    width: 700px !important;
+    .ant-modal-body {
+        height: 500px !important;
+        overflow-y: auto;
+    }
+    .acount-title {
+        display: flex;
+        font-size: 14px;
+        height: 40px;
+        line-height: 40px;
+        .acount-title-left {
+            margin-right: 20px;
+            width: 100px;
+        }
+        .examin-form-model {
+            width: 500px;
+            position: relative;
+            .examin-form-num {
+                position: absolute;
+                top: -10px;
+                right: -50px;
+            }
+            .examin-form-icon {
+                position: absolute;
+                top: 0px;
+                right: -85px;
+                font-size: 18px;
+                color: #1890ff;
+                cursor: pointer;
+            }
+        }
+        .examin-form-input {
+            width: 380px;
+        }
+    }
+    .push-plate {
+        margin-bottom: 20px;
+        .examin-select-title {
+            margin: 0 20px 0 20px;
+        }
+    }
+}
+
+/deep/ .recommend-modal {
+    width: 700px !important;
+    .ant-modal-body {
+        height: 500px !important;
+        overflow-y: auto;
+    }
+    .recommend-modal-header {
+        display: flex;
+        align-items: center;
+    }
+    .recommend-modal-content {
+        .check-box-class {
+            display: inline-block;
+            width: 50%;
+            white-space: nowrap;
+            overflow: hidden;
+            text-overflow: ellipsis;
+            margin-bottom: 15px;
+        }
+    }
+}
+
+.solgan-whole-content {
+    display: flex;
+    height: 300px;
+    overflow-y: auto;
+    .solgan-title-header {
+        padding-top: 10px;
+        margin-right: 20px;
+    }
+    .solgan-form-class {
+        .examin-form-input {
+            width: 380px;
+        }
+        /deep/ .ant-form-item-children {
+            display: inline-flex;
+            align-items: center;
+        }
+        .default-value-class {
+            display: inline-block;
+            width: 300px;
+            overflow: hidden;
+            white-space: nowrap;
+            text-overflow: ellipsis;
+        }
+        .solgan-form-model {
+            .examin-form-num {
+                margin-left: 10px;
+                margin-right: 5px;
+            }
+            .examin-form-icon {
+                margin: 0 5px 0 5px;
+                font-size: 18px;
+                color: #1890ff;
+                cursor: pointer;
+            }
+        }
+    }
+}

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 3117 - 0
src/views/modules/creative-copywrit/creative-copywrit.vue


+ 4 - 5
src/views/modules/crowd-control/components/tree-select/tree-select.vue

@@ -148,10 +148,10 @@ export default {
             const value = e.target.value;
             this.treeData = value !== '' ? this.getNewTreeData(this.updateTreeData, value) : [...this.updateTreeData];
             if(value !== '') {
-                this.middleValue = this.checkedKeys.filter(item=>typeof item === 'number')
+                this.middleValue = this.checkedKeys.filter(item=>typeof item === 'number');
             }
             else {
-                this.middleValue = []
+                this.middleValue = [];
             }
             if (!this.treeData.length) {
                 this.spinning = false;
@@ -237,12 +237,11 @@ export default {
             }
         },
         onCheck(checkedKeys) {
-            // this.checkedKeys = checkedKeys;
             this.nodes(this.treeData, checkedKeys);
-            const filterCheckKey = this.checkedKeys.filter(item=>typeof item ==='number');
+            const filterCheckKey = this.checkedKeys.filter(item => typeof item === 'number');
             let filterCheckKeySet = new Set(filterCheckKey.concat(this.middleValue));
             let selectRightDataSet = new Set(this.selectRightData);
-            let difference = new Set([...selectRightDataSet].filter((item) => !filterCheckKeySet.has(item.key)));
+            let difference = new Set([...selectRightDataSet].filter(item => !filterCheckKeySet.has(item.key)));
             this.selectRightData.delete(...difference);
             this.applyTypeOption = this.Es6duplicate([...this.selectRightData], 'key');
             const changeSelectData = this.applyTypeOption.map(item => item.key);

+ 2 - 2
vue.config.js

@@ -71,7 +71,7 @@ module.exports = {
           // target: 'http://192.168.1.8:8080', //请求本地 需要jeecg-boot后台项目  蒙蒙
           // target: 'http://192.168.1.8:8081', //请求本地 需要jeecg-boot后台项目  蒙蒙
         // target: 'http://192.168.0.59:8088', //请求本地 需要jeecg-boot后台项目  英豪
-        // target: 'http://192.168.1.188:8088', //请求本地 需要jeecg-boot后台项目  英豪
+        target: 'http://192.168.1.62:8088', //请求本地 需要jeecg-boot后台项目  英豪
         // target: 'http://192.168.2.115:8080', //请求本地 需要jeecg-boot后台项目  祚云
         // target: 'http://192.168.1.43:8098', //请求本地 需要jeecg-boot后台项目  毕洁泉
         // target: 'http://192.168.1.43:8088', //请求本地 需要jeecg-boot后台项目  毕洁泉
@@ -80,7 +80,7 @@ module.exports = {
         // target: 'http://192.168.1.219:8080', //请求本地 需要jeecg-boot后台项目  赵西安
         // target: 'http://192.168.1.193:8080', //请求本地 需要jeecg-boot后台项目  李煜一
         // target: 'http://192.168.1.193:31012', //请求本地 需要jeecg-boot后台项目  李煜一
-         target: 'http://api.tjyourong.com.cn', //请求本地 需要jeecg-boot后台项目
+        //  target: 'http://api.tjyourong.com.cn', //请求本地 需要jeecg-boot后台项目
         // target: 'https://trac.tjyourong.com.cn', //请求本地 需要jeecg-boot后台项目
         // target: 'http://39.106.184.70:8088/', //请求本地 需要jeecg-boot后台项目
         //  target: 'http://adsp.tjyourong.com.cn/', //请求本地 需要jeecg-boot后台项目