Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is running

This commit is contained in:
2024-11-11 15:11:58 +08:00
2 changed files with 16 additions and 2 deletions
@@ -61,7 +61,7 @@
>
<el-select v-model="searchData.ToUserType" clearable class="mr">
<el-option
v-for="item of $d.UserType"
v-for="item of UserTypeList"
:key="`ToUserTypeList${item.label}`"
:label="item.label"
:value="item.value"
@@ -407,6 +407,13 @@ 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()
@@ -42,7 +42,7 @@
>
<el-select v-model="searchData.ToUserType" clearable class="mr">
<el-option
v-for="item of $d.UserType"
v-for="item of UserTypeList"
:key="`ToUserTypeList${item.label}`"
:label="item.label"
:value="item.value"
@@ -422,6 +422,13 @@ export default {
})
},
},
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()