删除隐患确认人
parent
2c5a77582c
commit
bfdb4ab1ec
|
@ -342,14 +342,6 @@
|
|||
<!-- </view>-->
|
||||
<!-- </view>-->
|
||||
</view>
|
||||
<!-- <view class="title">隐患确认人</view>-->
|
||||
<!-- <picker v-if="HIDDEN_STATUS === '-2'" @change="setConUser" :value="form.conUserIndex"-->
|
||||
<!-- :range="confirmUserAllList" range-key="NAME">-->
|
||||
<!-- <view class="picker">-->
|
||||
<!-- {{form.conUserName?form.conUserName:'请选择'}}-->
|
||||
<!-- </view>-->
|
||||
<!-- </picker>-->
|
||||
<!-- <text v-else class="text-semi">{{form.conUserName}}</text>-->
|
||||
|
||||
</view>
|
||||
</view>
|
||||
|
@ -428,7 +420,6 @@
|
|||
},// 数据
|
||||
files: [],
|
||||
hiddenVideo: [],
|
||||
confirmUserAllList: [], // 隐患确认人下拉数据
|
||||
videoSrc: '',
|
||||
todayDate: '',
|
||||
modalShow: false,
|
||||
|
@ -449,7 +440,6 @@
|
|||
this.getData();
|
||||
// 初始化现场作业负责人
|
||||
this.getDept()
|
||||
this.getDict()
|
||||
loginSession();
|
||||
this.rectifyPlanCompletionStartTime = formatDate(tomorrow, 'yyyy-MM-dd');
|
||||
|
||||
|
@ -571,12 +561,6 @@
|
|||
this.videoSrc = e.currentTarget.dataset.src
|
||||
this.modalShow = true
|
||||
},
|
||||
setConUser(e) {
|
||||
this.form.conUserIndex = e.detail.value;
|
||||
this.form.CONFIRM_USER = this.confirmUserAllList[e.detail.value].USER_ID;
|
||||
this.form.conUserName = this.confirmUserAllList[e.detail.value].NAME;
|
||||
this.$forceUpdate();//强制刷新
|
||||
},
|
||||
submit() {
|
||||
var _this = this;
|
||||
// 在发送请求之前进行非空校验
|
||||
|
@ -736,35 +720,6 @@
|
|||
}
|
||||
})
|
||||
},
|
||||
//获取数据字典数据
|
||||
getDict() {
|
||||
var _this = this;
|
||||
|
||||
uni.request({
|
||||
method: 'POST',
|
||||
dataType: 'json',
|
||||
header: {
|
||||
'Content-type': 'application/x-www-form-urlencoded'
|
||||
},
|
||||
url: basePath + '/app/user/getHiddenConfirm',
|
||||
data: {
|
||||
corpinfoId: corpinfoId,
|
||||
IS_HAZARDCONFIRMER: '1',
|
||||
tm: new Date().getTime()
|
||||
},
|
||||
success: function (res) {
|
||||
if ("success" == res.data.result) {
|
||||
_this.confirmUserAllList = res.data.userList;
|
||||
_this.$forceUpdate();//强制刷新
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.data.message,
|
||||
duration: 2000
|
||||
});
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
goback() {
|
||||
var pages = getCurrentPages(); // 获取当前页面栈
|
||||
|
|
Loading…
Reference in New Issue