|
@@ -137,6 +137,7 @@ export default {
|
|
|
end_address: this.end_address,
|
|
|
approve_user: this.approvePeople.map(user => (user.userid || user.emplId)).join(','),
|
|
|
copy_user: this.copyPeople.map(user => (user.userid || user.emplId)).join(','),
|
|
|
+ apply_user_id: this.apply_user_id
|
|
|
}
|
|
|
if (this.start_time) {
|
|
|
const [date, amOrPm] = this.start_time.split(' ')
|
|
@@ -184,16 +185,9 @@ export default {
|
|
|
const res = await this.postApi(data)
|
|
|
if (res.code === 1) {
|
|
|
this.$toast(res.msg)
|
|
|
-
|
|
|
- // TODO: 提交成功后跳转到我的审批
|
|
|
- /*
|
|
|
- this.$router.push({
|
|
|
- name: '',
|
|
|
- query: {
|
|
|
- formtype: this.formType
|
|
|
- }
|
|
|
- })
|
|
|
- */
|
|
|
+ if (this.flag === 'approve') {
|
|
|
+ this.$router.go(-1)
|
|
|
+ } else this.__jump2apply_state__()
|
|
|
|
|
|
}
|
|
|
} catch (e) {
|