|
@@ -0,0 +1,24 @@
|
|
|
+import { defineComponent } from "vue";
|
|
|
+import styles from './index.module.less'
|
|
|
+import func from './images/function.png'
|
|
|
+import btnImg from './images/button-bg.png'
|
|
|
+import MSticky from "@/components/m-sticky";
|
|
|
+
|
|
|
+export default defineComponent({
|
|
|
+ name: 'activation-download',
|
|
|
+ setup() {
|
|
|
+ return () => <div class={styles.activationDownload}>
|
|
|
+ <div class={styles.section}>
|
|
|
+ <img src="https://oss.dayaedu.com/ktyq/1733226456374.png" class={styles.qrCodeImg} />
|
|
|
+
|
|
|
+<img src={func} class={styles.func} />
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <MSticky position="bottom">
|
|
|
+ <div class={styles.btnGroup}>
|
|
|
+ <img src={btnImg} class={styles.btnImg} />
|
|
|
+ </div>
|
|
|
+ </MSticky>
|
|
|
+ </div>
|
|
|
+ }
|
|
|
+})
|