Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is running
Details
continuous-integration/drone/push Build is running
Details
commit
33b172fb66
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue