Commit 0e0b6c2a by crushh

update: dist

parent 5d0e843a
......@@ -12,15 +12,25 @@
</div>
</template>
</el-table-column>
<el-table-column :show-overflow-tooltip="false" :width="200" :min-width="200" align="left" prop="title" label="模板名称"></el-table-column>
<el-table-column :show-overflow-tooltip="false" :width="200" :min-width="200" align="left" prop="title" label="模板名称">
<template slot-scope="{ row }">
<el-popover trigger="hover" placement="top-start" :disabled="row.content && row.content.indexOf('gic6.cn') < 0" width="400" :content="contentStr">
<div slot="reference">{{ row.title }}</div>
</el-popover>
</template>
</el-table-column>
<el-table-column :show-overflow-tooltip="false" :width="200" :min-width="200" align="left" prop="content" label="模板类型">
<template slot-scope="scope">
<p class="gray" style="color:#606266">{{ scope.row.type === 0 ? '普通短信' : scope.row.type === 1 ? '营销短信' : '验证码' }}</p>
<template slot-scope="{ row }">
<el-popover trigger="hover" placement="top-start" :disabled="row.content && row.content.indexOf('gic6.cn') < 0" width="400" :content="contentStr">
<p class="gray" style="color:#606266" slot="reference">{{ row.type === 0 ? '普通短信' : row.type === 1 ? '营销短信' : '验证码' }}</p>
</el-popover>
</template>
</el-table-column>
<el-table-column :show-overflow-tooltip="false" :min-width="200" align="left" prop="content" label="模板内容">
<template slot-scope="scope">
<div>{{ scope.row.content }}</div>
<template slot-scope="{ row }">
<el-popover trigger="hover" placement="top-start" :disabled="row.content && row.content.indexOf('gic6.cn') < 0" width="400" :content="contentStr">
<div slot="reference">{{ row.content }}</div>
</el-popover>
</template>
</el-table-column>
</el-table>
......@@ -48,7 +58,8 @@ export default {
},
total: 0,
smsTempList: [],
activeSmsId: ''
activeSmsId: '',
contentStr: '您选择的短信模板中,使用了小程序链接,请注意每天推送用户数不要超过50万(单个小程序每天可生成此类链接的上限为50万条)'
};
},
watch: {
......
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