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

52 lines
1.8 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 WeixinApp = () => {
const appId = getImage('/notice/doc/config/weixin-official/01-AppID.jpg');
const appSecret = getImage(
'/notice/doc/config/weixin-official/02-AppSecret.jpg',
);
return (
<div class={'doc'}>
<div class={'url'}>
<a
href="https://mp.weixin.qq.com/"
target="_blank"
rel="noopener noreferrer"
>
https://mp.weixin.qq.com/
</a>
</div>
<h1>1. </h1>
<div>
</div>
<h1>2.</h1>
<div>
<h2>1AppID</h2>
<div></div>
<div>
----
</div>
<div class={'image'}>
<Image width="100%" src={appId} />
</div>
</div>
<h2>2AppSecret</h2>
<div>
<div></div>
<div>
----
</div>
<div class={'image'}>
<Image width="100%" src={appSecret} />
</div>
</div>
</div>
);
};
export default WeixinApp;