From 76239bde9b61dde775aa66a75aeb7c1560ae7fb2 Mon Sep 17 00:00:00 2001
From: 1012414140@qq.com <1012414140@qq.com>
Date: 星期三, 24 十二月 2025 15:38:30 +0800
Subject: [PATCH] feat: 地图数据
---
src/components/page/leaderShow/Dialog/zhipaiForm.vue | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/components/page/leaderShow/Dialog/zhipaiForm.vue b/src/components/page/leaderShow/Dialog/zhipaiForm.vue
index f2f4a43..0554049 100644
--- a/src/components/page/leaderShow/Dialog/zhipaiForm.vue
+++ b/src/components/page/leaderShow/Dialog/zhipaiForm.vue
@@ -61,9 +61,9 @@
data() {
return {
pageConfig:{
- saveData:this.$systemconfig.basePath + '/ticket/save2',
- weizhangData:this.$systemconfig.basePath + '/violationType/findAll',
- zhixingrenData:this.$systemconfig.basePath + '/user/findAll',
+ saveData:this.$systemconfig.basePath + '/ffzf/ticket/save2',
+ weizhangData:this.$systemconfig.basePath + '/ffzf/violationtype/findAll',
+ zhixingrenData:this.$systemconfig.basePath + '/ffzf/user/findAll',
},
weizhangOptions:[],
zhixingrenOptions:[],
@@ -108,10 +108,10 @@
initData() {
this.dialogVisible = true
this.$byutil.postData4(this,this.pageConfig.weizhangData,null,res => {
- this.weizhangOptions = res.obj
+ this.weizhangOptions = res.data
})
this.$byutil.postData4(this,this.pageConfig.zhixingrenData,null,res => {
- this.zhixingrenOptions = res.obj
+ this.zhixingrenOptions = res.data
})
},
submitForm(formName) {
@@ -120,7 +120,7 @@
this.$byutil.postData(this,this.pageConfig.saveData,this.zhipaiForm,res => {
this.$refs[formName].resetFields();
this.dialogVisible = false
- this.$message.success(res.message)
+ this.$message.success(res.msg)
})
}
})
--
Gitblit v1.9.1