From 8726e3080bd889ea67ceb26f9ca7039025e20452 Mon Sep 17 00:00:00 2001 From: Tevin <tingquanren@163.com> Date: Thu, 08 Jul 2021 17:16:51 +0800 Subject: [PATCH] 实现页面间通讯公共模块 --- forms/imagePicker/CImagePicker.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/forms/imagePicker/CImagePicker.vue b/forms/imagePicker/CImagePicker.vue index 7312a7f..108a27a 100644 --- a/forms/imagePicker/CImagePicker.vue +++ b/forms/imagePicker/CImagePicker.vue @@ -31,7 +31,7 @@ import Taro from '@tarojs/taro'; import { $ } from '@tarojs/extend'; import { AtInput, AtImagePicker, AtCurtain } from 'taro-ui-vue'; -import { $fetcherCommon } from '@fetchers/FCommon'; +import { $fetchCommon } from '@fetchers/FCommon'; import CImageCompressor from './CImageCompressor.vue'; import './cImagePicker.scss'; @@ -137,7 +137,7 @@ }); }, $uploadImage(callback) { - const url = $fetcherCommon.getUploadImgURL(); + const url = $fetchCommon.getUploadImgURL(); const uploadTeam = []; const imgs = []; this.files.forEach(file => { @@ -160,7 +160,7 @@ : res.data; if (res2.state.code === 2000) { resolve( - $fetcherCommon.transImgPath( + $fetchCommon.transImgPath( 'fix', res2.data.src ) -- Gitblit v1.9.1