对接握手流程

This commit is contained in:
qq787203167
2022-04-25 18:28:59 +08:00
parent 2361349a37
commit 8a06ae4f94
2 changed files with 4 additions and 4 deletions
@@ -15,10 +15,10 @@
</div>
<a-form-model-item class="itemModel" prop="flag">
<a-radio-group style="margin-top: 2px" @change="flagChange" class="box-input" v-model="formInline.flag">
<a-radio value="1">
<a-radio value="0">
{{$t('agree')}}
</a-radio>
<a-radio value="2">
<a-radio value="1">
{{$t('disagree')}}
</a-radio>
<a-radio value="3">
@@ -166,7 +166,7 @@
methods: {
...mapGetters(['userInfo']),
terminationProcess() {
this.completeTask({ flag: 2 })
},
submit() {
this.$refs.examineInformationRef.submit(function(res) {
@@ -174,7 +174,7 @@
})
},
completeTask(value) {
let json = Object.assign({}, value, this.queryBy)
let json = Object.assign({}, this.queryBy, value)
let data = JSON.stringify(json).replace(/\"/g, '\'')
let query = {
userid: this.userInfo().id,