添加项目邮件模板时,收件人过滤条件去除RC和admin
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
17ee60de81
commit
b0529dca5f
|
@ -396,6 +396,12 @@ export default {
|
|||
return false
|
||||
},
|
||||
},
|
||||
UserTypeList: {
|
||||
type: Array,
|
||||
default() {
|
||||
return []
|
||||
},
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
@ -407,13 +413,6 @@ export default {
|
|||
total: 0,
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
UserTypeList() {
|
||||
return this.$d.UserType.filter(
|
||||
(item) => ![7, 31, 32, 21, 26, 27].includes(item.value)
|
||||
)
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
this.trialId = this.$route.query.trialId
|
||||
this.getList()
|
||||
|
|
|
@ -358,6 +358,7 @@
|
|||
@getList="getList"
|
||||
:is-distinguish-criteria="isDistinguishCriteria"
|
||||
:isShow="isBtnShow"
|
||||
:UserTypeList="UserTypeList"
|
||||
@close="addVisible = false"
|
||||
/>
|
||||
</div>
|
||||
|
@ -423,7 +424,7 @@ export default {
|
|||
computed: {
|
||||
UserTypeList() {
|
||||
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)
|
||||
)
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue