只做一种产品的网站,wordpress 移动端模板主题,祥云县外卖哪个网站,广州十大电商公司背景
有两个查询条件#xff1a;模块、功能点 想实现选择模块后#xff0c;点击功能点下拉框#xff0c;查询出对应模块下的功能点列表
查询
listQuery:
export default{return{listQuery:{//page:1,//limit:20,//如果想兼容按条件导出#xff0c;可以定义查询条件age:…背景
有两个查询条件模块、功能点 想实现选择模块后点击功能点下拉框查询出对应模块下的功能点列表
查询
listQuery:
export default{return{listQuery:{//page:1,//limit:20,//如果想兼容按条件导出可以定义查询条件age:undefined,sex:undefined},moduleOptions:null,functionPointOptions:null}
}
getModuleList(){return findModuleList(this.listQuery).then(response{this.moduleOptionsresponse.data[items]})
},
getFunctionPointList(){return findFunctionPointList(this.listQuery).then(response{this.functionPointOptionsresponse.data[items]})
}
级联查询
template el-form-item label级联查询 propsearchel-select v-modellistQuery.module placeholder模块 filterable remote :remote-methodgetModuleList clearable focus(event)getModuleList() stylewidth: 100%el-option v-foritem in moduleOptions :keyitem :labelitem :valueitem //el-selectel-select v-modellistQuery.function_point placeholder模块 filterable remote :remote-methodgetFunctionPointList clearable focus(event)getFunctionPointList() stylewidth: 100%el-option v-foritem in functionPointOptions :keyitem :labelitem :valueitem //el-select/el-form-item
/template