Commit 3abdf48d by crushh

udpate: dist

parent 96ccbb32
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -18,7 +18,7 @@
{{ activityInfo.status | formatStatus }}
</div>
<div class="activity-info-item">
<span class="activity-info-label">活动有效期:</span>
<span class="activity-info-label">外呼周期:</span>
{{ formatDateTimeByType(activityInfo.startDate, 'yyyy-MM-dd') || '--' }}
{{ formatDateTimeByType(activityInfo.endDate, 'yyyy-MM-dd') || '--' }}
......
......@@ -10,7 +10,7 @@
</div>
<defineTime v-show="form.callFlag == 1" ref="defineTime" :data="form.callTime" />
</el-form-item>
<el-form-item label="活动有效期" required prop="activeTime">
<el-form-item label="外呼周期" required prop="activeTime">
<el-date-picker value-format="timestamp" format="yyyy-MM-dd" :picker-options="pickerOptions" @blur="minTime = maxTime = null" v-model="form.activeTime" @change="handleDateChange" type="daterange" placeholder="请选择生日范围" range-separator="~" start-placeholder="开始日期" end-placeholder="结束日期"> </el-date-picker>
<span class="tips">由于外呼线路有限,为保证外呼触达率,建议外呼时间周期不小于5天</span>
</el-form-item>
......@@ -52,7 +52,7 @@ export default {
}
},
rules: {
activeTime: { required: true, message: '活动有效期不能为空' }
activeTime: { required: true, message: '外呼周期不能为空' }
}
};
},
......
......@@ -27,7 +27,7 @@
</div>
<defineTime v-show="form.callFlag == 1" ref="defineTime" :data="form.callTime" />
</el-form-item>
<el-form-item label="活动有效期" required>
<el-form-item label="外呼周期" required>
<span v-if="!activeTime" class="tips" style="font-size: 14px;margin:0">设置【生日范围】和【外呼时间】后自动生成</span>
<span v-else>{{ activeTime }}</span>
</el-form-item>
......
......@@ -37,7 +37,7 @@
</div>
<defineTime v-show="form.callFlag == 1" ref="defineTime" :data="form.callTime" />
</el-form-item>
<el-form-item label="活动有效期" required>
<el-form-item label="外呼周期" required>
<span v-if="!activeTime" class="tips" style="font-size: 14px;margin:0">设置【节日日期】和【外呼时间】后自动生成</span>
<span v-else>{{ activeTime }}</span>
</el-form-item>
......@@ -169,7 +169,7 @@ export default {
},
methods: {
handleHolidayDay() {
// 回显时 根据活动有效期和节日日期 算出外呼时间
// 回显时 根据外呼周期和节日日期 算出外呼时间
this.form.holiday_day = ((getTimesByReq(this.form.holiday_date) - this.form.startDate) / 24) * 60 * 60 * 1000;
},
hanldeHolidayDay(val) {
......
......@@ -19,20 +19,20 @@
<el-descriptions-item label="生日范围" v-if="birthTimeData.birth_type == 1">{{ birthTimeData.birthDate1 }}</el-descriptions-item>
<el-descriptions-item label="生日范围" v-if="birthTimeData.birth_type == 2">{{ birthTimeData.birthDate2 }}</el-descriptions-item>
<el-descriptions-item label="生日范围" v-if="birthTimeData.birth_type == 3">{{ birthTimeData.birthDate3 }}</el-descriptions-item>
<el-descriptions-item label="活动有效期">{{ birthTimeData.activeTime }}</el-descriptions-item>
<el-descriptions-item label="外呼周期">{{ birthTimeData.activeTime }}</el-descriptions-item>
</el-descriptions>
</div>
<div class="section" v-if="form.scene == 2">
<el-descriptions column="4">
<el-descriptions-item label="外呼时间">节日前{{ holidayTimeData.holiday_day }}天内外呼完成</el-descriptions-item>
<el-descriptions-item label="外呼时段">{{ holidayTimeData.callTime }}</el-descriptions-item>
<el-descriptions-item label="活动有效期">{{ holidayTimeData.activeTime }}</el-descriptions-item>
<el-descriptions-item label="外呼周期">{{ holidayTimeData.activeTime }}</el-descriptions-item>
</el-descriptions>
</div>
<div class="section" v-if="form.scene == 3 || form.scene == 4 || form.scene == 0">
<el-descriptions column="4">
<el-descriptions-item label="外呼时段"> {{ activeTimeData.callTime }}</el-descriptions-item>
<el-descriptions-item label="活动有效期">{{ activeTimeData.activeTime }}</el-descriptions-item>
<el-descriptions-item label="外呼周期">{{ activeTimeData.activeTime }}</el-descriptions-item>
</el-descriptions>
</div>
<dm-sub-title line>人群规则</dm-sub-title>
......
......@@ -64,7 +64,7 @@
<el-table-column prop="totalConnectionNumber" label="总接通数" show-overflow-tooltip />
<el-table-column prop="telephoneConnectionRate" label="接通率" show-overflow-tooltip />
<el-table-column prop="connectionIntentionRate" label="接通意向率" show-overflow-tooltip width="120" />
<el-table-column prop="beginDate" label="活动有效期" show-overflow-tooltip width="160">
<el-table-column prop="beginDate" label="外呼周期" show-overflow-tooltip width="160">
<template slot-scope="{ row }">
<p class="cell-time">
{{ formatDateTimeByType(row.beginDate) }}<br />
......
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