fix:修复了工单状态时间和样式的显示bug,删除了创始人,录音信息改为两个按钮播放录音和下载录音
This commit is contained in:
@@ -3,6 +3,10 @@ const dialogVisible = ref(false);
|
||||
const open = (row) => {
|
||||
dialogVisible.value = true;
|
||||
};
|
||||
// console.log(dialogVisible.value);
|
||||
defineProps({
|
||||
title:String
|
||||
})
|
||||
defineExpose({
|
||||
open,
|
||||
});
|
||||
@@ -10,7 +14,7 @@ defineExpose({
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<el-dialog v-model="dialogVisible" title="语音详情" width="500" :before-close="handleClose">
|
||||
<el-dialog v-model="dialogVisible" :title="title" width="500" >
|
||||
<audio src="" controls style="width: 100%;"></audio>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
|
||||
Reference in New Issue
Block a user