mirror of
https://gitee.com/java110/PropertyApp.git
synced 2026-02-23 21:36:39 +08:00
工作单支持多图片
This commit is contained in:
parent
048ad02043
commit
d76d2d6948
@ -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支付时这里需要填写支付秘钥
|
||||
|
||||
@ -59,7 +59,7 @@
|
||||
"quickapp" : {},
|
||||
/* 小程序特有相关 */
|
||||
"mp-weixin" : {
|
||||
"appid" : "wx702e87d56708f858",
|
||||
"appid" : "wxaba59a870ae03d54",
|
||||
"setting" : {
|
||||
"urlCheck" : false
|
||||
},
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user