Commit c1349a4a by crushh

update: dist

parent 172e95d1
......@@ -280,7 +280,7 @@ export default {
<style lang="scss" scoped>
.radioLine {
padding: 12px 0 8px 0;
padding-top: 12px;
display: flex;
flex-wrap: wrap;
.el-radio + .el-radio {
......
......@@ -28,7 +28,7 @@
<el-form-item prop="memberType" required>
<template slot="label">
<span>参与人群</span>
<el-tooltip width="400" placement="top-start" content="系统每天凌晨根据此处配置来查询当天需要进行外呼的客户数据并固化下来。因此,若是在当天凌晨系统固化完外呼客户之后人群发生变化则不会已经固化的客户;">
<el-tooltip width="400" placement="top-start" content="系统每天凌晨根据此处配置来查询当天需要进行外呼的客户数据并固化下来。因此,若是在当天凌晨系统固化完外呼客户之后人群发生变化后新增的客户则不会触发外呼事件;">
<i style="cursor:pointer; font-size:14px;" class="iconfont icon-QuestionCircleOutlined"></i>
</el-tooltip>
</template>
......
......@@ -9,12 +9,15 @@
<div><el-input prefix-icon="el-icon-search" v-model="search" placeholder="请输入标签名称" @keyup.enter.native="getList" clearable @clear="getList"></el-input></div>
<div class="btn"><el-button size="small" type="primary" @click="showPopVisible = true">新增标签</el-button></div>
</div>
<div class="radioContainer">
<div class="radioContainer" v-if="valueList.length">
<div v-for="item in valueList" :key="item.tagId" class="radioLine">
<div class="lineTitle">{{ item.tagName }}</div>
<el-radio v-for="value in item.itemList" :key="value.tagItemId" :label="value" v-model="selectVal" @change="val => handleChange(item.tagName, val)">{{ value.tagItemName }}</el-radio>
</div>
</div>
<div class="nonData" v-else>
暂无数据
</div>
<dm-pagination class="fr" layout="prev, pager, next" v-if="totalCount" :total="totalCount" :page-size="pageSize" :current-page.sync="currentPage" @current-change="getPageMemberTagDetail"> </dm-pagination>
</div>
</el-tab-pane>
......@@ -139,7 +142,7 @@ export default {
.searchWrap {
display: flex;
justify-content: space-between;
margin-bottom: 15px;
margin-bottom: 20px;
}
.container {
height: 521px;
......@@ -148,16 +151,22 @@ export default {
padding: 11px 17px 0 0;
}
.radioContainer {
height: 440px;
height: 430px;
overflow-y: auto;
.el-radio + .el-radio {
margin-left: 0;
}
}
.nonData {
height: 430px;
display: flex;
justify-content: center;
align-items: center;
}
.radioLine {
.lineTitle {
font-weight: bolder;
margin-bottom: 12px;
margin-bottom: 16px;
width: 100%;
color: #303030;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment