1
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
7a5693a468
commit
0c90ffb514
|
@ -59,7 +59,7 @@
|
||||||
:label="$t('trials:emailManageCfg:title:toUserTypeList')"
|
:label="$t('trials:emailManageCfg:title:toUserTypeList')"
|
||||||
prop="ToUserTypeList"
|
prop="ToUserTypeList"
|
||||||
>
|
>
|
||||||
<el-select v-model="searchData.ToUserTypeList" clearable class="mr">
|
<el-select v-model="searchData.ToUserType" clearable class="mr">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item of $d.UserType"
|
v-for="item of $d.UserType"
|
||||||
:key="`ToUserTypeList${item.label}`"
|
:key="`ToUserTypeList${item.label}`"
|
||||||
|
@ -363,7 +363,7 @@ const searchDataDefault = () => {
|
||||||
PageSize: 20,
|
PageSize: 20,
|
||||||
BusinessScenarioEnum: null,
|
BusinessScenarioEnum: null,
|
||||||
CriterionTypeEnum: null,
|
CriterionTypeEnum: null,
|
||||||
ToUserTypeList: null,
|
ToUserType: null,
|
||||||
EmailUrgentEnum: null,
|
EmailUrgentEnum: null,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -422,7 +422,7 @@ export default {
|
||||||
},
|
},
|
||||||
getEmailCron(str) {
|
getEmailCron(str) {
|
||||||
let a = str.split(' ')
|
let a = str.split(' ')
|
||||||
if (a[3].indexOf('/') > -1) {
|
if (a[3] && a[3].indexOf('/') > -1) {
|
||||||
return a[3].split('/')[1]
|
return a[3].split('/')[1]
|
||||||
}
|
}
|
||||||
return ''
|
return ''
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
prop="ToUserTypeList"
|
prop="ToUserTypeList"
|
||||||
>
|
>
|
||||||
<el-select
|
<el-select
|
||||||
v-model="searchData.ToUserTypeList"
|
v-model="searchData.ToUserType"
|
||||||
clearable
|
clearable
|
||||||
class="mr"
|
class="mr"
|
||||||
>
|
>
|
||||||
|
@ -386,7 +386,7 @@ const searchDataDefault = () => {
|
||||||
BusinessScenarioEnum: null,
|
BusinessScenarioEnum: null,
|
||||||
CriterionTypeEnum: null,
|
CriterionTypeEnum: null,
|
||||||
TrialReadingCriterionId: null,
|
TrialReadingCriterionId: null,
|
||||||
ToUserTypeList: null,
|
ToUserType: null,
|
||||||
IsEnable: null,
|
IsEnable: null,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue