1
continuous-integration/drone/push Build is passing Details

uat_us
wangxiaoshuang 2024-11-04 17:32:46 +08:00
parent 7a5693a468
commit 0c90ffb514
2 changed files with 5 additions and 5 deletions

View File

@ -59,7 +59,7 @@
:label="$t('trials:emailManageCfg:title:toUserTypeList')"
prop="ToUserTypeList"
>
<el-select v-model="searchData.ToUserTypeList" clearable class="mr">
<el-select v-model="searchData.ToUserType" clearable class="mr">
<el-option
v-for="item of $d.UserType"
:key="`ToUserTypeList${item.label}`"
@ -363,7 +363,7 @@ const searchDataDefault = () => {
PageSize: 20,
BusinessScenarioEnum: null,
CriterionTypeEnum: null,
ToUserTypeList: null,
ToUserType: null,
EmailUrgentEnum: null,
}
}
@ -422,7 +422,7 @@ export default {
},
getEmailCron(str) {
let a = str.split(' ')
if (a[3].indexOf('/') > -1) {
if (a[3] && a[3].indexOf('/') > -1) {
return a[3].split('/')[1]
}
return ''

View File

@ -41,7 +41,7 @@
prop="ToUserTypeList"
>
<el-select
v-model="searchData.ToUserTypeList"
v-model="searchData.ToUserType"
clearable
class="mr"
>
@ -386,7 +386,7 @@ const searchDataDefault = () => {
BusinessScenarioEnum: null,
CriterionTypeEnum: null,
TrialReadingCriterionId: null,
ToUserTypeList: null,
ToUserType: null,
IsEnable: null,
}
}