Merge remote-tracking branch 'origin/uat' into main
commit
f8c28fc66d
|
@ -308,6 +308,13 @@
|
|||
<el-tag v-else-if="scope.row.AuditState*1 === 8" type="primary">{{ $fd('AuditStateRC', scope.row.AuditState*1) }}</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- 审核完成时间 -->
|
||||
<el-table-column
|
||||
prop="AuditTime"
|
||||
:label="$t('trials:crcUpload:table:auditTime')"
|
||||
show-overflow-tooltip
|
||||
width="170"
|
||||
/>
|
||||
<el-table-column
|
||||
v-if="hasPermi(['trials:trials-panel:visit:crc-upload:upload', 'trials:trials-panel:visit:crc-upload:submit','trials:trials-panel:visit:crc-upload:edit','trials:trials-panel:visit:crc-upload:delete'], '||')"
|
||||
:label="$t('common:action:action')"
|
||||
|
|
|
@ -2007,7 +2007,9 @@ export default {
|
|||
this.$emit("getList");
|
||||
this.$emit("nextTask", res.Result.VisitId);
|
||||
});
|
||||
});
|
||||
}).catch(()=>{
|
||||
this.$emit("getList")
|
||||
})
|
||||
} else {
|
||||
// 没有后续质控任务
|
||||
this.$emit("getList");
|
||||
|
|
|
@ -80,7 +80,16 @@
|
|||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
||||
<!-- 分配时间 -->
|
||||
<el-form-item :label="$t('trials:qcCheck:table:auditTime')">
|
||||
<el-date-picker
|
||||
v-model="timeList"
|
||||
value-format="yyyy-MM-dd"
|
||||
format="yyyy-MM-dd"
|
||||
type="daterange"
|
||||
@change="changeTimeList"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<!-- 查询 -->
|
||||
<el-button type="primary" icon="el-icon-search" @click="handleSearch">
|
||||
|
@ -309,6 +318,13 @@
|
|||
<el-tag v-else-if="scope.row.AuditState*1 === 8" type="primary"> {{ $fd('AuditStateRC', scope.row.AuditState*1) }}</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- 审核完成时间 -->
|
||||
<el-table-column
|
||||
prop="AuditTime"
|
||||
:label="$t('trials:qcCheck:table:auditTime')"
|
||||
show-overflow-tooltip
|
||||
width="170"
|
||||
/>
|
||||
<!-- 历史审核人 -->
|
||||
<el-table-column
|
||||
v-show="OtherInfo.QCProcessEnum !== 0"
|
||||
|
@ -652,6 +668,8 @@ const searchDataDefault = () => {
|
|||
IsUrgent: null,
|
||||
AuditStateArray: [],
|
||||
HandleUserId: '',
|
||||
BeginAuditTime: null,
|
||||
EndAuditTime: null,
|
||||
PageIndex: 1,
|
||||
PageSize: 20
|
||||
// SortField: '',
|
||||
|
@ -683,7 +701,8 @@ export default {
|
|||
trialCode: this.$route.query.trialCode,
|
||||
query: null,
|
||||
manualsDialog: { visible: false },
|
||||
isFullscreen: false
|
||||
isFullscreen: false,
|
||||
timeList: []
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
|
@ -822,6 +841,7 @@ export default {
|
|||
// 重置
|
||||
handleReset() {
|
||||
this.searchData = searchDataDefault()
|
||||
this.timeList = []
|
||||
this.getList()
|
||||
this.$nextTick(() => {
|
||||
this.$refs.qcCheckList.clearSort()
|
||||
|
@ -949,6 +969,15 @@ export default {
|
|||
this.qcVisible = false
|
||||
})
|
||||
},
|
||||
changeTimeList() {
|
||||
if (this.timeList) {
|
||||
this.searchData.BeginAuditTime = this.timeList[0]
|
||||
this.searchData.EndAuditTime = this.timeList[1]
|
||||
} else {
|
||||
this.searchData.BeginAuditTime = null
|
||||
this.searchData.EndAuditTime = null
|
||||
}
|
||||
},
|
||||
openManuals() {
|
||||
this.manualsDialog.visible = true
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue