提交代码
parent
aef62e391c
commit
b4ed1ba58a
|
@ -1732,6 +1732,16 @@ Page({
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
let that = this;
|
let that = this;
|
||||||
|
//弹出确认
|
||||||
|
wx.showModal({
|
||||||
|
title: '提示',
|
||||||
|
content: '是否确认保存参建人员信息登记?',
|
||||||
|
success: function (sm) {
|
||||||
|
if (sm.confirm) {
|
||||||
|
that.submitSubUserForm();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue