<j-search-select-tag placeholder="请选择专业" v-model="queryParam.majorId" dict="base_major_info where type=2,name,id"/> 我想在这里 dict="base_major_info where type=2,name,id" 多加上 dept_id =this.userId 怎么改
时间: 2024-04-26 22:26:51 浏览: 46
Vue的v-model的几种修饰符.lazy,.number和.trim的用法说明
5星 · 资源好评率100%
您可以将原来的 `dict="base_major_info where type=2,name,id"` 改为 `dict="base_major_info where type=2 and dept_id=${this.userId},name,id"`,其中 `${this.userId}` 是 JavaScript 中的模板字符串语法,用于将 `this.userId` 的值动态嵌入字符串中。
阅读全文