Commit 39e329af by haojie

开始直播前文字提示修改

parent 76b156fd
...@@ -11,10 +11,10 @@ ...@@ -11,10 +11,10 @@
<template #body> <template #body>
<template v-if="loading"> <template v-if="loading">
<Loading></Loading> <Loading></Loading>
视频正在加载中,请稍后 直播正在准备中,请稍后
</template> </template>
<template v-else> <template v-else>
<div class="title">直播视频已准备就绪,确定开始直播吗?</div> <div class="title">直播已准备就绪,确定开始直播吗?</div>
</template> </template>
</template> </template>
</ConfirmDialog> </ConfirmDialog>
......
...@@ -154,6 +154,12 @@ export const DataType = (value: any, key: 'array' | 'string' | 'object' = 'array ...@@ -154,6 +154,12 @@ export const DataType = (value: any, key: 'array' | 'string' | 'object' = 'array
} }
}; };
// 深拷贝
export const deepCopy = (value: any) => {
// 用json
return JSON.parse(JSON.stringify(value));
};
// 阿里云上传 // 阿里云上传
export const alyOssUpload = ( export const alyOssUpload = (
config: any, config: any,
......
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