|
@@ -48,9 +48,9 @@
|
|
<el-button v-if="!this.taskForm.taskId == ''" type="primary"
|
|
<el-button v-if="!this.taskForm.taskId == ''" type="primary"
|
|
@click="dataFormSubmit(1)" :disabled="submitDisabled">{{ $t('通过') }}</el-button>
|
|
@click="dataFormSubmit(1)" :disabled="submitDisabled">{{ $t('通过') }}</el-button>
|
|
<el-button v-if="!this.taskForm.taskId == ''&&(this.isDevSup||this.isUserMag) && this.xpxp!= 12" type="success"
|
|
<el-button v-if="!this.taskForm.taskId == ''&&(this.isDevSup||this.isUserMag) && this.xpxp!= 12" type="success"
|
|
- @click="updateDetail">{{ $t('修改') }}</el-button>
|
|
|
|
- <el-button v-if="!this.taskForm.taskId == ''" type="danger" @click="dataFormSubmit(0)"
|
|
|
|
- :disabled="submitDisabled">{{ $t('作废') }}</el-button>
|
|
|
|
|
|
+ @click="updateDetail" :disabled="submitDisabled">{{ $t('修改') }}</el-button>
|
|
|
|
+ <el-button v-if="!this.taskForm.taskId == ''" type="danger"
|
|
|
|
+ @click="dataFormSubmit(0)" :disabled="submitDisabled">{{ $t('作废') }}</el-button>
|
|
</span>
|
|
</span>
|
|
<div>
|
|
<div>
|
|
<span>{{ $t('流转详情') }}</span>
|
|
<span>{{ $t('流转详情') }}</span>
|
|
@@ -671,9 +671,9 @@ export default {
|
|
this.taskForm.condition = val
|
|
this.taskForm.condition = val
|
|
this.taskForm.govFiles = this.dataForm.files
|
|
this.taskForm.govFiles = this.dataForm.files
|
|
handleApprove(this.taskForm).then(response => {
|
|
handleApprove(this.taskForm).then(response => {
|
|
- this.submitDisabled = false
|
|
|
|
this.msgSuccess(this.$t('处理成功'));
|
|
this.msgSuccess(this.$t('处理成功'));
|
|
this.visible = false;
|
|
this.visible = false;
|
|
|
|
+ this.submitDisabled = false
|
|
this.$emit('refreshDataList')
|
|
this.$emit('refreshDataList')
|
|
});
|
|
});
|
|
this.$nextTick(function () {
|
|
this.$nextTick(function () {
|