hookehuyr

fix

...@@ -31,6 +31,7 @@ declare module '@vue/runtime-core' { ...@@ -31,6 +31,7 @@ declare module '@vue/runtime-core' {
31 NutCell: typeof import('@nutui/nutui-taro')['Cell'] 31 NutCell: typeof import('@nutui/nutui-taro')['Cell']
32 NutCheckbox: typeof import('@nutui/nutui-taro')['Checkbox'] 32 NutCheckbox: typeof import('@nutui/nutui-taro')['Checkbox']
33 NutCheckboxGroup: typeof import('@nutui/nutui-taro')['CheckboxGroup'] 33 NutCheckboxGroup: typeof import('@nutui/nutui-taro')['CheckboxGroup']
34 + NutCol: typeof import('@nutui/nutui-taro')['Col']
34 NutConfigProvider: typeof import('@nutui/nutui-taro')['ConfigProvider'] 35 NutConfigProvider: typeof import('@nutui/nutui-taro')['ConfigProvider']
35 NutDatePicker: typeof import('@nutui/nutui-taro')['DatePicker'] 36 NutDatePicker: typeof import('@nutui/nutui-taro')['DatePicker']
36 NutDialog: typeof import('@nutui/nutui-taro')['Dialog'] 37 NutDialog: typeof import('@nutui/nutui-taro')['Dialog']
...@@ -48,6 +49,7 @@ declare module '@vue/runtime-core' { ...@@ -48,6 +49,7 @@ declare module '@vue/runtime-core' {
48 NutRadio: typeof import('@nutui/nutui-taro')['Radio'] 49 NutRadio: typeof import('@nutui/nutui-taro')['Radio']
49 NutRadioGroup: typeof import('@nutui/nutui-taro')['RadioGroup'] 50 NutRadioGroup: typeof import('@nutui/nutui-taro')['RadioGroup']
50 NutRate: typeof import('@nutui/nutui-taro')['Rate'] 51 NutRate: typeof import('@nutui/nutui-taro')['Rate']
52 + NutRow: typeof import('@nutui/nutui-taro')['Row']
51 NutSignature: typeof import('@nutui/nutui-taro')['Signature'] 53 NutSignature: typeof import('@nutui/nutui-taro')['Signature']
52 NutSwiper: typeof import('@nutui/nutui-taro')['Swiper'] 54 NutSwiper: typeof import('@nutui/nutui-taro')['Swiper']
53 NutSwiperItem: typeof import('@nutui/nutui-taro')['SwiperItem'] 55 NutSwiperItem: typeof import('@nutui/nutui-taro')['SwiperItem']
...@@ -70,7 +72,3 @@ declare module '@vue/runtime-core' { ...@@ -70,7 +72,3 @@ declare module '@vue/runtime-core' {
70 VideoField: typeof import('./src/components/VideoField/index.vue')['default'] 72 VideoField: typeof import('./src/components/VideoField/index.vue')['default']
71 } 73 }
72 } 74 }
73 -ex.vue')['default']
74 - VideoField: typeof import('./src/components/VideoField/index.vue')['default']
75 - }
76 -}
......
1 <!-- 1 <!--
2 * @Date: 2022-11-23 14:41:53 2 * @Date: 2022-11-23 14:41:53
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2023-04-13 18:19:36 4 + * @LastEditTime: 2023-04-13 18:24:01
5 * @FilePath: /custom_form/src/components/ContactField/index.vue 5 * @FilePath: /custom_form/src/components/ContactField/index.vue
6 * @Description: 联系我们控件 6 * @Description: 联系我们控件
7 --> 7 -->
8 <template> 8 <template>
9 <div v-if="HideShow" class="contact-field-page"> 9 <div v-if="HideShow" class="contact-field-page">
10 - <!-- <van-popover v-model:show="showPopover" placement="left">
11 - <div class="contact-content">
12 - <div class="text-tel">电话联系</div>
13 - <div>
14 - <a
15 - :style="{ color: styleColor.baseColor }"
16 - :href="`tel:${item.component_props.tel}`"
17 - >
18 - {{ item.component_props.tel }}
19 - </a>
20 - </div>
21 - <div v-if="item.component_props.image_url">
22 - <div class="text-qr_code">微信联系</div>
23 - <van-image width="100" height="100" :src="item.component_props.image_url" />
24 - </div>
25 - </div>
26 - <template #reference>
27 - <div class="wrapper">
28 - <van-icon name="phone-o" size="2rem" :color="styleColor.baseColor" />
29 - </div>
30 - </template>
31 - </van-popover> -->
32 -
33 <div class="wrapper"> 10 <div class="wrapper">
34 <Service size="25" :color="styleColor.baseColor" @click="onClick" /> 11 <Service size="25" :color="styleColor.baseColor" @click="onClick" />
35 <div class="triangle"></div> 12 <div class="triangle"></div>
...@@ -75,7 +52,6 @@ const onClick = () => { ...@@ -75,7 +52,6 @@ const onClick = () => {
75 // 给每张图片添加查看事件 52 // 给每张图片添加查看事件
76 nextTick(() => { 53 nextTick(() => {
77 var img = $('#qr_code'); 54 var img = $('#qr_code');
78 - console.warn(img);
79 $(img).on('longpress', function (e) { 55 $(img).on('longpress', function (e) {
80 Taro.previewImage({ 56 Taro.previewImage({
81 // 需要预览的图片链接列表 57 // 需要预览的图片链接列表
......