flx:修复校验问题
This commit is contained in:
parent
fc8b5eec7c
commit
4e5b52c825
@ -122,12 +122,14 @@
|
||||
},
|
||||
validate(call) {
|
||||
this.$refs['wflowForm'].validate().then(res => {
|
||||
const dataList = Object.values(this.modelValue);
|
||||
const result = dataList[0][dataList[0].length - 1];
|
||||
// console.log(4444444, JSON.stringify(this.modelValue))
|
||||
const dataList = Object.values(this.modelValue);
|
||||
const result = dataList[0] instanceof Array ? dataList[0][dataList[0].length - 1] : dataList;
|
||||
// console.log(JSON.stringify(dataList[0]))
|
||||
// console.log(4444444, JSON.stringify(this.formFields[this.formFields.length - 1].props.columns))
|
||||
const flag = this.formFields[this.formFields.length - 1].props.columns ? this.formFields[this.formFields.length - 1].props.columns.every((v, i)=> {
|
||||
if((i == this.formFields[this.formFields.length - 1].props.columns.length - 1) && result[v.id]){
|
||||
// console.log(result[v.id])
|
||||
// console.log(5555555, JSON.stringify(result[v.id]))
|
||||
if(result[v.id][0].id){
|
||||
return true
|
||||
} else {
|
||||
@ -139,9 +141,14 @@
|
||||
}
|
||||
return
|
||||
}
|
||||
if(result instanceof Array){
|
||||
// console.log(22222, v.props.required, JSON.stringify(result[result.length - 1]), v.id)
|
||||
return v.props.required == false || (v.props.required == true && result[result.length - 1][0][v.id] != null && result[result.length - 1][0][v.id] != "")
|
||||
}
|
||||
// console.log(22222, v.props.required, JSON.stringify(result), v.id)
|
||||
return v.props.required == false || (v.props.required == true && result[v.id] != null);
|
||||
}) : true;
|
||||
console.log(3333333, flag)
|
||||
// console.log(3333333, flag)
|
||||
call(flag)
|
||||
console.log('表单数据信息:', JSON.stringify(res));
|
||||
}).catch(err => {
|
||||
|
||||
@ -328,15 +328,16 @@
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
/deep/ .uni-picker-custom {
|
||||
/* :deep(.uni-picker-custom), .uni-picker-custom {
|
||||
height: 480rpx;
|
||||
}
|
||||
} */
|
||||
</style>
|
||||
<style scoped>
|
||||
.search {
|
||||
position: fixed;
|
||||
/* bottom: 465rpx; */
|
||||
bottom: 400rpx;
|
||||
bottom: 242px;
|
||||
/* bottom: 400rpx; */
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
z-index: 9999;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user