index.tsx 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import { defineComponent, reactive } from "vue";
  2. import styles from "./index.module.less";
  3. import iconRight from "./icons/icon-right.png";
  4. import { Popup } from "vant";
  5. import ScreenModel from "./screen-model";
  6. import Recommendation from "./recommendation";
  7. export default defineComponent({
  8. name: "helper-model",
  9. setup() {
  10. const helperData = reactive({
  11. show: false,
  12. recommendationShow: false, // 建议
  13. });
  14. return () => (
  15. <>
  16. <div class={styles.helperModel} onClick={() => (helperData.show = true)}>
  17. <img id="tips-step-0" src={iconRight} />
  18. </div>
  19. <Popup
  20. class={["popup-custom", styles.screen]}
  21. v-model:show={helperData.show}
  22. onClose={() => {
  23. helperData.show = false;
  24. }}
  25. position="right"
  26. >
  27. <ScreenModel
  28. onClose={(open: Boolean) => {
  29. if (open) {
  30. helperData.recommendationShow = true;
  31. } else {
  32. helperData.show = false;
  33. }
  34. }}
  35. />
  36. </Popup>
  37. <Popup v-model:show={helperData.recommendationShow} class="popup-custom van-scale" transition="van-scale">
  38. <Recommendation
  39. onClose={() => {
  40. helperData.recommendationShow = false;
  41. }}
  42. />
  43. </Popup>
  44. </>
  45. );
  46. },
  47. });