123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977 |
- <template>
- <div class='newBlankRule'>
- <div class="toolbox-automate-rules-create-body">
- <div class="toolbox-automate-rules-create-content_title"><h3> 新建自动规则</h3></div>
- <div class="toolbox-automate-rules-create-content">
- <a-form-model
- ref="ruleForm"
- :model="form"
- :rules="rules"
- >
- <div class="moduler">
- <!-- 应用对象 -->
- <div class="row-item" >
- <div class="hint-item"></div>
- <div class="label-item">
- <div class="text-item">应用对象</div>
- <div class="required-item"></div>
- </div>
- <div class="input-item">
- <a-form-model-item ref="applyObject" prop="applyObject">
- <!-- <a-input
- v-model="form.name"
- @blur="
- () => {
- $refs.name.onFieldBlur();
- }
- "
- /> -->
- <a-radio-group v-model="form.applyObject" @change="applyObjChange">
- <a-radio-button value="ACCOUNT">账户</a-radio-button>
- <a-radio-button value="CAMPAIGN">计划</a-radio-button>
- <a-radio-button value="UNIT">组</a-radio-button>
- <a-radio-button value="CREATE">创意</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- </div>
- </div>
- <div class="row-item" >
- <div class="hint-item"></div>
- <div class="label-item">
- <div class="text-item">应用范围</div>
- <div class="required-item"></div>
- </div>
- <div class="input-item" >
- <a-form-model-item ref="applyRange" prop="applyRange" v-if="form.applyObject!='ACCOUNT'">
- <a-radio-group v-model="form.applyRange">
- <a-radio-button value="ACCORDINGTO_STATUS">按状态筛选</a-radio-button>
- <a-radio-button value="APPOINT">指定</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- <a-form-model-item ref="applyAccount" prop="applyAccount" v-if="form.applyObject=='ACCOUNT'">
- <a-select style="width: 300px" v-model="form.applyAccount" mode="multiple" placeholder="请选择具体的账户">
- <a-select-option v-for="item in accountList" :key="item.id" :value='item.value'>
- {{item.title}}
- </a-select-option>
- </a-select>
- </a-form-model-item>
- </div>
- </div>
- <div class="row-item" v-if="form.applyRange=='ACCORDINGTO_STATUS'&&form.applyObject!='ACCOUNT'">
- <div class="hint-item"></div>
- <div class="label-item">
- <div class="text-item">选择状态</div>
- <div class="required-item"></div>
- </div>
- <div class="input-item" >
- <a-form-model-item ref="status" prop="status">
- <a-select style="width: 300px" v-model="form.status">
- <a-select-option v-for="item in statusList" :key="item.id" :value='item.value'>
- {{item.title}}
- </a-select-option>
- </a-select>
- </a-form-model-item>
- </div>
- </div>
- <div class="row-item" v-if="form.applyRange=='APPOINT'&&form.applyObject!='ACCOUNT'">
- <div class="hint-item"></div>
- <div class="label-item">
- <div class="text-item">具体{{form.applyObject | handlerApplyObj}}</div>
- <div class="required-item"></div>
- </div>
- <div class="input-item" >
- <a-form-model-item ref="status" prop="status">
- <div class="selectedExist">
- <a-input v-model="selectedCampaignValue" class="input" placeholder='请输入名称' @change="selectedCampaign">
- <a-icon slot="addonAfter" type="search" />
- </a-input>
- <div style="width: 500px; margin-top: 4px;" >
- <div class="inventory-tags-lists-header">
- <a-checkbox :indeterminate="indeterminate" :checked="checkAll" @change="onCheckAllChange">
- </a-checkbox>
- <div class="inventory-tags-lists-name"><strong>列表</strong></div>
- </div>
- <div class="inventory-tags-lists-container">
- <a-checkbox-group v-model="checkedList" :options="plainOptions" @change="onChange" >
- <span></span>
- </a-checkbox-group>
- </div>
- </div>
- <div class="fenye" v-if="totalPage">
- <a-pagination :current='currentPage' size='small' :total='totalPage' :pageSize='10' @change="pageNoChange" />
- </div>
- </div>
- </a-form-model-item>
- </div>
- </div>
- <div class="row-item" >
- <div class="hint-item">
- <a-tooltip>
- <template slot="title">
- 针对计划或者账户粒度的消耗、成本、转化数等数据设置阈值作为监控条件,方便系统判断当前的计划状态;条件之间为「且」的关系
- </template>
- <a-icon type="question-circle" />
- </a-tooltip>
- </div>
- <div class="label-item">
- <div class="text-item">规则条件</div>
- <div class="required-item"></div>
- </div>
- <div class="input-item" >
- <div class="toolbox-automate-rules-create-content_rules-and-condition_rules">
- <div class="title">
- <span class="condition-title">如果</span>
- <a-form-model-item ref="causalCondition" prop="causalCondition">
- <a-select style="width: 300px" v-model="form.causalCondition">
- <a-select-option value='MEET_ALL'>满足以下所有条件</a-select-option>
- <a-select-option value='MEET_ANY'>满足以下任意条件</a-select-option>
- </a-select>
- </a-form-model-item>
- </div>
- <div class="content">
- <div class="rules-list" v-for="(item,index) in rulesList" :key='index'>
- <div class="rules-list-item">
- <div class="rules-list-item-subject" >
- <a-cascader
- v-model="item.baseCondition"
- :options="condition"
- :display-render="displayRender"
- expand-trigger="hover"
- placeholder=""
- @change="conditionChange(item)"
- />
- </div>
- <div class="rules-list-item-subject" >
- <a-select v-model="item.whichDayOfData">
- <a-select-option value='CURRENT_DAY_DATA'>当天数据</a-select-option>
- </a-select>
- </div>
- <div class="rules-list-item-subject" >
- <a-select v-model="item.compareOperate">
- <a-select-option value='GT_EQ'>大于等于</a-select-option>
- <a-select-option value='LT_EQ'>小于等于</a-select-option>
- <a-select-option value='BETWEEN'>介于</a-select-option>
- </a-select>
- </div>
- <div class="rules-list-item-subject" v-if="item.baseCondition[1]=='COST'">
- <a-select v-model="item.whichModuleOfMoney">
- <a-select-option value='MONEY'>金额</a-select-option>
- <a-select-option value='DAY_BUDGET'>日预算</a-select-option>
- </a-select>
- </div>
- <!-- <div class="rules-list-item-subject" v-if="item.whichModuleOfMoney=='MONEY'&&item.compareOperate!='BETWEEN'">
- <a-input-number :min="0" style="width:100%" :max="9999999.99" :step="1" v-model="item.specificMoney" placeholder="请输入" />
- <span style="margin-left:8px;line-height:32px">元</span>
- </div> -->
-
- <div class="rules-list-item-subject" v-if="item.whichModuleOfMoney=='MONEY'&&item.compareOperate!='LT_EQ'">
- <a-input-number :min="0" style="width:100%" :max="9999999.99" :step="1" v-model="item.specificMoneyMin" placeholder="请输入" />
- <span style="margin-left:8px;line-height:32px">元</span>
- </div>
- <span style="margin-right:20px" v-if="item.whichModuleOfMoney=='MONEY'&&item.compareOperate!='GT_EQ'">-</span>
- <div class="rules-list-item-subject" v-if="item.whichModuleOfMoney=='MONEY'&&item.compareOperate=='BETWEEN'">
- <a-input-number :min="0" style="width:100%" :max="9999999.99" :step="1" v-model="item.specificMoneyMax" placeholder="请输入" />
- <span style="margin-left:8px;line-height:32px">元</span>
- </div>
- <!-- <div class="rules-list-item-subject" v-if="item.whichModuleOfMoney=='DAY_BUDGET'&&item.compareOperate!='BETWEEN'">
- <a-select v-model="item.budgetMultiple">
- <a-select-option v-for="item in budgetMultipleArr" :key="item.value" :value='item.value' >{{item.label}}</a-select-option>
- </a-select>
- </div> -->
- <div class="rules-list-item-subject" v-if="item.whichModuleOfMoney=='DAY_BUDGET'&&item.compareOperate!='LT_EQ'">
- <a-select v-model="item.budgetMultipleMin">
- <a-select-option v-for="item in budgetMultipleArr" :key="item.value" :value='item.value' >{{item.label}}</a-select-option>
- </a-select>
- </div>
- <span style="margin-right:20px" v-if="item.whichModuleOfMoney=='DAY_BUDGET'&&item.compareOperate=='BETWEEN'">-</span>
- <div class="rules-list-item-subject" v-if="item.whichModuleOfMoney=='DAY_BUDGET'&&item.compareOperate!='GT_EQ'">
- <a-select v-model="item.budgetMultipleMax">
- <a-select-option v-for="item in budgetMultipleArr" :key="item.value" :value='item.value' >{{item.label}}</a-select-option>
- </a-select>
- </div>
- <!-- 处理不是消耗的情况 -->
- <div class="rules-list-item-subject" v-if="item.baseCondition[1]!='COST'&&item.compareOperate!='LT_EQ'">
- <a-input-number :min="0" style="width:100%" :max="9999999.99" :step="1" v-model="item.minNumber" placeholder="请输入" />
- <span style="margin-left:8px;line-height:32px">{{item.baseCondition[1] | handlerDANWEI}}</span>
- </div>
- <span style="margin-right:20px" v-if="item.baseCondition[1]!='COST'&&item.compareOperate=='BETWEEN'">-</span>
- <div class="rules-list-item-subject" v-if="item.baseCondition[1]!='COST'&&item.compareOperate!='GT_EQ'">
- <a-input-number :min="0" style="width:100%" :max="9999999.99" :step="1" v-model="item.maxNumber" placeholder="请输入" />
- <span style="margin-left:8px;line-height:32px">{{item.baseCondition[1] | handlerDANWEI }}</span>
- </div>
- <div class="rules-list-item-delete" @click="deleteRulesListItem(item,index)">
- <a-icon type="delete" style="font-size:16px;position: relative;top: 4px;" />
- </div>
- </div>
- </div>
-
- <div class="add-rule" @click="addRule"> 添加条件</div>
- </div>
- </div>
- <div class="toolbox-automate-rules-create-content_rules-and-condition_rules">
- <div class="title">
- <span class="condition-title">则依次执行以下操作</span>
- </div>
- <div class="content">
- <div class="rules-list">
- <div class="rules-list-item">
- <div class="rules-list-item-subject" >
- <a-form-model-item ref="checkedTime" prop="checkedTime">
- <a-select v-model="form.finalOperation">
- <a-select-option value='PAUSE' v-if="form.applyObject!='ACCOUNT'">暂停{{form.applyObject | handlerApplyObj}}</a-select-option>
- <a-select-option value='OLNY_SENDMESSAGE'>仅发送通知</a-select-option>
- </a-select>
- </a-form-model-item>
- </div>
- </div>
- </div>
-
- </div>
- </div>
- </div>
- </div>
- <div class="row-item" >
-
- <div class="hint-item"></div>
- <div class="label-item">
- <div class="text-item">检查时间</div>
- <div class="required-item"></div>
- </div>
- <div class="input-item">
- <a-form-model-item ref="checkedTime" prop="checkedTime">
- <a-radio-group v-model="form.checkedTime">
- <a-radio-button value="DAY">每天</a-radio-button>
- <a-radio-button value="HOUR">每小时</a-radio-button>
- <a-radio-button value="HALF_AN_HOUR">每半小时</a-radio-button>
- <!-- <a-radio-button value="CUSTOM_TIME">自定义</a-radio-button> -->
- </a-radio-group>
- </a-form-model-item>
- </div>
- </div>
- <div class="row-item" v-if="form.checkedTime=='DAY'">
- <div class="hint-item"></div>
- <div class="label-item">
- <div class="text-item">选择时刻</div>
- <div class="required-item"></div>
- </div>
- <div class="input-item">
- <a-form-model-item ref="specificMoment" prop="specificMoment">
- <a-select style="width: 300px" placeholder="请选择具体时刻" v-model="form.specificMoment">
- <a-select-option v-for="(item,index) in 24" :key="item" :value='index'>
- {{index>10?`${index}:00`:`0${index}:00`}}
- </a-select-option>
- </a-select>
- </a-form-model-item>
- </div>
- </div>
- <!-- <div class="row-item" >
- <div class="hint-item"></div>
- <div class="label-item">
- <div class="text-item">发送通知</div>
- <div class="required-item"></div>
- </div>
- <div class="input-item">
- <a-form-model-item ref="sendMessage" prop="sendMessage">
- <a-radio-group v-model="form.sendMessage">
- <a-radio-button :value="1">发送</a-radio-button>
- <a-radio-button :value="0">不发送</a-radio-button>
- </a-radio-group>
- </a-form-model-item>
- </div>
- </div> -->
- <div class="row-item" >
- <div class="hint-item"></div>
- <div class="label-item">
- <div class="text-item">规则名称</div>
- <div class="required-item"></div>
- </div>
- <div class="input-item">
- <a-form-model-item ref="applyObject" prop="applyObject">
- <a-input
- v-model="form.name"
- @blur="
- () => {
- $refs.name.onFieldBlur();
- }
- "
- />
- </a-form-model-item>
- </div>
- </div>
- </div>
- <div class="moduler">
- <!-- <div class="moduler-title">计划名称</div> -->
- <div class="opt">
- <a-button type="default" style="margin-right:15px" @click="goBack">取消</a-button>
- <a-button type="primary" style="margin-right:15px" @click="saveHandler" :loading="saveLoading">保存</a-button>
- </div>
- </div>
- </a-form-model>
- </div>
- </div>
- </div>
- </template>
- <script>
- import moment from 'moment';
- import { getAction, postAction, downFile, downFilePost } from '@/api/manage';
- import { Switch } from 'ant-design-vue';
- let statusList=[
- {
- id:1,
- value:'STATUS_ALL',
- title:'所有',
- },
- {
- id:2,
- value:'STATUS_DELIVERY_OK',
- title:'所有投放中',
- },
- {
- id:3,
- value:'STATUS_CREATE',
- title:'所有新建',
- },
- {
- id:4,
- value:'STATUS_DISABLE',
- title:'所有已暂停',
- },
- {
- id:5,
- value:'STATUS_AUDIT',
- title:'所有新建审核',
- },
- {
- id:6,
- value:'STATUS_DONE',
- title:'所有已完成',
- },
- ]
- let condition=[
- {
- value:'0',
- label:'展示数据',
- children:[
- {
- value:'SHOW',
- label:'展示数',
- },
- {
- value:'CLICK',
- label:'点击数',
- },
- {
- value:'CLICK_RATE',
- label:'点击率',
- },
- {
- value:'COST',
- label:'消耗',
- },
- {
- value:'AD_CLICK_PRICE',
- label:'平均点击单价',
- },
- ]
- },
- {
- value:'1',
- label:'转化数据',
- children:[
- {
- value:'CONVERT',
- label:'转化数',
- },
- {
- value:'CONVERT_COST',
- label:'转化成本',
- },
- {
- value:'CONVERT_RATE',
- label:'转化率',
- },
- {
- value:'DEEP_CONVERT',
- label:'深度转化数',
- },
- {
- value:'DEEP_CONVERT_COST',
- label:'深度转化成本',
- },
- {
- value:'DEEP_CONVERT_RATE',
- label:'深度转化率',
- },
-
- ]
- }
- ]
- let rulesField = [
-
- ]
- let budgetMultipleArr=[
- {
- value:0.5,
- label:'0.5倍预算',
- },
- {
- value:0.8,
- label:'0.8倍预算',
- },
- {
- value:1,
- label:'1倍预算',
- },
- {
- value:1.5,
- label:'1.5倍预算',
- },
- ]
- export default {
- data() {
- return {
- selectedCampaignValue:undefined,
- spinning:false,
- campaignHaveList:[],
- currentPage:1,
- totalPage:0,
- checkedList: [],
- indeterminate: false,
- checkAll: false,
- plainOptions:[],
- saveLoading:false,
- // 用到的参数数组
- condition,
- statusList,
- budgetMultipleArr,
- accountList:[],
- form: {
- name: `空白规则_${moment().format('YYYY_MM_DD_hh:mm:ss')}`,
- applyObject:'ACCOUNT',
- applyAccount:[],
- applyRange:'ACCORDINGTO_STATUS',
- status:'STATUS_DELIVERY_OK',
- specificMoment:undefined,
- sendMessage:1,
- specificMoment:undefined,
- checkedTime:'DAY',
- causalCondition:'MEET_ALL', //因果条件 满足所有/满足任意
- finalOperation:'OLNY_SENDMESSAGE',
-
- },
- rules: {
- name: [
- { required: true, message: '请填写规则的具体名称', trigger: 'blur' },
- { min: 2, message: '长度不得小于2', trigger: 'blur' },
- ],
- applyObject: [{ required: true, message: '请选择具体应用对象', trigger: 'change' }],
- applyRange: [{ required: true, message: '请选择具体应用范围', trigger: 'change' }],
- applyAccount: [{required: true, message: '请选择具体应用范围', trigger: 'change' }],
- specificMoment: [{required: true, message: '请选择具体时刻', trigger: 'change' }],
-
- },
- rulesList:[
- {
- baseCondition:['0','COST'],
- whichDayOfData:'CURRENT_DAY_DATA',
- compareOperate:'GT_EQ',
- whichModuleOfMoney:'MONEY',
- budgetMultiple:0.5,
- budgetMultipleMin:0.5,
- budgetMultipleMax:0.8,
- specificMoney:undefined,
- specificMoneyMin:undefined,
- specificMoneyMax:undefined,
- }
- ]
- }
- },
- methods: {
- // form-modal 自带方法
- onSubmit() {
- this.$refs.ruleForm.validate(valid => {
- if (valid) {
- console.log('submit!',valid);
- } else {
- console.log('error submit!!');
- return false;
- }
- });
- },
- resetForm() {
- this.$refs.ruleForm.resetFields();
- },
- addRule(){
- this.rulesList.push({
- baseCondition:['0','COST'],
- whichDayOfData:'CURRENT_DAY_DATA',
- compareOperate:'GT_EQ',
- whichModuleOfMoney:'MONEY',
- budgetMultiple:0.5,
- budgetMultipleMin:0.5,
- budgetMultipleMax:0.8,
- specificMoney:undefined,
- specificMoneyMin:undefined,
- specificMoneyMax:undefined,
- minNumber:undefined,
- maxNumber:undefined,
- })
- },
- deleteRulesListItem(item,index){
- console.log(item,index)
- this.rulesList=this.rulesList.filter((ele,ind)=>{
- return ind!=index
- })
- },
- displayRender({ labels }) {
- return labels[labels.length - 1];
- },
- conditionChange(item){
- console.log(item)
- if(item.baseCondition[1]=='COST'){
- item.whichModuleOfMoney='MONEY';
- }else{
- item.whichModuleOfMoney=undefined;
- }
- item.specificMoney=undefined;
- item.specificMoneyMin=undefined;
- item.specificMoneyMax=undefined;
- item.minNumber=undefined;
- item.maxNumber=undefined;
- },
- applyObjChange(e){
- if(e.target.value=='ACCOUNT'){
- this.form.finalOperation='OLNY_SENDMESSAGE'
- }
- },
- saveHandler(){
- this.$refs.ruleForm.validate(valid=> {
- if (valid) {
- this.form.rulesList=this.rulesList;
- console.log(valid,this.form);
- } else {
- console.log('error submit!!');
- return false;
- }
- });
- },
- goBack() {
- this.$router.replace('/autoRules')
- this.$bus.$emit('remove', '/newBlankRule')
-
- },
- //分页页码改变
- pageNoChange(val){
- console.log(val);
- this.currentPage=val;
- this.selectedCampaign()
- },
- onChange(checkedList) {
- this.indeterminate = !!checkedList.length && checkedList.length < plainOptions.length;
- this.checkAll = checkedList.length === plainOptions.length;
- },
- onCheckAllChange(e) {
- let valueOption = [];
- this.plainOptions.forEach((item) => {
- valueOption.push(item.value)
- })
- Object.assign(this, {
- checkedList: e.target.checked ? valueOption : [],
- indeterminate: false,
- checkAll: e.target.checked,
- });
- },
-
- selectedCampaign(e){
- // console.log(e.target.value,this.selectedCampaignValue);
- if(this.accountID){
- this.getExsitGroupList();
- }else{
- this.$message.warning('请选择账户后重试!')
- this.selectedCampaignValue=undefined;
- }
- },
- },
- filters:{
- handlerApplyObj(val){
- let showVal=''
- switch (val) {
- case 'CAMPAIGN':
- showVal='计划'
- break;
- case 'UNIT':
- showVal='组'
- break;
- case 'CREATE':
- showVal='创意'
- break;
- default:
- break;
- }
- return showVal
- },
- handlerDANWEI(val){
- console.log(val.indexOf("RATE") != -1)
- let returnVal='';
-
- if(val.indexOf("RATE") != -1){
- returnVal='%';
- }else if(val.indexOf("COST") != -1|| val.indexOf("PRICE") != -1){
- returnVal='元'
- }else{
- returnVal='个'
- }
- return returnVal
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .newBlankRule{
-
- .toolbox-automate-rules-create-body {
- margin: 16px 12px 12px;
- padding: 32px 32px 16px;
- background-color: #fff;
- border-radius: 4px;
- }
- .toolbox-automate-rules-create-content_title {
- background-color: #fff;
- display: flex;
- flex-flow: row nowrap;
- justify-content: flex-start;
- align-items: center;
- margin-bottom: 28px;
- h3 {
- font-size: 22px;
- margin: 0;
- font-weight: 400;
- height: 30px;
- line-height: 30px;
- }
- }
- .toolbox-automate-rules-create-content {
- padding-left: 28px;
- }
- .moduler {
- .opt {
- text-align: right;
- }
- width: 100%;
- background: #fff;
- margin-bottom: 16px;
- position: relative;
- padding: 32px 24px 48px 32px;
- // border-radius: 4px;
- // box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.05);
- .moduler-title {
- display: flex;
- align-items: center;
- font-size: 22px;
- margin-bottom: 20px;
- }
- .row-item {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin-bottom: 32px;
- }
- .row-item:last-of-type {
- margin-bottom: 0;
- }
- .row-item .hint-item {
- width: 24px;
- min-width: 24px;
- align-self: flex-start;
- line-height: 20px;
- height: 20px;
- margin-top: 9px;
- }
- .row-item .label-item {
- position: relative;
- align-items: flex-start;
- align-self: flex-start;
- line-height: 20px;
- height: 20px;
- margin-top: 10px;
- width: 80px;
- min-width: 80px;
- .text-item {
- font-size: 14px;
- width: 60px;
- }
- }
- .row-item .required-item {
- width: 4px;
- height: 4px;
- border-radius: 2px;
- background: #f45858;
- position: absolute;
- right: 10px;
- top: 50%;
- transform: translateY(-50%);
- }
- .row-item .input-item {
- min-width: 480px;
- position: relative;
- // height: 35px;
- .tip {
- font-size: 12px;
- color: tomato;
- }
- }
- .adName{
- display: flex;
- .nameList{
- width: 90%;
- }
- .item{
- display: inline-block;
- width: 30%;
- margin-left: 15px;
- margin-bottom: 10px;
- }
- }
- }
- .toolbox-automate-rules-create-content_rules-and-condition_rules {
- margin-bottom: 24px;
- }
- .toolbox-automate-rules-create-content_rules-and-condition_rules, .toolbox-automate-rules-create-content_rules-and-condition_condition {
- width: 1138px;
- background: #fff;
- border-radius: 4px;
- border: 1px solid #dadfe3;
- }
- .toolbox-automate-rules-create-content_rules-and-condition_rules, .toolbox-automate-rules-create-content_rules-and-condition_condition{
- .title{
- height: 20px;
- font-size: 14px;
- font-weight: 600;
- color: #333;
- height: 56px;
- border-bottom: 1px solid #E4E9ED;
- padding-left: 24px;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- .condition-title{
- padding-right: 17px;
- }
- }
- .content{
- padding: 24px;
- .add-rule {
- cursor: pointer;
-
- height: 40px;
- border-radius: 2px;
- border: 1px dashed #dadfe3;
- font-size: 12px;
- display: flex;
- flex-flow: row column;
- justify-content: center;
- align-items: center;
- color: #666;
- margin-top: 16px;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .rules-list-item {
- box-sizing: border-box;
- width: 100%;
- padding: 24px;
- background: #f8f9fa;
- border-radius: 4px;
- margin-bottom: 16px;
- display: flex;
- align-items: center;
- position: relative;
- .rules-list-item-delete {
- position: absolute;
- right: 24px;
- height: 30px;
- padding-left: 24px;
- border-left: 1px solid #DADFE3;
- cursor: pointer;
- }
- .rules-list-item-subject {
- width: 120px;
- margin-right: 16px;
- display: flex;
- }
- }
- .rules—list_item:last-of-type {
- margin-bottom: 0;
- }
- }
- }
- .selectedExist{
- width: 500px;
- padding-top: 5px;
- .inventory-tags-lists-header {
- background-color: #F8F9FA;
- border: 1px solid #E4E9ED;
- height: 36px;
- line-height: 33px;
- border-radius: 4px 4px 0 0;
- font-weight: bold;
- display: flex;
- }
- .inventory-tags-lists-container {
- border: 1px solid #E4E9ED;
- margin-top: -1px;
- height: 100%;
- padding: 4px 0px;
- border-radius: 0 0 4px 4px;
- }
- .inventory-tags-lists-item {
- width: 100%;
- height: 37px;
- line-height: 37px;
- padding-left: 12px;
- padding-right: 12px;
- display: flex;
- font-size: 14px;
- color: #333;
- }
-
- .input{
- margin-bottom:16px ;
- }
- .campaign-have-list{
- font-family: PingFangSC-Regular;
- font-size: 14px;
- color: #333;
- border: 1px solid #DADFE3;
- border-radius: 4px;
- margin-bottom: 16px;
- height: 388px;
- .campaign-have-header {
- height: 38px;
- width: 100%;
- padding-left: 13px;
- line-height: 38px;
- background: #f8f9fa;
- border-radius: 4px 4px 0px 0px;
- border-bottom: 1px solid #DADFE3;
- }
- .campaign-have-list ul {
- width: 100%;
- height: 350px;
- padding-top: 6px;
-
- }
- li{
- padding: 6px 10px;
- cursor: pointer;
- }
- li:hover{
- background: #EDF1F5;
- }
- .ad-d-flex-between {
- justify-content: space-between !important;
- }
- .ad-d-flex, .ad-btn {
- display: flex;
- align-items: center;
- }
- .byted-loading-v {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 996;
- background-color: hsla(0,0%,96%,.9);
- }
- .info{
- width: 60%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .landing-type {
- color: #999;
- font-size: 12px;
- white-space: nowrap;
- }
- }
- .noAccountID{
- font-size: 14px;
- text-align: center;
- color: #999;
- line-height: 388px;
- }
- .fenye{
- height: 60px;
- padding-top: 12px;
- text-align: right;
- }
- }
- }
- </style>
- <style lang="scss">
- .newBlankRule{
- .ant-form-item {
- margin-bottom: 0;
- }
- .ant-radio-button-wrapper {
-
- min-width: 70px;
- text-align: center;
- }
- .ant-checkbox-wrapper,
- .ant-checkbox-group-item {
- display: block;
- padding: 5px 15px;
- }
- .ant-checkbox-wrapper:first-child {
- padding: 0 15px 5px;
- }
- }
- </style>
|