diff --git a/src/api/ManageApi/index.js b/src/api/ManageApi/index.js
index cdf6168..8602b60 100644
--- a/src/api/ManageApi/index.js
+++ b/src/api/ManageApi/index.js
@@ -397,7 +397,6 @@ export function getqyrzById(id) {
});
}
//企业入驻信息
-// 修改信息
// 根据项目ID分页查询所有入驻企业
export function getqyBasicInformationPage(params) {
return request({
@@ -427,6 +426,15 @@ export function deleteqyBasicInformation(idList) {
});
}
+//月度进展信息
+//根据项目ID查询所有数据
+export function getMonthInformationPage(params) {
+ return request({
+ url: '/gysl/projectProgress/page',
+ method: 'get',
+ params
+ });
+}
//建筑信息表
//新增数据
diff --git a/src/layout/components/Navbar.vue b/src/layout/components/Navbar.vue
index 800b560..1dd0caf 100644
--- a/src/layout/components/Navbar.vue
+++ b/src/layout/components/Navbar.vue
@@ -34,7 +34,6 @@ import Breadcrumb from '@/components/Breadcrumb'
import TopNav from '@/components/TopNav'
import bearicon from '@/components/bearicon'
import { checkPermi, checkRole } from "@/utils/permission"
-import { name } from 'mars2d'
export default {
components: {
diff --git a/src/views/components/ProjectDetails/Companyenter.vue b/src/views/components/ProjectDetails/Companyenter.vue
index 6e74055..dacfb5f 100644
--- a/src/views/components/ProjectDetails/Companyenter.vue
+++ b/src/views/components/ProjectDetails/Companyenter.vue
@@ -420,7 +420,7 @@ export default {
.block {
width: 98%;
display: flex;
- justify-content: space-between;
+ justify-content: right;
margin-top: 1rem;
}
\ No newline at end of file
diff --git a/src/views/components/ProjectDetails/Models.vue b/src/views/components/ProjectDetails/Models.vue
index 02c1c29..417a6ae 100644
--- a/src/views/components/ProjectDetails/Models.vue
+++ b/src/views/components/ProjectDetails/Models.vue
@@ -93,7 +93,7 @@ export default {
wysmxInfo: {
immediate: true,
handler(newVal) {
- console.log('接收到的 wysmxInfo 数据:', newVal);
+ // console.log('接收到的 wysmxInfo 数据:', newVal);
this.form = newVal.map(item => ({
// id: item.id,
xmId: item.xmId,
@@ -139,7 +139,7 @@ export default {
}
},
created() {
- console.log('wysmxInfo 内容:', this.wysmxInfo); // 初始化时打印数据
+ // console.log('wysmxInfo 内容:', this.wysmxInfo); // 初始化时打印数据
}
};
diff --git a/src/views/components/ProjectDetails/Months.vue b/src/views/components/ProjectDetails/Months.vue
index a70c8f2..9577592 100644
--- a/src/views/components/ProjectDetails/Months.vue
+++ b/src/views/components/ProjectDetails/Months.vue
@@ -24,19 +24,22 @@
-
+
{{ scope.row.monthlyInvestment }}
-
+
{{ scope.row.cumulativeInvestment }}
-
+
{{ scope.row.cumulativeArea }}
@@ -48,15 +51,18 @@
- 保存
- 编辑
- 删除
+ 保存
+ 编辑
+ 删除
-
-
-
-
模型信息填报
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 提交
- 重置
- 取消
-
-
-
-
+
\ No newline at end of file
diff --git a/src/views/components/zhengwuxinxi/zhengwuxinxi.vue b/src/views/components/zhengwuxinxi/zhengwuxinxi.vue
index 0bdc0a8..05ef22e 100644
--- a/src/views/components/zhengwuxinxi/zhengwuxinxi.vue
+++ b/src/views/components/zhengwuxinxi/zhengwuxinxi.vue
@@ -223,10 +223,10 @@ export default {
endTime: this.formatMonth(this.queryParams.endTime)
};
- console.log('发送前的查询参数:', JSON.stringify(params, null, 2));
+ // console.log('发送前的查询参数:', JSON.stringify(params, null, 2));
getBasicInformationPage(params).then((response) => {
- console.log('API响应:', response);
+ // console.log('API响应:', response);
this.postList = response.data.records;
this.total = response.data.total;
this.loading = false;
diff --git a/src/views/evalute/supervision/index.vue b/src/views/evalute/supervision/index.vue
index 0fc9fd0..5baa6de 100644
--- a/src/views/evalute/supervision/index.vue
+++ b/src/views/evalute/supervision/index.vue
@@ -310,12 +310,10 @@ export default {
});
},
// 处理弹框关闭
- // 处理弹框关闭
handleClose(done) {
this.dialogVisible = false;
this.isView = false;
this.isReminder = 1; // 重置为默认值
-
// 完整重置表单数据
this.ruleForm = {
rulesName: "",
diff --git a/src/views/manage-add/index.vue b/src/views/manage-add/index.vue
index 59c3585..a582a4e 100644
--- a/src/views/manage-add/index.vue
+++ b/src/views/manage-add/index.vue
@@ -46,7 +46,7 @@
-
+
@@ -60,7 +60,7 @@
@@ -108,7 +108,7 @@ import Months from '@/views/components/ProjectDetails/Months.vue';
import Programme from '@/views/components/ProjectDetails/Programme.vue';
import Projectgift from '@/views/components/ProjectDetails/Projectgift.vue';
import Projectpicture from '@/views/components/ProjectDetails/Projectpicture.vue';
-import Projectpicturetwo22 from '@/views/components/ProjectDetails/Projectpicturetwo22.vue';
+import Projectdraw from '@/views/components/ProjectDetails/Projectdraw.vue';
import Others from '@/views/components/ProjectDetails/Others.vue';
import Supericon from '@/views/components/ProjectDetails/supervisionicon.vue';
import { checkPermi, checkRole } from "@/utils/permission";
@@ -127,7 +127,7 @@ export default {
Programme,
Projectgift,
Projectpicture,
- Projectpicturetwo22,
+ Projectdraw,
Others,
Supericon
},
diff --git a/src/views/manage-info/index.vue b/src/views/manage-info/index.vue
index 919bce5..31eea8d 100644
--- a/src/views/manage-info/index.vue
+++ b/src/views/manage-info/index.vue
@@ -46,7 +46,7 @@
-
+
@@ -60,7 +60,7 @@
@@ -106,7 +106,7 @@ import Months from '@/views/components/ProjectDetails/Months.vue';
import Programme from '@/views/components/ProjectDetails/Programme.vue';
import Projectgift from '@/views/components/ProjectDetails/Projectgift.vue';
import Projectpicture from '@/views/components/ProjectDetails/Projectpicture.vue';
-import Projectpicturetwo22 from '@/views/components/ProjectDetails/Projectpicturetwo22.vue';
+import Projectdraw from '@/views/components/ProjectDetails/Projectdraw.vue';
import Others from '@/views/components/ProjectDetails/Others.vue';
import { checkPermi, checkRole } from "@/utils/permission";
import { getBasicInformationById, fillBasicInformation, auditBasicInformation, tempBasicInformation, getqyBasicInformationPage } from '@/api/ManageApi/index';
@@ -124,7 +124,7 @@ export default {
Programme,
Projectgift,
Projectpicture,
- Projectpicturetwo22,
+ Projectdraw,
Others,
},
data() {
@@ -228,7 +228,7 @@ export default {
checkPermi,
checkRole,
loadData() {
- console.log('Loading data for project ID:', this.projectId);
+ // console.log('Loading data for project ID:', this.projectId);
this.loading = true; // 添加加载状态
getBasicInformationById(this.projectId).then(response => {
const data = response.data;
@@ -240,7 +240,7 @@ export default {
this.projectRemarks = data.projectRemarks;
// 确保数据已加载
- console.log('Loaded qyrzInformation111111111111:', this.qyrzInformation);
+ // console.log('Loaded qyrzInformation111111111111:', this.qyrzInformation);
}).finally(() => {
this.loading = false;
});
@@ -291,7 +291,7 @@ export default {
tempBasicInformation(tempData)
.then(response => {
this.$message.success('暂存成功');
- console.log('暂存数据:', response);
+ // console.log('暂存数据:', response);
})
.catch(error => {
this.$message.error('暂存失败');
@@ -308,7 +308,7 @@ export default {
const response = await getqyBasicInformationPage(params);
return response.data.total || 0; // 返回总数,默认为0
} catch (error) {
- console.error('获取企业总数失败:', error);
+ // console.error('获取企业总数失败:', error);
return 0;
}
},
diff --git a/src/views/orientedtwo/bqspan/index.vue b/src/views/orientedtwo/bqspan/index.vue
index 00522f2..cdbb64b 100644
--- a/src/views/orientedtwo/bqspan/index.vue
+++ b/src/views/orientedtwo/bqspan/index.vue
@@ -69,15 +69,15 @@
-
+
-
+
{{ detailData.name }}
-
+
{{ detailData.tyshxydm }}
@@ -85,12 +85,12 @@
-
+
{{ detailData.bqdm }}
-
+
{{ detailData.state }}
@@ -98,12 +98,38 @@
-
+
{{ detailData.yhlx }}
-
+
+ {{ detailData.bqzs }}
+
+
+
+
+
+
+
+ {{ detailData.bqzt }}
+
+
+
+
+ {{ detailData.bqzs }}
+
+
+
+
+
+
+
+ {{ detailData.bqzt }}
+
+
+
+
{{ detailData.bqzs }}
@@ -111,12 +137,12 @@
-
+
{{ detailData.bqzt }}
-
+
{{ detailData.bqzs }}
@@ -173,7 +199,7 @@ export default {
tyshxydm: '123456789012345678',
bqdm: 'DEFAULT',
state: '有效',
- yhlx: '默认用户类型',
+ yhlx: '企业用户',
bqzs: '默认标签注释',
bqzt: '默认标签状态'
}
diff --git a/src/views/tool/1.vue b/src/views/tool/1.vue
deleted file mode 100644
index 5c4a541..0000000
--- a/src/views/tool/1.vue
+++ /dev/null
@@ -1,47 +0,0 @@
-upload: {
- open: false,
- isUploading: false,
- headers: { Authorization: "Bearer " + getToken() },
- url: process.env.VUE_APP_BASE_API + "/gysl/ml/importMl"
- }
-
- /** 导出按钮操作 */
- handleExport() {
- console.log('【导出参数】', JSON.stringify(this.queryParams, null, 2));
- this.$modal.confirm('确认导出所有数据?').then(() => {
- return exportCatalog(this.queryParams);
- }).then(response => {
- this.download(response.msg);
- }).catch(error => {
- console.error('导出失败:', error);
- });
- },
-
- /** 导入按钮操作 */
- handleImport() {
- this.upload.open = true;
- },
-
- /** 下载模板操作 */
- importTemplate() {
- this.download("/gysl/ml/importTemplate", {}, `目录导入模板_${new Date().getTime()}.xlsx`);
- },
-
- // 文件上传中处理
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = true;
- },
-
- // 文件上传成功处理
- handleFileSuccess(response, file, fileList) {
- this.upload.open = false;
- this.upload.isUploading = false;
- this.$refs.upload.clearFiles();
- this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
- this.getList();
- },
-
- // 提交上传文件
- submitFileForm() {
- this.$refs.upload.submit();
- }
\ No newline at end of file