添加项目邮件模板时,收件人过滤条件去除RC和admin
continuous-integration/drone/push Build is passing Details

uat_us
wangxiaoshuang 2025-01-06 13:19:51 +08:00
parent 17ee60de81
commit b0529dca5f
2 changed files with 8 additions and 8 deletions

View File

@ -396,6 +396,12 @@ export default {
return false return false
}, },
}, },
UserTypeList: {
type: Array,
default() {
return []
},
},
}, },
data() { data() {
return { return {
@ -407,13 +413,6 @@ export default {
total: 0, total: 0,
} }
}, },
computed: {
UserTypeList() {
return this.$d.UserType.filter(
(item) => ![7, 31, 32, 21, 26, 27].includes(item.value)
)
},
},
mounted() { mounted() {
this.trialId = this.$route.query.trialId this.trialId = this.$route.query.trialId
this.getList() this.getList()

View File

@ -358,6 +358,7 @@
@getList="getList" @getList="getList"
:is-distinguish-criteria="isDistinguishCriteria" :is-distinguish-criteria="isDistinguishCriteria"
:isShow="isBtnShow" :isShow="isBtnShow"
:UserTypeList="UserTypeList"
@close="addVisible = false" @close="addVisible = false"
/> />
</div> </div>
@ -423,7 +424,7 @@ export default {
computed: { computed: {
UserTypeList() { UserTypeList() {
return this.$d.UserType.filter( return this.$d.UserType.filter(
(item) => ![7, 8, 31, 32, 21, 26, 27].includes(item.value) (item) => ![4, 7, 8, 31, 32, 21, 26, 27].includes(item.value)
) )
}, },
}, },