更新bug

This commit is contained in:
朱文强 2024-04-09 16:57:46 +08:00
parent 67bfb9981a
commit 6dd340a1da

View File

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