<el-form-item label="搜尋內容">
<div class="tag-container" style="width: 90%;">
<div v-for="(item, index) in form.searchContent"
:key="index"
class="bordered-div"
style="margin-bottom: 8px;">
{{ item.name }}
<el-tag style="background-color: #409eff; color: white; margin-left: 8px;">
{{ msgModeMap[item.mode] }}
</el-tag>
</div>
</div>
</el-form-item>
const form = ref({
msgType: '', // 發送類型
selType: '', // 挑選方式
theme: '', // 主題
content:'',
subject: '',
content: '',
searchContent: [],
sendTime: '',
deliveryTime: ''
});