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