ir重阅,pm驳回,签名后无响应
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
40061db7f7
commit
b4fe2a1c06
|
@ -155,11 +155,7 @@
|
||||||
<el-option v-for="item of $d.TaskAllocationState" :key="'TaskAllocationState' + item.label" :value="item.value" :label="item.label" />
|
<el-option v-for="item of $d.TaskAllocationState" :key="'TaskAllocationState' + item.label" :value="item.value" :label="item.label" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item> -->
|
</el-form-item> -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- 申请原因 -->
|
<!-- 申请原因 -->
|
||||||
<!-- <el-form-item style="margin-bottom:10px" :label="$t('trials:rereadTrack:table:applyReason')">
|
<!-- <el-form-item style="margin-bottom:10px" :label="$t('trials:rereadTrack:table:applyReason')">
|
||||||
<el-input
|
<el-input
|
||||||
|
@ -630,7 +626,6 @@
|
||||||
@pagination="getList"
|
@pagination="getList"
|
||||||
/>
|
/>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
v-if="ConfirmReReadingVisible"
|
|
||||||
:title="$t('trials:rereadTrack:reject:title:reject')"
|
:title="$t('trials:rereadTrack:reject:title:reject')"
|
||||||
:visible.sync="ConfirmReReadingVisible"
|
:visible.sync="ConfirmReReadingVisible"
|
||||||
width="600px"
|
width="600px"
|
||||||
|
@ -645,6 +640,7 @@
|
||||||
max-height: 650px;
|
max-height: 650px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
"
|
"
|
||||||
|
v-if="ConfirmReReadingVisible"
|
||||||
>
|
>
|
||||||
<el-form
|
<el-form
|
||||||
ref="reasonForm"
|
ref="reasonForm"
|
||||||
|
@ -670,7 +666,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</div>
|
</div>
|
||||||
<div slot="footer" class="dialog-footer">
|
<div slot="footer" class="dialog-footer" v-if="ConfirmReReadingVisible">
|
||||||
<!-- 取消 -->
|
<!-- 取消 -->
|
||||||
<el-button
|
<el-button
|
||||||
:disabled="btnLoading"
|
:disabled="btnLoading"
|
||||||
|
@ -1209,18 +1205,17 @@ export default {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
this.btnLoading = false
|
this.btnLoading = false
|
||||||
// 同意申请成功/拒绝申请成功
|
// 同意申请成功/拒绝申请成功
|
||||||
this.$message.success(
|
let message =
|
||||||
`${
|
type === 1
|
||||||
type === 1
|
? this.$t('trials:rereadTrack:message:msg3')
|
||||||
? this.$t('trials:rereadTrack:message:msg3')
|
: this.$t('trials:rereadTrack:message:msg4')
|
||||||
: this.$t('trials:rereadTrack:message:msg4')
|
this.$message.success(message)
|
||||||
}`
|
// this.$refs['signForm'].btnLoading = false
|
||||||
)
|
|
||||||
this.$refs['signForm'].btnLoading = false
|
|
||||||
this.signVisible = false
|
this.signVisible = false
|
||||||
this.getList()
|
this.getList()
|
||||||
this.ConfirmReReadingVisible = false
|
this.ConfirmReReadingVisible = false
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
console.log(e)
|
||||||
this.loading = false
|
this.loading = false
|
||||||
this.$refs['signForm'].btnLoading = false
|
this.$refs['signForm'].btnLoading = false
|
||||||
this.btnLoading = false
|
this.btnLoading = false
|
||||||
|
@ -1257,13 +1252,11 @@ export default {
|
||||||
this.getList()
|
this.getList()
|
||||||
} else {
|
} else {
|
||||||
// 同意申请成功/拒绝申请成功
|
// 同意申请成功/拒绝申请成功
|
||||||
this.$message.success(
|
let message =
|
||||||
`${
|
type === 1
|
||||||
type === 1
|
? this.$t('trials:rereadTrack:message:msg3')
|
||||||
? this.$t('trials:rereadTrack:message:msg3')
|
: this.$t('trials:rereadTrack:message:msg4')
|
||||||
: this.$t('trials:rereadTrack:message:msg4')
|
this.$message.success(message)
|
||||||
}`
|
|
||||||
)
|
|
||||||
this.ReReadingOrBackVisible = false
|
this.ReReadingOrBackVisible = false
|
||||||
this.signVisible = false
|
this.signVisible = false
|
||||||
this.getList()
|
this.getList()
|
||||||
|
|
Loading…
Reference in New Issue