修改入会、参会
This commit is contained in:
@@ -66,7 +66,7 @@
|
|||||||
@add="add('insideContactInformationList')"
|
@add="add('insideContactInformationList')"
|
||||||
@delete="onDelete('insideContactInformationList', $event)"
|
@delete="onDelete('insideContactInformationList', $event)"
|
||||||
></TableFormItem>
|
></TableFormItem>
|
||||||
<ReceiptDescription v-model="form.commentText" title="回执说明"></ReceiptDescription>
|
<ReceiptDescription v-model="form.commentText" prop="commentText" title="回执说明"></ReceiptDescription>
|
||||||
</div>
|
</div>
|
||||||
<div class="block" style="padding-top: 20px;" v-show="active === '2'">
|
<div class="block" style="padding-top: 20px;" v-show="active === '2'">
|
||||||
<PersonInfo ref="roleForm" :roleForm="roleForm" :roleRules="roleRules" :disabled="disabled"></PersonInfo>
|
<PersonInfo ref="roleForm" :roleForm="roleForm" :roleRules="roleRules" :disabled="disabled"></PersonInfo>
|
||||||
@@ -561,12 +561,12 @@ export default {
|
|||||||
},
|
},
|
||||||
async submit () {
|
async submit () {
|
||||||
this.footerLoading = true
|
this.footerLoading = true
|
||||||
const json = Object.assign(this.form, this.roleForm);
|
const json = JSON.stringify(Object.assign(this.form, this.roleForm));
|
||||||
|
|
||||||
let completeTaskQuery = {
|
let completeTaskQuery = {
|
||||||
taskIds: this.$route.query.taskIds,
|
taskIds: this.$route.query.taskIds,
|
||||||
userId : this.$store.getters.userInfo.userId,
|
userId : this.$store.getters.userInfo.userId,
|
||||||
json: JSON.stringify(json)
|
json
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this.$route.query.taskIds) {
|
if (!this.$route.query.taskIds) {
|
||||||
@@ -575,7 +575,7 @@ export default {
|
|||||||
createUser: this.$store.getters.userInfo.userId,
|
createUser: this.$store.getters.userInfo.userId,
|
||||||
createUserName: this.$store.getters.userInfo.userName,
|
createUserName: this.$store.getters.userInfo.userName,
|
||||||
type: '30',
|
type: '30',
|
||||||
json: JSON.stringify(json)
|
json
|
||||||
}
|
}
|
||||||
const res = await this.$http._post('lawss/activiti/startProcessRollBack', startProcessRollBackQuery)
|
const res = await this.$http._post('lawss/activiti/startProcessRollBack', startProcessRollBackQuery)
|
||||||
if(!res.ok) {
|
if(!res.ok) {
|
||||||
@@ -604,7 +604,7 @@ export default {
|
|||||||
await this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
await this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
if (this.$route.params.type === 'step4') {
|
if (this.$route.params.type === 'step4') {
|
||||||
this.processCreate()
|
this.processCreate(json)
|
||||||
} else {
|
} else {
|
||||||
this.$message.success(completeTaskRes.message)
|
this.$message.success(completeTaskRes.message)
|
||||||
this.footerLoading = false
|
this.footerLoading = false
|
||||||
|
|||||||
@@ -74,7 +74,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
<ReceiptDescription v-model="form.commentText" title="回执说明"></ReceiptDescription>
|
<ReceiptDescription v-model="form.commentText" prop="commentText" title="回执说明"></ReceiptDescription>
|
||||||
</div>
|
</div>
|
||||||
<div class="block" style="padding-top: 20px;" v-show="active === '2'">
|
<div class="block" style="padding-top: 20px;" v-show="active === '2'">
|
||||||
<PersonInfo ref="roleForm" :roleForm="roleForm" :roleRules="roleRules" :disabled="disabled"></PersonInfo>
|
<PersonInfo ref="roleForm" :roleForm="roleForm" :roleRules="roleRules" :disabled="disabled"></PersonInfo>
|
||||||
@@ -438,12 +438,12 @@ export default {
|
|||||||
},
|
},
|
||||||
async submit () {
|
async submit () {
|
||||||
this.footerLoading = true
|
this.footerLoading = true
|
||||||
const json = Object.assign(this.form, this.roleForm);
|
const json = JSON.stringify(Object.assign(this.form, this.roleForm));
|
||||||
|
|
||||||
let completeTaskQuery = {
|
let completeTaskQuery = {
|
||||||
taskIds: this.$route.query.taskIds,
|
taskIds: this.$route.query.taskIds,
|
||||||
userId : this.$store.getters.userInfo.userId,
|
userId : this.$store.getters.userInfo.userId,
|
||||||
json: JSON.stringify(json)
|
json
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this.$route.query.taskIds) {
|
if (!this.$route.query.taskIds) {
|
||||||
@@ -452,7 +452,7 @@ export default {
|
|||||||
createUser: this.$store.getters.userInfo.userId,
|
createUser: this.$store.getters.userInfo.userId,
|
||||||
createUserName: this.$store.getters.userInfo.userName,
|
createUserName: this.$store.getters.userInfo.userName,
|
||||||
type: '31',
|
type: '31',
|
||||||
json: JSON.stringify(json)
|
json
|
||||||
}
|
}
|
||||||
const res = await this.$http._post('lawss/activiti/startProcessRollBack', startProcessRollBackQuery)
|
const res = await this.$http._post('lawss/activiti/startProcessRollBack', startProcessRollBackQuery)
|
||||||
if(!res.ok) {
|
if(!res.ok) {
|
||||||
@@ -481,7 +481,7 @@ export default {
|
|||||||
await this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
await this.$router.push({path:'/processCenter?tabsName=ProcessCenter'})
|
||||||
} else {
|
} else {
|
||||||
if (this.$route.params.type === 'step4') {
|
if (this.$route.params.type === 'step4') {
|
||||||
this.processCreate()
|
this.processCreate(json)
|
||||||
} else {
|
} else {
|
||||||
this.$message.success(completeTaskRes.message)
|
this.$message.success(completeTaskRes.message)
|
||||||
this.footerLoading = false
|
this.footerLoading = false
|
||||||
|
|||||||
Reference in New Issue
Block a user