iot-ui-vue/src/views/notice/Config/Detail/doc/AliyunVoice.tsx

46 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import './index.less';
import { Image } from 'ant-design-vue';
import { getImage } from '@/utils/comm';
const AliyunVoice = () => {
const accessKey = getImage(
'/notice/doc/config/aliyun-sms-voice/AccesskeyIDSecret.jpg',
);
return (
<div class={'doc'}>
<div class={'url'}>
<a
href="https://home.console.aliyun.com"
target="_blank"
rel="noopener noreferrer"
>
https://home.console.aliyun.com
</a>
</div>
<h1>1. </h1>
<div>
</div>
<h1>2.</h1>
<div>
<h2>1RegionID</h2>
<div>
RegionID
</div>
</div>
<h2>2AccesskeyID/Secret</h2>
<div>
<div>
API的用户标识和秘钥获取路径------AccessKey管理--
</div>
</div>
<div class={'image'}>
<Image width="100%" src={accessKey} />
</div>
</div>
);
};
export default AliyunVoice;