This commit is contained in:
shijing 2024-08-15 15:25:34 +08:00
parent 791edcbf4f
commit 06c3e107f0
1 changed files with 3 additions and 3 deletions

View File

@ -203,7 +203,6 @@ export default {
eqtype:{
type:String,
default: ''
}
},
},
data() {
@ -268,8 +267,9 @@ export default {
},
methods: {
getCateOptions() {
this.$API.em.ecate.list.req({page:0}).then(res => {
this.cateOptions = res
let that = this;
that.$API.em.ecate.list.req({page:0,type:that.eqtype}).then(res => {
that.cateOptions = res;
})
},
getBaseInfo() {