合并分支 'fix_20230420' 到 'master'

Fix 20230420

查看合并请求 laws-nio/laws-weilai!313
This commit is contained in:
高嵩
2023-04-24 19:43:03 +08:00
2 changed files with 11 additions and 1 deletions
@@ -981,6 +981,13 @@
return
}
this.dataSource = res.result.records || []
this.dataSource.forEach(value => {
if (value.flowStatusName =='清单待校核'){
value.flowStatusName = '任务待发起'
}else if(value.flowStatusName =='List to be checked'){
value.flowStatusName = 'The task is to be initiated'
}
})
this.total = res.result.total
this.loading = false
this.JLoading = false
@@ -1,7 +1,6 @@
<template>
<div style="position: relative">
<a-drawer
headerStyle="{ 'font-weight': 'bold'}"
:title="titleName"
:maskClosable="false"
:width="948"
@@ -481,4 +480,8 @@
.problemTypeText {
color: red;
}
::v-deep .ant-drawer-header .ant-drawer-title{
font-weight: bold;
}
</style>