Commit f464a6da by crushh

update: dist

parent 2439041b
......@@ -101,7 +101,7 @@ const tableHead = [
}
},
{
label: '转人数',
label: '转人数',
prop: 'conversionNumber',
width: '120',
sortable: 'custom',
......@@ -119,9 +119,9 @@ const tableHead = [
}
},
{
label: '销售额(元)',
label: '活动转化金额(实付)',
prop: 'actualSale',
width: '140',
width: '180',
sortable: 'custom',
formatter: function(row) {
return `<span>${!isNaN(row.actualSale) ? row.actualSale.toLocaleString() : '- -'}</span>`;
......@@ -253,7 +253,7 @@ export default {
],
[
{
label: '销售额',
label: '活动转化金额(实付)',
value: '',
unit: '元',
key: 'actualSale',
......
<template>
<div>
<div class="aiDataIndex">
<el-tabs v-model="activeName">
<el-tab-pane label="AI外呼数据" name="1">
<aiDataAiCall v-if="activeName == '1'" />
......@@ -36,4 +36,10 @@ export default {
};
</script>
<style></style>
<style lang="scss" scoped>
.aiDataIndex {
/deep/ .el-tabs__nav-wrap {
padding-left: 20px;
}
}
</style>
......@@ -405,6 +405,7 @@ export default {
<style lang="scss" scoped>
.chart-group {
width: 100%;
min-height: 300px;
.chart-title {
margin-top: 30px;
font-size: 14px;
......
<template>
<div>
<div class="aiList">
<el-tabs v-model="activeName">
<el-tab-pane label="外呼任务" name="first">
<task />
......@@ -28,4 +28,10 @@ export default {
};
</script>
<style></style>
<style lang="scss" scoped>
.aiList {
/deep/ .el-tabs__nav-wrap {
padding-left: 20px;
}
}
</style>
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