| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <uni-popup ref="popupRef" type="bottom" background-color="#fff" :is-mask-click="false" :mask-click="false">
- <view class="ht-qm-popup">
- <view class="phone-navBar-box">
- <view @click="goback2" class="nav-bar-icon"></view>
- <text>添加客户</text>
- </view>
- </view>
- </uni-popup>
- </template>
- <script setup>
- import {
- ref,
- reactive,
- nextTick
- } from "vue";
- import {
- onLoad
- } from "@dcloudio/uni-app";
- import * as httpApi from "@/api/sanfang.js"
- import searchDialog from "./search.vue";
- function goback2() {
- popupRef.value.close();
- }
- const popupRef = ref(null)
- const data = reactive({
- })
- function handleShow() {
- popupRef.value.open();
- }
- defineExpose({
- handleShow
- })
- </script>
- <style>
- </style>
|