工作单支持多图片

This commit is contained in:
wuxw 2025-03-31 11:53:31 +08:00
parent 048ad02043
commit d76d2d6948
4 changed files with 6 additions and 6 deletions

View File

@ -17,12 +17,12 @@ let baseUrl = '/';
// 腾讯地图Key, h5使用
let QQMapKey = '';
let commonBaseUrl= 'http://wuye.52wy.top/';
let commonBaseUrl= 'https://shuimuwy.com/';
// #ifndef H5
//服务器域名 小程序 或者 app 时 后端地址
//let baseUrl = 'http://demo.homecommunity.cn/';
let baseUrl = 'http://127.0.0.1:8008/';
let baseUrl = 'https://shuimuwy.com/';
// #endif
//app支付时这里需要填写支付秘钥

View File

@ -59,7 +59,7 @@
"quickapp" : {},
/* */
"mp-weixin" : {
"appid" : "wx702e87d56708f858",
"appid" : "wxaba59a870ae03d54",
"setting" : {
"urlCheck" : false
},

View File

@ -41,7 +41,7 @@
<view v-if="item.pathUrls[0].endsWith('jpg') ||item.pathUrls[0].endsWith('png')"
class="flex justify-start">
<view class="" v-for="(url,index) in item.pathUrls" :key="index">
<image class="file-image" mode="widthFix" :data-url="url" :src="url" @tap="viewImage(url)"></image>
<image class="file-image" :data-url="url" :src="url" @tap="viewImage(url)"></image>
</view>
</view>
</view>

View File

@ -95,7 +95,7 @@
</view>
<view class="action" v-for="(pathUrl,index) in workTaskDetailInfo.pathUrls" :key="index">
<view v-if="pathUrl.endsWith('jpg') || pathUrl.endsWith('png')">
<image class="file-image" mode="widthFix" :data-url="pathUrl" :src="pathUrl"
<image class="file-image" :data-url="pathUrl" :src="pathUrl"
@tap="openViewImage(pathUrl)">
</image>
</view>
@ -135,7 +135,7 @@
</view>
<view class="action" v-if="file.pathUrl">
<view v-if="file.pathUrl.endsWith('jpg') || file.pathUrl.endsWith('png')">
<image class="file-image" mode="widthFix" :data-url="file.pathUrl" :src="file.pathUrl"
<image class="file-image" :data-url="file.pathUrl" :src="file.pathUrl"
@tap="openViewImage(file.pathUrl)">
</image>
</view>