addKh.vue 754 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <uni-popup ref="popupRef" type="bottom" background-color="#fff" :is-mask-click="false" :mask-click="false">
  3. <view class="ht-qm-popup">
  4. <view class="phone-navBar-box">
  5. <view @click="goback2" class="nav-bar-icon"></view>
  6. <text>添加客户</text>
  7. </view>
  8. </view>
  9. </uni-popup>
  10. </template>
  11. <script setup>
  12. import {
  13. ref,
  14. reactive,
  15. nextTick
  16. } from "vue";
  17. import {
  18. onLoad
  19. } from "@dcloudio/uni-app";
  20. import * as httpApi from "@/api/sanfang.js"
  21. import searchDialog from "./search.vue";
  22. function goback2() {
  23. popupRef.value.close();
  24. }
  25. const popupRef = ref(null)
  26. const data = reactive({
  27. })
  28. function handleShow() {
  29. popupRef.value.open();
  30. }
  31. defineExpose({
  32. handleShow
  33. })
  34. </script>
  35. <style>
  36. </style>