Merge branch 'master' into home-add-map

This commit is contained in:
DESKTOP-FUDKNA8\znjsz 2024-04-11 16:25:05 +08:00
commit 568f71310e

View File

@ -2,7 +2,7 @@
* @Author: zwq
* @Date: 2022-08-24 11:19:43
* @LastEditors: zwq
* @LastEditTime: 2024-04-02 09:34:56
* @LastEditTime: 2024-04-09 16:56:16
* @Description:
*/
import { listData } from "@/api/system/dict/data"; //数据字典接口
@ -14,7 +14,7 @@ export default {
createURL: '', //新增接口
updateURL: '', //编辑提交接口
infoURL: '', //编辑时获取单条数据接口
codeURL: '', //获取code接口返回结果为dataForm.code字段
codeURL: null, //获取code接口返回结果为dataForm.code字段
optionArrUrl: [], //需要获取下拉框的方法数组
optionArr: {}, //需要获取下拉框的方法数组的返回结果
dictNameList: [], //数据字典name数组
@ -35,7 +35,7 @@ export default {
if (this.urlOptions.optionArrUrl.length > 0) {
this.getArr()
}
if (this.urlOptions.dictNameList > 0) {
if (this.urlOptions.dictNameList.length > 0) {
this.getDict()
}
this.$nextTick(() => {
@ -78,7 +78,7 @@ export default {
},
/** 查询字典数据列表 */
getDict() {
this.dictNameList.forEach((item,index)=>{
this.urlOptions.dictNameList.forEach((item,index)=>{
const queryParams = {
pageNo: 1,
pageSize: 99,