|
@@ -0,0 +1,31 @@
|
|
|
+import { defineComponent, reactive } from "vue";
|
|
|
+import styles from "./index.module.less";
|
|
|
+import moveTop from "./images/moveTopBg.png";
|
|
|
+import dingPng from "./images/ding.png";
|
|
|
+import closeAble from "./images/closeAble.png";
|
|
|
+
|
|
|
+export default defineComponent({
|
|
|
+ name: "TheModalTip",
|
|
|
+ setup(props, ctx) {
|
|
|
+ return () => (
|
|
|
+ <> </>
|
|
|
+ // <div class={styles.downMove}>
|
|
|
+ // <img src={dingPng} class={styles.dingPng} alt="" />
|
|
|
+ // <img src={moveTop} class={styles.downMoveBg} alt="" />
|
|
|
+ // <img
|
|
|
+ // src={closeAble}
|
|
|
+ // class={styles.closeAble}
|
|
|
+ // onClick={() => {
|
|
|
+ // data.showModalMask = false;
|
|
|
+ // }}
|
|
|
+ // alt=""
|
|
|
+ // />
|
|
|
+ // <h2>温馨提示</h2>
|
|
|
+ // <p>检测到您尚未安装“音乐数字课堂”应用程序,为了更好的使用体验,是否立即下载?</p>
|
|
|
+ // <div class={styles.action}>
|
|
|
+ // <button class={styles.submitAppBtn}>立即下载</button>
|
|
|
+ // </div>
|
|
|
+ // </div>
|
|
|
+ );
|
|
|
+ },
|
|
|
+});
|