WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2024-03-18 81a735caa69952bc24e0fa3e08549974dc11ff21
forms/imagePicker/CImagePreview.vue
@@ -25,6 +25,7 @@
        return {};
    },
    methods: {
        // option { current, urls }
        $preview(option) {
            // 网页模式下,增加缩放操作
            if (process.env.TARO_ENV === 'h5') {
@@ -39,8 +40,8 @@
            // 小程序模式,直接支持缩放
            else {
                Taro.previewImage({
                    current: file.url, // 当前显示图片的http链接
                    urls, // 需要预览的图片http链接列表
                    current: option.current, // 当前显示图片的http链接
                    urls: option.urls, // 需要预览的图片http链接列表
                });
            }
        },