From 170800582ce66c770a56e69f6d8b44c38f0728bf Mon Sep 17 00:00:00 2001 From: 叶松 <2217086471@qq.com> Date: 星期一, 27 十一月 2023 22:29:21 +0800 Subject: [PATCH] 安全积分超市对接 --- xcx/robePages/safeManage/approveHidden.vue | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/xcx/robePages/safeManage/approveHidden.vue b/xcx/robePages/safeManage/approveHidden.vue index 9c49116..dd28690 100644 --- a/xcx/robePages/safeManage/approveHidden.vue +++ b/xcx/robePages/safeManage/approveHidden.vue @@ -5,8 +5,8 @@ <view class="check_details_card" > <view class="hidden_text">问题照片</view> <view class="check_details_phone hidden_datas" v-for="(item,index) in hiddenPhone"> - <!-- <u-image :src="`https://pipe.thhy-tj.com/${item.imgPath}`" ></u-image> --> - <u-album :urls="[`https://pipe.thhy-tj.com/${item.imgPath}`]"></u-album> + <!-- <u-image :src="`https://szpipe.thhy-tj.com/${item.imgPath}`" ></u-image> --> + <u-album :urls="[`https://szpipe.thhy-tj.com/${item.imgPath}`]"></u-album> </view> </view> <view class="check_details_card"> @@ -92,6 +92,7 @@ data(){ return{ hiddenBtn:0,//是否展示提交按钮 0:展示 + createUser:null,//创建人 checkShow:false,//展示隐患等级和积分值是否可修改 showLever: false,//隐患等级弹框显隐 leverColumns: [ @@ -132,6 +133,7 @@ }, onLoad(option) { this.hiddenBtn = option.status + this.createUser = option.createUser if(option.status==='0'){//0为审批页面、其他为详情页面 this.checkShow = false this.getDetailsInfo(option.id,0) @@ -175,6 +177,7 @@ const params = Object.assign({},this.hiddenDetails); params.level = this.formCheck.levelId params.integral = this.formCheck.integral + params.createUser = this.createUser this.$api.reboSystem.checkHiddenInfo(params).then((res) => { if(res.success) { uni.$u.toast("提交成功!"); -- Gitblit v1.9.3