合并
This commit is contained in:
@ -5,7 +5,7 @@ VITE_APP_TITLE = 新能源项目管理平台
|
|||||||
VITE_APP_ENV = 'development'
|
VITE_APP_ENV = 'development'
|
||||||
|
|
||||||
# 开发环境
|
# 开发环境
|
||||||
VITE_APP_BASE_API = 'http://192.168.110.119:8899'
|
VITE_APP_BASE_API = 'http://192.168.110.110:8899'
|
||||||
|
|
||||||
# 无人机接口地址
|
# 无人机接口地址
|
||||||
|
|
||||||
|
63
src/api/system/landTransfer/enterRoad/index.ts
Normal file
63
src/api/system/landTransfer/enterRoad/index.ts
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
import request from '@/utils/request';
|
||||||
|
import { AxiosPromise } from 'axios';
|
||||||
|
import { EnterRoadVO, EnterRoadForm, EnterRoadQuery } from '@/api/land/enterRoad/types';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询进场道路信息列表
|
||||||
|
* @param query
|
||||||
|
* @returns {*}
|
||||||
|
*/
|
||||||
|
|
||||||
|
export const listEnterRoad = (query?: EnterRoadQuery): AxiosPromise<EnterRoadVO[]> => {
|
||||||
|
return request({
|
||||||
|
url: '/land/enterRoad/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询进场道路信息详细
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
export const getEnterRoad = (id: string | number): AxiosPromise<EnterRoadVO> => {
|
||||||
|
return request({
|
||||||
|
url: '/land/enterRoad/' + id,
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增进场道路信息
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
export const addEnterRoad = (data: EnterRoadForm) => {
|
||||||
|
return request({
|
||||||
|
url: '/land/enterRoad',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改进场道路信息
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
export const updateEnterRoad = (data: EnterRoadForm) => {
|
||||||
|
return request({
|
||||||
|
url: '/land/enterRoad',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除进场道路信息
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
export const delEnterRoad = (id: string | number | Array<string | number>) => {
|
||||||
|
return request({
|
||||||
|
url: '/land/enterRoad/' + id,
|
||||||
|
method: 'delete'
|
||||||
|
});
|
||||||
|
};
|
146
src/api/system/landTransfer/enterRoad/types.ts
Normal file
146
src/api/system/landTransfer/enterRoad/types.ts
Normal file
@ -0,0 +1,146 @@
|
|||||||
|
export interface EnterRoadVO {
|
||||||
|
/**
|
||||||
|
* 主键ID
|
||||||
|
*/
|
||||||
|
id: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目ID
|
||||||
|
*/
|
||||||
|
projectId: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 道路编号
|
||||||
|
*/
|
||||||
|
roadCode: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 道路名称
|
||||||
|
*/
|
||||||
|
roadName: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计新建道路长度(米)
|
||||||
|
*/
|
||||||
|
designCreateLength: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计改扩建长度(米)
|
||||||
|
*/
|
||||||
|
designUpdateLength: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 需流转总长度(米)
|
||||||
|
*/
|
||||||
|
changeLength: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 需要流转总面积
|
||||||
|
*/
|
||||||
|
changeArea: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 对应地块ID
|
||||||
|
*/
|
||||||
|
landBlockId: string | number;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface EnterRoadForm extends BaseEntity {
|
||||||
|
/**
|
||||||
|
* 主键ID
|
||||||
|
*/
|
||||||
|
id?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目ID
|
||||||
|
*/
|
||||||
|
projectId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 道路编号
|
||||||
|
*/
|
||||||
|
roadCode?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 道路名称
|
||||||
|
*/
|
||||||
|
roadName?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计新建道路长度(米)
|
||||||
|
*/
|
||||||
|
designCreateLength?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计改扩建长度(米)
|
||||||
|
*/
|
||||||
|
designUpdateLength?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 需流转总长度(米)
|
||||||
|
*/
|
||||||
|
changeLength?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 需要流转总面积
|
||||||
|
*/
|
||||||
|
changeArea?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 对应地块ID
|
||||||
|
*/
|
||||||
|
landBlockId?: string | number;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface EnterRoadQuery extends PageQuery {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目ID
|
||||||
|
*/
|
||||||
|
projectId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 道路编号
|
||||||
|
*/
|
||||||
|
roadCode?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 道路名称
|
||||||
|
*/
|
||||||
|
roadName?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计新建道路长度(米)
|
||||||
|
*/
|
||||||
|
designCreateLength?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计改扩建长度(米)
|
||||||
|
*/
|
||||||
|
designUpdateLength?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 需流转总长度(米)
|
||||||
|
*/
|
||||||
|
changeLength?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 需要流转总面积
|
||||||
|
*/
|
||||||
|
changeArea?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 对应地块ID
|
||||||
|
*/
|
||||||
|
landBlockId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 日期范围参数
|
||||||
|
*/
|
||||||
|
params?: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
78
src/api/system/landTransfer/landBlock/index.ts
Normal file
78
src/api/system/landTransfer/landBlock/index.ts
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
import request from '@/utils/request';
|
||||||
|
import { AxiosPromise } from 'axios';
|
||||||
|
import { LandBlockVO, LandBlockForm, LandBlockQuery } from '@/api/system/landBlock/types';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询地块信息列表
|
||||||
|
* @param query
|
||||||
|
* @returns {*}
|
||||||
|
*/
|
||||||
|
// 关联方阵
|
||||||
|
export const subMatrix = (id): AxiosPromise<any> => {
|
||||||
|
return request({
|
||||||
|
url: '/project/project/list/sub/matrix/' + id,
|
||||||
|
method: 'get'
|
||||||
|
// params: query
|
||||||
|
});
|
||||||
|
};
|
||||||
|
// 关联方阵
|
||||||
|
export const LandUnit = (data): AxiosPromise<any> => {
|
||||||
|
return request({
|
||||||
|
url: '/land/landBlockUnitProject/LandUnit',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
export const listLandBlock = (query?: LandBlockQuery): AxiosPromise<LandBlockVO[]> => {
|
||||||
|
return request({
|
||||||
|
url: '/land/landBlock/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询地块信息详细
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
export const getLandBlock = (id: string | number): AxiosPromise<LandBlockVO> => {
|
||||||
|
return request({
|
||||||
|
url: '/land/landBlock/' + id,
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增地块信息
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
export const addLandBlock = (data: LandBlockForm) => {
|
||||||
|
return request({
|
||||||
|
url: '/land/landBlock',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改地块信息
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
export const updateLandBlock = (data: LandBlockForm) => {
|
||||||
|
return request({
|
||||||
|
url: '/land/landBlock',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除地块信息
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
export const delLandBlock = (id: string | number | Array<string | number>) => {
|
||||||
|
return request({
|
||||||
|
url: '/land/landBlock/' + id,
|
||||||
|
method: 'delete'
|
||||||
|
});
|
||||||
|
};
|
141
src/api/system/landTransfer/landBlock/types.ts
Normal file
141
src/api/system/landTransfer/landBlock/types.ts
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
export interface LandBlockVO {
|
||||||
|
/**
|
||||||
|
* 主键ID
|
||||||
|
*/
|
||||||
|
id: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目ID
|
||||||
|
*/
|
||||||
|
projectId: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块编号
|
||||||
|
*/
|
||||||
|
landCode: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块名称
|
||||||
|
*/
|
||||||
|
landName: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 所属村委会
|
||||||
|
*/
|
||||||
|
villageCommittee: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计面积(亩)
|
||||||
|
*/
|
||||||
|
designArea: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块数
|
||||||
|
*/
|
||||||
|
blockCount: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 农户数
|
||||||
|
*/
|
||||||
|
farmerCount: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 备注
|
||||||
|
*/
|
||||||
|
remark: string;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface LandBlockForm extends BaseEntity {
|
||||||
|
/**
|
||||||
|
* 主键ID
|
||||||
|
*/
|
||||||
|
id?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目ID
|
||||||
|
*/
|
||||||
|
projectId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块编号
|
||||||
|
*/
|
||||||
|
landCode?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块名称
|
||||||
|
*/
|
||||||
|
landName?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 所属村委会
|
||||||
|
*/
|
||||||
|
villageCommittee?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计面积(亩)
|
||||||
|
*/
|
||||||
|
designArea?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块数
|
||||||
|
*/
|
||||||
|
blockCount?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 农户数
|
||||||
|
*/
|
||||||
|
farmerCount?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 备注
|
||||||
|
*/
|
||||||
|
remark?: string;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface LandBlockQuery extends PageQuery {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目ID
|
||||||
|
*/
|
||||||
|
projectId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块编号
|
||||||
|
*/
|
||||||
|
landCode?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块名称
|
||||||
|
*/
|
||||||
|
landName?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 所属村委会
|
||||||
|
*/
|
||||||
|
villageCommittee?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计面积(亩)
|
||||||
|
*/
|
||||||
|
designArea?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块数
|
||||||
|
*/
|
||||||
|
blockCount?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 农户数
|
||||||
|
*/
|
||||||
|
farmerCount?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 日期范围参数
|
||||||
|
*/
|
||||||
|
params?: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
71
src/api/system/landTransfer/landTransferLedger/index.ts
Normal file
71
src/api/system/landTransfer/landTransferLedger/index.ts
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
import request from '@/utils/request';
|
||||||
|
import { AxiosPromise } from 'axios';
|
||||||
|
import { LandTransferLedgerVO, LandTransferLedgerForm, LandTransferLedgerQuery } from '@/api/land/landTransferLedger/types';
|
||||||
|
// 土地流转 展开方阵
|
||||||
|
export const ListUnitLandTransferLedger = (query?: LandTransferLedgerQuery): AxiosPromise<LandTransferLedgerVO[]> => {
|
||||||
|
return request({
|
||||||
|
url: '/land/landTransferLedger/listUnit',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询项目土地流转台账列表
|
||||||
|
* @param query
|
||||||
|
* @returns {*}
|
||||||
|
*/
|
||||||
|
|
||||||
|
export const listLandTransferLedger = (query?: LandTransferLedgerQuery): AxiosPromise<LandTransferLedgerVO[]> => {
|
||||||
|
return request({
|
||||||
|
url: '/land/landTransferLedger/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询项目土地流转台账详细
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
export const getLandTransferLedger = (id: string | number): AxiosPromise<LandTransferLedgerVO> => {
|
||||||
|
return request({
|
||||||
|
url: '/land/landTransferLedger/' + id,
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增项目土地流转台账
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
export const addLandTransferLedger = (data: LandTransferLedgerForm) => {
|
||||||
|
return request({
|
||||||
|
url: '/land/landTransferLedger',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改项目土地流转台账
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
export const updateLandTransferLedger = (data: LandTransferLedgerForm) => {
|
||||||
|
return request({
|
||||||
|
url: '/land/landTransferLedger',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除项目土地流转台账
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
export const delLandTransferLedger = (id: string | number | Array<string | number>) => {
|
||||||
|
return request({
|
||||||
|
url: '/land/landTransferLedger/' + id,
|
||||||
|
method: 'delete'
|
||||||
|
});
|
||||||
|
};
|
266
src/api/system/landTransfer/landTransferLedger/types.ts
Normal file
266
src/api/system/landTransfer/landTransferLedger/types.ts
Normal file
@ -0,0 +1,266 @@
|
|||||||
|
export interface LandTransferLedgerVO {
|
||||||
|
/**
|
||||||
|
* 主键ID
|
||||||
|
*/
|
||||||
|
id: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目ID
|
||||||
|
*/
|
||||||
|
projectId: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 土地类型
|
||||||
|
*/
|
||||||
|
landType: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块ID
|
||||||
|
*/
|
||||||
|
landBlockId: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 进场道路ID
|
||||||
|
*/
|
||||||
|
enterRoadId: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计面积
|
||||||
|
*/
|
||||||
|
designArea: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 责任人
|
||||||
|
*/
|
||||||
|
responsiblePerson: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 预计完成时间
|
||||||
|
*/
|
||||||
|
expectedFinishDate: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 已流转面积
|
||||||
|
*/
|
||||||
|
transferAea: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 流转比例(百分比)
|
||||||
|
*/
|
||||||
|
transferRatio: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 土地租金(元)
|
||||||
|
*/
|
||||||
|
landRent: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 青苗赔偿(元)
|
||||||
|
*/
|
||||||
|
seedlingCompensation: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 总金额(元)
|
||||||
|
*/
|
||||||
|
totalAmount: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 流转状态
|
||||||
|
*/
|
||||||
|
transferStatus: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态说明
|
||||||
|
*/
|
||||||
|
statusDescription: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 问题总结
|
||||||
|
*/
|
||||||
|
issueSummary: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 下一步策略
|
||||||
|
*/
|
||||||
|
nextStrategy: string;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface LandTransferLedgerForm extends BaseEntity {
|
||||||
|
/**
|
||||||
|
* 主键ID
|
||||||
|
*/
|
||||||
|
id?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目ID
|
||||||
|
*/
|
||||||
|
projectId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 土地类型
|
||||||
|
*/
|
||||||
|
landType?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块ID
|
||||||
|
*/
|
||||||
|
landBlockId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 进场道路ID
|
||||||
|
*/
|
||||||
|
enterRoadId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计面积
|
||||||
|
*/
|
||||||
|
designArea?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 责任人
|
||||||
|
*/
|
||||||
|
responsiblePerson?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 预计完成时间
|
||||||
|
*/
|
||||||
|
expectedFinishDate?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 已流转面积
|
||||||
|
*/
|
||||||
|
transferAea?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 流转比例(百分比)
|
||||||
|
*/
|
||||||
|
transferRatio?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 土地租金(元)
|
||||||
|
*/
|
||||||
|
landRent?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 青苗赔偿(元)
|
||||||
|
*/
|
||||||
|
seedlingCompensation?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 总金额(元)
|
||||||
|
*/
|
||||||
|
totalAmount?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 流转状态
|
||||||
|
*/
|
||||||
|
transferStatus?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态说明
|
||||||
|
*/
|
||||||
|
statusDescription?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 问题总结
|
||||||
|
*/
|
||||||
|
issueSummary?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 下一步策略
|
||||||
|
*/
|
||||||
|
nextStrategy?: string;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface LandTransferLedgerQuery extends PageQuery {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目ID
|
||||||
|
*/
|
||||||
|
projectId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 土地类型
|
||||||
|
*/
|
||||||
|
landType?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块ID
|
||||||
|
*/
|
||||||
|
landBlockId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 进场道路ID
|
||||||
|
*/
|
||||||
|
enterRoadId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计面积
|
||||||
|
*/
|
||||||
|
designArea?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 责任人
|
||||||
|
*/
|
||||||
|
responsiblePerson?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 预计完成时间
|
||||||
|
*/
|
||||||
|
expectedFinishDate?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 已流转面积
|
||||||
|
*/
|
||||||
|
transferAea?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 流转比例(百分比)
|
||||||
|
*/
|
||||||
|
transferRatio?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 土地租金(元)
|
||||||
|
*/
|
||||||
|
landRent?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 青苗赔偿(元)
|
||||||
|
*/
|
||||||
|
seedlingCompensation?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 总金额(元)
|
||||||
|
*/
|
||||||
|
totalAmount?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 流转状态
|
||||||
|
*/
|
||||||
|
transferStatus?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态说明
|
||||||
|
*/
|
||||||
|
statusDescription?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 问题总结
|
||||||
|
*/
|
||||||
|
issueSummary?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 下一步策略
|
||||||
|
*/
|
||||||
|
nextStrategy?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 日期范围参数
|
||||||
|
*/
|
||||||
|
params?: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
63
src/api/system/landTransfer/nonTransferLedger/index.ts
Normal file
63
src/api/system/landTransfer/nonTransferLedger/index.ts
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
import request from '@/utils/request';
|
||||||
|
import { AxiosPromise } from 'axios';
|
||||||
|
import { NonTransferLedgerVO, NonTransferLedgerForm, NonTransferLedgerQuery } from '@/api/land/nonTransferLedger/types';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询不流转台账列表
|
||||||
|
* @param query
|
||||||
|
* @returns {*}
|
||||||
|
*/
|
||||||
|
|
||||||
|
export const listNonTransferLedger = (query?: NonTransferLedgerQuery): AxiosPromise<NonTransferLedgerVO[]> => {
|
||||||
|
return request({
|
||||||
|
url: '/land/nonTransferLedger/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询不流转台账详细
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
export const getNonTransferLedger = (id: string | number): AxiosPromise<NonTransferLedgerVO> => {
|
||||||
|
return request({
|
||||||
|
url: '/land/nonTransferLedger/' + id,
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增不流转台账
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
export const addNonTransferLedger = (data: NonTransferLedgerForm) => {
|
||||||
|
return request({
|
||||||
|
url: '/land/nonTransferLedger',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改不流转台账
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
export const updateNonTransferLedger = (data: NonTransferLedgerForm) => {
|
||||||
|
return request({
|
||||||
|
url: '/land/nonTransferLedger',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除不流转台账
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
export const delNonTransferLedger = (id: string | number | Array<string | number>) => {
|
||||||
|
return request({
|
||||||
|
url: '/land/nonTransferLedger/' + id,
|
||||||
|
method: 'delete'
|
||||||
|
});
|
||||||
|
};
|
161
src/api/system/landTransfer/nonTransferLedger/types.ts
Normal file
161
src/api/system/landTransfer/nonTransferLedger/types.ts
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
export interface NonTransferLedgerVO {
|
||||||
|
/**
|
||||||
|
* 主键ID
|
||||||
|
*/
|
||||||
|
id: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目ID
|
||||||
|
*/
|
||||||
|
projectId: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 土地类型
|
||||||
|
*/
|
||||||
|
landType: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块ID
|
||||||
|
*/
|
||||||
|
landBlockId: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 进场道路ID
|
||||||
|
*/
|
||||||
|
enterRoadId: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计面积
|
||||||
|
*/
|
||||||
|
designArea: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 不签合同面积(亩)
|
||||||
|
*/
|
||||||
|
noContractArea: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 不签合同原因
|
||||||
|
*/
|
||||||
|
noContractReason: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 不测量面积(亩)
|
||||||
|
*/
|
||||||
|
noSurveyArea: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 不流转原因
|
||||||
|
*/
|
||||||
|
nonTransferReason: string;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface NonTransferLedgerForm extends BaseEntity {
|
||||||
|
/**
|
||||||
|
* 主键ID
|
||||||
|
*/
|
||||||
|
id?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目ID
|
||||||
|
*/
|
||||||
|
projectId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 土地类型
|
||||||
|
*/
|
||||||
|
landType?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块ID
|
||||||
|
*/
|
||||||
|
landBlockId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 进场道路ID
|
||||||
|
*/
|
||||||
|
enterRoadId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计面积
|
||||||
|
*/
|
||||||
|
designArea?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 不签合同面积(亩)
|
||||||
|
*/
|
||||||
|
noContractArea?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 不签合同原因
|
||||||
|
*/
|
||||||
|
noContractReason?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 不测量面积(亩)
|
||||||
|
*/
|
||||||
|
noSurveyArea?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 不流转原因
|
||||||
|
*/
|
||||||
|
nonTransferReason?: string;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface NonTransferLedgerQuery extends PageQuery {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 项目ID
|
||||||
|
*/
|
||||||
|
projectId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 土地类型
|
||||||
|
*/
|
||||||
|
landType?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 地块ID
|
||||||
|
*/
|
||||||
|
landBlockId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 进场道路ID
|
||||||
|
*/
|
||||||
|
enterRoadId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计面积
|
||||||
|
*/
|
||||||
|
designArea?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 不签合同面积(亩)
|
||||||
|
*/
|
||||||
|
noContractArea?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 不签合同原因
|
||||||
|
*/
|
||||||
|
noContractReason?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 不测量面积(亩)
|
||||||
|
*/
|
||||||
|
noSurveyArea?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 不流转原因
|
||||||
|
*/
|
||||||
|
nonTransferReason?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 日期范围参数
|
||||||
|
*/
|
||||||
|
params?: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
283
src/views/project/landTransfer/BasicData/enterRoad/index.vue
Normal file
283
src/views/project/landTransfer/BasicData/enterRoad/index.vue
Normal file
@ -0,0 +1,283 @@
|
|||||||
|
<template>
|
||||||
|
<div class="p-2">
|
||||||
|
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
||||||
|
<div v-show="showSearch" class="mb-[10px]">
|
||||||
|
<el-card shadow="hover">
|
||||||
|
<el-form ref="queryFormRef" :model="queryParams" :inline="true" label-width="110px">
|
||||||
|
<el-form-item label="道路编号" prop="roadCode">
|
||||||
|
<el-input v-model="queryParams.roadCode" placeholder="请输入道路编号" clearable @keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="道路名称" prop="roadName">
|
||||||
|
<el-input v-model="queryParams.roadName" placeholder="请输入道路名称" clearable @keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="对应地块" prop="landBlockId">
|
||||||
|
<el-select v-model="queryParams.landBlockId" clearable placeholder="请选择对应地块">
|
||||||
|
<el-option v-for="item in landBlockList" :key="item.id" :label="item.landName" :value="item.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</el-card>
|
||||||
|
</div>
|
||||||
|
</transition>
|
||||||
|
|
||||||
|
<el-card shadow="never">
|
||||||
|
<template #header>
|
||||||
|
<el-row :gutter="10" class="mb8">
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['land:enterRoad:add']">新增</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['land:enterRoad:remove']"
|
||||||
|
>删除</el-button
|
||||||
|
>
|
||||||
|
</el-col>
|
||||||
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="enterRoadList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<el-table-column label="道路编号" align="center" prop="roadCode" />
|
||||||
|
<el-table-column label="道路名称" align="center" prop="roadName" />
|
||||||
|
<el-table-column label="设计新建道路长度" align="center" prop="designCreateLength" />
|
||||||
|
<el-table-column label="设计改扩建长度" align="center" prop="designUpdateLength" />
|
||||||
|
<el-table-column label="需流转总长度" align="center" prop="changeLength" />
|
||||||
|
<el-table-column label="需要流转总面积" align="center" prop="changeArea" />
|
||||||
|
<el-table-column label="对应地块" align="center" prop="landName" />
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-tooltip content="修改" placement="top">
|
||||||
|
<el-button link type="primary" @click="handleUpdate(scope.row)" v-hasPermi="['land:enterRoad:edit']">编辑</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip content="删除" placement="top">
|
||||||
|
<el-button link type="primary" @click="handleDelete(scope.row)" v-hasPermi="['land:enterRoad:remove']">删除</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
||||||
|
</el-card>
|
||||||
|
<!-- 添加或修改进场道路信息对话框 -->
|
||||||
|
<el-dialog draggable :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
|
||||||
|
<el-form ref="enterRoadFormRef" :model="form" :rules="rules" label-width="130px">
|
||||||
|
<el-form-item label="道路编号" prop="roadCode">
|
||||||
|
<el-input v-model="form.roadCode" placeholder="请输入道路编号" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="道路名称" prop="roadName">
|
||||||
|
<el-input v-model="form.roadName" placeholder="请输入道路名称" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="设计新建道路长度" prop="designCreateLength">
|
||||||
|
<el-input v-model="form.designCreateLength" placeholder="请输入设计新建道路长度" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="设计改扩建长度" prop="designUpdateLength">
|
||||||
|
<el-input v-model="form.designUpdateLength" placeholder="请输入设计改扩建长度" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="需流转总长度" prop="changeLength">
|
||||||
|
<el-input v-model="form.changeLength" placeholder="请输入需流转总长度" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="需要流转总面积" prop="changeArea">
|
||||||
|
<el-input v-model="form.changeArea" placeholder="请输入需要流转总面积" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="对应地块" prop="landBlockId">
|
||||||
|
<el-select v-model="form.landBlockId" clearable placeholder="请选择对应地块">
|
||||||
|
<el-option v-for="item in landBlockList" :key="item.id" :label="item.landName" :value="item.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<div class="dialog-footer">
|
||||||
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||||
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup name="EnterRoad" lang="ts">
|
||||||
|
import { listEnterRoad, getEnterRoad, delEnterRoad, addEnterRoad, updateEnterRoad } from '@/api/system/landTransfer/enterRoad';
|
||||||
|
import { EnterRoadVO, EnterRoadQuery, EnterRoadForm } from '@/api/system/landTransfer/enterRoad/types';
|
||||||
|
import { listLandBlock } from '@/api/system/landTransfer/landBlock';
|
||||||
|
import { useUserStoreHook } from '@/store/modules/user';
|
||||||
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||||
|
// 获取用户 store
|
||||||
|
const userStore = useUserStoreHook();
|
||||||
|
// 从 store 中获取项目列表和当前选中的项目
|
||||||
|
const currentProject = computed(() => userStore.selectedProject);
|
||||||
|
const enterRoadList = ref<EnterRoadVO[]>([]);
|
||||||
|
const buttonLoading = ref(false);
|
||||||
|
const loading = ref(true);
|
||||||
|
const showSearch = ref(true);
|
||||||
|
const ids = ref<Array<string | number>>([]);
|
||||||
|
const single = ref(true);
|
||||||
|
const multiple = ref(true);
|
||||||
|
const total = ref(0);
|
||||||
|
const landBlockList = ref([]);
|
||||||
|
const queryFormRef = ref<ElFormInstance>();
|
||||||
|
const enterRoadFormRef = ref<ElFormInstance>();
|
||||||
|
|
||||||
|
const dialog = reactive<DialogOption>({
|
||||||
|
visible: false,
|
||||||
|
title: ''
|
||||||
|
});
|
||||||
|
|
||||||
|
const initFormData: EnterRoadForm = {
|
||||||
|
id: undefined,
|
||||||
|
projectId: currentProject.value.id,
|
||||||
|
roadCode: undefined,
|
||||||
|
roadName: undefined,
|
||||||
|
designCreateLength: undefined,
|
||||||
|
designUpdateLength: undefined,
|
||||||
|
changeLength: undefined,
|
||||||
|
changeArea: undefined,
|
||||||
|
landBlockId: undefined
|
||||||
|
};
|
||||||
|
const data = reactive<PageData<EnterRoadForm, EnterRoadQuery>>({
|
||||||
|
form: { ...initFormData },
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
projectId: currentProject.value.id,
|
||||||
|
roadCode: undefined,
|
||||||
|
roadName: undefined,
|
||||||
|
designCreateLength: undefined,
|
||||||
|
designUpdateLength: undefined,
|
||||||
|
changeLength: undefined,
|
||||||
|
changeArea: undefined,
|
||||||
|
landBlockId: undefined,
|
||||||
|
params: {}
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
id: [{ required: true, message: '主键ID不能为空', trigger: 'blur' }],
|
||||||
|
projectId: [{ required: true, message: '项目ID不能为空', trigger: 'blur' }],
|
||||||
|
roadCode: [{ required: true, message: '道路编号不能为空', trigger: 'blur' }],
|
||||||
|
roadName: [{ required: true, message: '道路名称不能为空', trigger: 'blur' }]
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const { queryParams, form, rules } = toRefs(data);
|
||||||
|
|
||||||
|
/** 查询进场道路信息列表 */
|
||||||
|
const getList = async () => {
|
||||||
|
loading.value = true;
|
||||||
|
const res = await listEnterRoad(queryParams.value);
|
||||||
|
enterRoadList.value = res.rows;
|
||||||
|
total.value = res.total;
|
||||||
|
loading.value = false;
|
||||||
|
};
|
||||||
|
/** 查询地块信息列表 */
|
||||||
|
const getListLand = async () => {
|
||||||
|
const res = await listLandBlock({
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10000,
|
||||||
|
projectId: currentProject.value.id
|
||||||
|
});
|
||||||
|
landBlockList.value = res.rows;
|
||||||
|
};
|
||||||
|
/** 取消按钮 */
|
||||||
|
const cancel = () => {
|
||||||
|
reset();
|
||||||
|
dialog.visible = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 表单重置 */
|
||||||
|
const reset = () => {
|
||||||
|
form.value = { ...initFormData };
|
||||||
|
enterRoadFormRef.value?.resetFields();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
const handleQuery = () => {
|
||||||
|
queryParams.value.pageNum = 1;
|
||||||
|
getList();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
const resetQuery = () => {
|
||||||
|
queryFormRef.value?.resetFields();
|
||||||
|
handleQuery();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 多选框选中数据 */
|
||||||
|
const handleSelectionChange = (selection: EnterRoadVO[]) => {
|
||||||
|
ids.value = selection.map((item) => item.id);
|
||||||
|
single.value = selection.length != 1;
|
||||||
|
multiple.value = !selection.length;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
const handleAdd = () => {
|
||||||
|
reset();
|
||||||
|
dialog.visible = true;
|
||||||
|
dialog.title = '添加进场道路信息';
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
const handleUpdate = async (row?: EnterRoadVO) => {
|
||||||
|
reset();
|
||||||
|
const _id = row?.id || ids.value[0];
|
||||||
|
const res = await getEnterRoad(_id);
|
||||||
|
Object.assign(form.value, res.data);
|
||||||
|
dialog.visible = true;
|
||||||
|
dialog.title = '修改进场道路信息';
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 提交按钮 */
|
||||||
|
const submitForm = () => {
|
||||||
|
enterRoadFormRef.value?.validate(async (valid: boolean) => {
|
||||||
|
if (valid) {
|
||||||
|
buttonLoading.value = true;
|
||||||
|
if (form.value.id) {
|
||||||
|
await updateEnterRoad(form.value).finally(() => (buttonLoading.value = false));
|
||||||
|
} else {
|
||||||
|
await addEnterRoad(form.value).finally(() => (buttonLoading.value = false));
|
||||||
|
}
|
||||||
|
proxy?.$modal.msgSuccess('操作成功');
|
||||||
|
dialog.visible = false;
|
||||||
|
await getList();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
const handleDelete = async (row?: EnterRoadVO) => {
|
||||||
|
const _ids = row?.id || ids.value;
|
||||||
|
await proxy?.$modal.confirm('是否确认删除进场道路信息编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
|
||||||
|
await delEnterRoad(_ids);
|
||||||
|
proxy?.$modal.msgSuccess('删除成功');
|
||||||
|
await getList();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
const handleExport = () => {
|
||||||
|
proxy?.download(
|
||||||
|
'land/enterRoad/export',
|
||||||
|
{
|
||||||
|
...queryParams.value
|
||||||
|
},
|
||||||
|
`enterRoad_${new Date().getTime()}.xlsx`
|
||||||
|
);
|
||||||
|
};
|
||||||
|
//监听项目id刷新数据
|
||||||
|
const listeningProject = watch(
|
||||||
|
() => currentProject.value.id,
|
||||||
|
(nid, oid) => {
|
||||||
|
queryParams.value.projectId = nid;
|
||||||
|
getListLand();
|
||||||
|
getList();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
onUnmounted(() => {
|
||||||
|
listeningProject();
|
||||||
|
});
|
||||||
|
onMounted(() => {
|
||||||
|
getListLand();
|
||||||
|
getList();
|
||||||
|
});
|
||||||
|
</script>
|
398
src/views/project/landTransfer/BasicData/landBlock/index.vue
Normal file
398
src/views/project/landTransfer/BasicData/landBlock/index.vue
Normal file
@ -0,0 +1,398 @@
|
|||||||
|
<template>
|
||||||
|
<div class="p-2">
|
||||||
|
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
||||||
|
<div v-show="showSearch" class="mb-[10px]">
|
||||||
|
<el-card shadow="hover">
|
||||||
|
<el-form ref="queryFormRef" :model="queryParams" :inline="true" label-width="110px">
|
||||||
|
<el-form-item label="地块编号" prop="landCode">
|
||||||
|
<el-input v-model="queryParams.landCode" placeholder="请输入地块编号" clearable @keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="地块名称" prop="landName">
|
||||||
|
<el-input v-model="queryParams.landName" placeholder="请输入地块名称" clearable @keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="所属村委会" prop="villageCommittee">
|
||||||
|
<el-input v-model="queryParams.villageCommittee" placeholder="请输入所属村委会" clearable @keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="设计面积" prop="designArea">
|
||||||
|
<el-input v-model="queryParams.designArea" placeholder="请输入设计面积" clearable @keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="地块数" prop="blockCount">
|
||||||
|
<el-input v-model="queryParams.blockCount" placeholder="请输入地块数" clearable @keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="农户数" prop="farmerCount">
|
||||||
|
<el-input v-model="queryParams.farmerCount" placeholder="请输入农户数" clearable @keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</el-card>
|
||||||
|
</div>
|
||||||
|
</transition>
|
||||||
|
<el-card shadow="never">
|
||||||
|
<template #header>
|
||||||
|
<el-row :gutter="10" class="mb8">
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['land:landBlock:add']">新增</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['land:landBlock:remove']"
|
||||||
|
>删除</el-button
|
||||||
|
>
|
||||||
|
</el-col>
|
||||||
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
</template>
|
||||||
|
<el-table draggable v-loading="loading" :data="landBlockList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<el-table-column label="地块编号" align="center" prop="landCode" />
|
||||||
|
<el-table-column label="地块名称" align="center" prop="landName" />
|
||||||
|
<el-table-column label="方阵" align="center" prop="unit" />
|
||||||
|
<el-table-column label="所属村委会" align="center" prop="villageCommittee" />
|
||||||
|
<el-table-column label="设计面积" align="center" prop="designArea" />
|
||||||
|
<el-table-column label="地块数" align="center" prop="blockCount" />
|
||||||
|
<el-table-column label="农户数" align="center" prop="farmerCount" />
|
||||||
|
<el-table-column label="备注" align="center" prop="remark" />
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-tooltip content="修改" placement="top">
|
||||||
|
<el-button link type="primary" @click="handleUpdate(scope.row)" v-hasPermi="['land:landBlock:edit']">编辑</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip content="删除" placement="top">
|
||||||
|
<el-button link type="primary" @click="handleDelete(scope.row)" v-hasPermi="['land:landBlock:remove']">删除</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip content="关联方阵" placement="top">
|
||||||
|
<el-button type="primary" link @click="handleView(scope.row)">关联方阵</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
||||||
|
</el-card>
|
||||||
|
<el-dialog draggable :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
|
||||||
|
<el-form ref="landBlockFormRef" :model="form" :rules="rules" label-width="100px">
|
||||||
|
<el-form-item label="地块编号" prop="landCode">
|
||||||
|
<el-input v-model="form.landCode" placeholder="请输入地块编号" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="地块名称" prop="landName">
|
||||||
|
<el-input v-model="form.landName" placeholder="请输入地块名称" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="所属村委会" prop="villageCommittee">
|
||||||
|
<el-input v-model="form.villageCommittee" placeholder="请输入所属村委会" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="设计面积" prop="designArea">
|
||||||
|
<el-input v-model="form.designArea" placeholder="请输入设计面积" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="地块数" prop="blockCount">
|
||||||
|
<el-input v-model="form.blockCount" placeholder="请输入地块数" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="农户数" prop="farmerCount">
|
||||||
|
<el-input v-model="form.farmerCount" placeholder="请输入农户数" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<div class="dialog-footer">
|
||||||
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||||
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
|
<el-dialog draggable :title="dialogMatrix.title" v-model="dialogMatrix.visible" width="800px" append-to-body>
|
||||||
|
<el-button type="primary" plain icon="Plus" @click="addUnitBoItem" style="margin-bottom: 15px">添加</el-button>
|
||||||
|
<el-form ref="landBlockFormMatrixRef" :model="formM" :rules="rules" label-width="100px">
|
||||||
|
<el-row v-for="(item, i) of unitBoList" :key="i">
|
||||||
|
<el-col :span="9">
|
||||||
|
<el-form-item label="方阵" prop="matrixId">
|
||||||
|
<el-cascader
|
||||||
|
:options="fangzhenList"
|
||||||
|
placeholder="请选择"
|
||||||
|
filterable
|
||||||
|
:props="{ value: 'matrixId', label: 'name' }"
|
||||||
|
v-model="item.unitProjectId"
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="7">
|
||||||
|
<el-form-item label="所属工区" prop="unitProjectArea">
|
||||||
|
<el-input v-model="item.unitProjectArea" placeholder="请输入所属工区" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="方阵状态" prop="unitProjectStatus">
|
||||||
|
<el-input v-model="item.unitProjectStatus" placeholder="请输入方阵状态" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1" style="margin-left: 15px">
|
||||||
|
<el-button type="danger" icon="Delete" @click="removeUnitBoItem(i)"></el-button>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<div class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="submitFormMatrix">确 定</el-button>
|
||||||
|
<el-button @click="cancelMatrix">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup name="LandBlock" lang="ts">
|
||||||
|
import { listLandBlock, getLandBlock, delLandBlock, LandUnit, addLandBlock, updateLandBlock, subMatrix } from '@/api/system/landTransfer/landBlock';
|
||||||
|
import { LandBlockVO, LandBlockQuery, LandBlockForm } from '@/api/system/landTransfer/landBlock/types';
|
||||||
|
import { useUserStoreHook } from '@/store/modules/user';
|
||||||
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||||
|
// 获取用户 store
|
||||||
|
const userStore = useUserStoreHook();
|
||||||
|
// 从 store 中获取项目列表和当前选中的项目
|
||||||
|
const currentProject = computed(() => userStore.selectedProject);
|
||||||
|
const landBlockList = ref<LandBlockVO[]>([]);
|
||||||
|
const fangzhenList = ref([]); //方阵列表数据
|
||||||
|
const buttonLoading = ref(false);
|
||||||
|
const loading = ref(true);
|
||||||
|
const showSearch = ref(true);
|
||||||
|
const unitBoList = ref([
|
||||||
|
{
|
||||||
|
unitProjectArea: '1',
|
||||||
|
unitProjectStatus: '1',
|
||||||
|
unitProjectId: []
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
const ids = ref<Array<string | number>>([]);
|
||||||
|
const single = ref(true);
|
||||||
|
const multiple = ref(true);
|
||||||
|
const total = ref(0);
|
||||||
|
const queryFormRef = ref<ElFormInstance>();
|
||||||
|
const landBlockFormRef = ref<ElFormInstance>();
|
||||||
|
const landBlockFormMatrixRef = ref<ElFormInstance>();
|
||||||
|
|
||||||
|
const dialog = reactive<DialogOption>({
|
||||||
|
visible: false,
|
||||||
|
title: ''
|
||||||
|
});
|
||||||
|
|
||||||
|
const dialogMatrix = reactive<DialogOption>({
|
||||||
|
visible: false,
|
||||||
|
title: '选择方阵'
|
||||||
|
});
|
||||||
|
|
||||||
|
const initFormData: LandBlockForm = {
|
||||||
|
id: undefined,
|
||||||
|
projectId: currentProject.value.id,
|
||||||
|
landCode: undefined,
|
||||||
|
landName: undefined,
|
||||||
|
villageCommittee: undefined,
|
||||||
|
designArea: undefined,
|
||||||
|
blockCount: undefined,
|
||||||
|
farmerCount: undefined,
|
||||||
|
remark: undefined
|
||||||
|
};
|
||||||
|
const data = reactive({
|
||||||
|
form: { ...initFormData },
|
||||||
|
formM: {
|
||||||
|
landId: undefined
|
||||||
|
},
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
projectId: currentProject.value.id,
|
||||||
|
landCode: undefined,
|
||||||
|
landName: undefined,
|
||||||
|
villageCommittee: undefined,
|
||||||
|
designArea: undefined,
|
||||||
|
blockCount: undefined,
|
||||||
|
farmerCount: undefined,
|
||||||
|
params: {}
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
id: [{ required: true, message: '主键ID不能为空', trigger: 'blur' }],
|
||||||
|
projectId: [{ required: true, message: '项目ID不能为空', trigger: 'blur' }],
|
||||||
|
landCode: [{ required: true, message: '地块编号不能为空', trigger: 'blur' }],
|
||||||
|
landName: [{ required: true, message: '地块名称不能为空', trigger: 'blur' }]
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const { queryParams, form, rules, formM } = toRefs(data);
|
||||||
|
|
||||||
|
/** 查询地块信息列表 */
|
||||||
|
const getList = async () => {
|
||||||
|
loading.value = true;
|
||||||
|
const res = await listLandBlock(queryParams.value);
|
||||||
|
landBlockList.value = res.rows;
|
||||||
|
total.value = res.total;
|
||||||
|
loading.value = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 取消按钮 */
|
||||||
|
const cancel = () => {
|
||||||
|
reset();
|
||||||
|
dialog.visible = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 表单重置 */
|
||||||
|
const reset = () => {
|
||||||
|
form.value = { ...initFormData };
|
||||||
|
landBlockFormRef.value?.resetFields();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
const handleQuery = () => {
|
||||||
|
queryParams.value.pageNum = 1;
|
||||||
|
getList();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
const resetQuery = () => {
|
||||||
|
queryFormRef.value?.resetFields();
|
||||||
|
handleQuery();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 多选框选中数据 */
|
||||||
|
const handleSelectionChange = (selection: LandBlockVO[]) => {
|
||||||
|
ids.value = selection.map((item) => item.id);
|
||||||
|
single.value = selection.length != 1;
|
||||||
|
multiple.value = !selection.length;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
const handleAdd = () => {
|
||||||
|
reset();
|
||||||
|
dialog.visible = true;
|
||||||
|
dialog.title = '添加地块信息';
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
const handleUpdate = async (row?: LandBlockVO) => {
|
||||||
|
reset();
|
||||||
|
const _id = row?.id || ids.value[0];
|
||||||
|
const res = await getLandBlock(_id);
|
||||||
|
Object.assign(form.value, res.data);
|
||||||
|
dialog.visible = true;
|
||||||
|
dialog.title = '修改地块信息';
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 提交按钮 */
|
||||||
|
const submitForm = () => {
|
||||||
|
landBlockFormRef.value?.validate(async (valid: boolean) => {
|
||||||
|
if (valid) {
|
||||||
|
buttonLoading.value = true;
|
||||||
|
if (form.value.id) {
|
||||||
|
await updateLandBlock(form.value).finally(() => (buttonLoading.value = false));
|
||||||
|
} else {
|
||||||
|
await addLandBlock(form.value).finally(() => (buttonLoading.value = false));
|
||||||
|
}
|
||||||
|
proxy?.$modal.msgSuccess('操作成功');
|
||||||
|
dialog.visible = false;
|
||||||
|
await getList();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
const handleDelete = async (row?: LandBlockVO) => {
|
||||||
|
const _ids = row?.id || ids.value;
|
||||||
|
await proxy?.$modal.confirm('是否确认删除地块信息编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
|
||||||
|
await delLandBlock(_ids);
|
||||||
|
proxy?.$modal.msgSuccess('删除成功');
|
||||||
|
await getList();
|
||||||
|
};
|
||||||
|
|
||||||
|
// 获取方阵列表
|
||||||
|
const getfangzhenList = async () => {
|
||||||
|
loading.value = true;
|
||||||
|
const res = await subMatrix(currentProject.value.id);
|
||||||
|
res.data.forEach((item) => {
|
||||||
|
item.children.forEach((item2) => {
|
||||||
|
item2.matrixId = item2.name + '_' + item2.matrixId;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
fangzhenList.value = res.data;
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleView = async (row) => {
|
||||||
|
// 关联方阵
|
||||||
|
dialogMatrix.visible = true;
|
||||||
|
dialogMatrix.title = '关联方阵';
|
||||||
|
data.formM.landId = row.id;
|
||||||
|
};
|
||||||
|
// 动态添加unitBoList项
|
||||||
|
const addUnitBoItem = () => {
|
||||||
|
unitBoList.value.push({
|
||||||
|
unitProjectArea: '',
|
||||||
|
unitProjectStatus: '',
|
||||||
|
unitProjectId: []
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
// 移除unitBoList项
|
||||||
|
const removeUnitBoItem = (index: number) => {
|
||||||
|
if (unitBoList.value.length > 1) {
|
||||||
|
unitBoList.value.splice(index, 1);
|
||||||
|
} else {
|
||||||
|
proxy?.$modal.msgWarning('至少保留一项');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const submitFormMatrix = () => {
|
||||||
|
landBlockFormMatrixRef.value?.validate(async (valid: boolean) => {
|
||||||
|
if (valid) {
|
||||||
|
var arr = [];
|
||||||
|
unitBoList.value.forEach((item) => {
|
||||||
|
let str = item.unitProjectId[1].split('_');
|
||||||
|
arr.push({
|
||||||
|
unitProjectArea: item.unitProjectArea,
|
||||||
|
unitProjectStatus: item.unitProjectStatus,
|
||||||
|
unitProjectId: str[1],
|
||||||
|
unitProjectName: str[0]
|
||||||
|
});
|
||||||
|
});
|
||||||
|
var res = await LandUnit({ ...formM.value, unitBoList: arr });
|
||||||
|
if (res.code == 200) {
|
||||||
|
proxy?.$modal.msgSuccess('操作成功');
|
||||||
|
dialogMatrix.visible = false;
|
||||||
|
await getList();
|
||||||
|
} else {
|
||||||
|
proxy?.$modal.msgError(res.msg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
/** 取消按钮 */
|
||||||
|
const cancelMatrix = () => {
|
||||||
|
resetMatrix();
|
||||||
|
dialogMatrix.visible = false;
|
||||||
|
};
|
||||||
|
/** 表单重置 */
|
||||||
|
const resetMatrix = () => {
|
||||||
|
data.formM.landId = '';
|
||||||
|
unitBoList.value = [
|
||||||
|
{
|
||||||
|
unitProjectArea: '1',
|
||||||
|
unitProjectStatus: '1',
|
||||||
|
unitProjectId: []
|
||||||
|
}
|
||||||
|
];
|
||||||
|
landBlockFormMatrixRef.value?.resetFields();
|
||||||
|
};
|
||||||
|
//监听项目id刷新数据
|
||||||
|
const listeningProject = watch(
|
||||||
|
() => currentProject.value.id,
|
||||||
|
(nid, oid) => {
|
||||||
|
queryParams.value.projectId = nid;
|
||||||
|
getfangzhenList();
|
||||||
|
getList();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
onUnmounted(() => {
|
||||||
|
listeningProject();
|
||||||
|
});
|
||||||
|
onMounted(() => {
|
||||||
|
getList();
|
||||||
|
getfangzhenList();
|
||||||
|
});
|
||||||
|
</script>
|
@ -0,0 +1,371 @@
|
|||||||
|
<template>
|
||||||
|
<div class="p-2">
|
||||||
|
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
||||||
|
<div v-show="showSearch" class="mb-[10px]">
|
||||||
|
<el-card shadow="hover">
|
||||||
|
<el-form ref="queryFormRef" :model="queryParams" :inline="true" label-width="110px">
|
||||||
|
<el-form-item label="对应地块" prop="landBlockId">
|
||||||
|
<el-select v-model="queryParams.landBlockId" clearable placeholder="请选择对应地块">
|
||||||
|
<el-option v-for="item in landBlockList" :key="item.id" :label="item.landName" :value="item.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="设计面积" prop="designArea">
|
||||||
|
<el-input v-model="queryParams.designArea" placeholder="请输入设计面积" clearable @keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="责任人" prop="responsiblePerson">
|
||||||
|
<el-input v-model="queryParams.responsiblePerson" placeholder="请输入责任人" clearable @keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="预计完成时间" prop="expectedFinishDate">
|
||||||
|
<el-date-picker
|
||||||
|
clearable
|
||||||
|
v-model="queryParams.expectedFinishDate"
|
||||||
|
type="date"
|
||||||
|
value-format="YYYY-MM-DD"
|
||||||
|
placeholder="请选择预计完成时间"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</el-card>
|
||||||
|
</div>
|
||||||
|
</transition>
|
||||||
|
<el-card shadow="never">
|
||||||
|
<template #header>
|
||||||
|
<el-row :gutter="10" class="mb8">
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['land:landTransferLedger:add']">新增</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['land:landTransferLedger:remove']"
|
||||||
|
>删除</el-button
|
||||||
|
>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="landTransferLedgerList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<el-table-column label="土地类型" align="center" prop="landType" />
|
||||||
|
<el-table-column label="地块" align="center" prop="landName" />
|
||||||
|
<el-table-column label="进场道路" align="center" prop="roadName" />
|
||||||
|
<el-table-column label="设计面积" align="center" prop="designArea" />
|
||||||
|
<el-table-column label="责任人" align="center" prop="responsiblePerson" />
|
||||||
|
<el-table-column label="预计完成时间" align="center" prop="expectedFinishDate" width="180">
|
||||||
|
<template #default="scope">
|
||||||
|
<span>{{ parseTime(scope.row.expectedFinishDate, '{y}-{m}-{d}') }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="已流转面积" align="center" prop="transferAea" />
|
||||||
|
<el-table-column label="流转比例" align="center" prop="transferRatio" />
|
||||||
|
<el-table-column label="土地租金" align="center" prop="landRent" />
|
||||||
|
<el-table-column label="青苗赔偿" align="center" prop="seedlingCompensation" />
|
||||||
|
<el-table-column label="总金额" align="center" prop="totalAmount" />
|
||||||
|
<el-table-column label="流转状态" align="center" prop="transferStatus" />
|
||||||
|
<el-table-column label="状态说明" align="center" prop="statusDescription" />
|
||||||
|
<el-table-column label="问题总结" align="center" prop="issueSummary" />
|
||||||
|
<el-table-column label="下一步策略" align="center" prop="nextStrategy" />
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-tooltip content="修改" placement="top">
|
||||||
|
<el-button link type="primary" @click="handleUpdate(scope.row)" v-hasPermi="['land:landTransferLedger:edit']">编辑</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip content="删除" placement="top">
|
||||||
|
<el-button link type="primary" @click="handleDelete(scope.row)" v-hasPermi="['land:landTransferLedger:remove']">删除</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
||||||
|
</el-card>
|
||||||
|
<!-- 添加或修改项目土地流转台账对话框 -->
|
||||||
|
<el-dialog draggable :title="dialog.title" v-model="dialog.visible" width="800px" append-to-body>
|
||||||
|
<el-form ref="landTransferLedgerFormRef" :model="form" :rules="rules" label-width="110px">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="对应地块" prop="landBlockId">
|
||||||
|
<el-select v-model="form.landBlockId" clearable placeholder="请选择对应地块" @change="handleLandBlockChange">
|
||||||
|
<el-option v-for="item in landBlockList" :key="item.id" :label="item.landName" :value="item.id" />
|
||||||
|
</el-select> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12" v-if="enterRoadList.length">
|
||||||
|
<el-form-item label="进场道路" prop="enterRoadId">
|
||||||
|
<el-select v-model="form.enterRoadId" clearable placeholder="请选择对应地块">
|
||||||
|
<el-option v-for="item in enterRoadList" :key="item.id" :label="item.roadName" :value="item.id" />
|
||||||
|
</el-select> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="土地类型" prop="landType">
|
||||||
|
<el-select v-model="form.landType" placeholder="请选择土地类型" clearable>
|
||||||
|
<el-option v-for="dict in land_type" :key="dict.value" :label="dict.label" :value="dict.value" /> </el-select></el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="流转台账状态" prop="transferStatus">
|
||||||
|
<el-select v-model="form.transferStatus" placeholder="请选择流转台账状态" clearable>
|
||||||
|
<el-option v-for="dict in transfer_status" :key="dict.value" :label="dict.label" :value="dict.value" /> </el-select></el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="设计面积" prop="designArea"> <el-input v-model="form.designArea" placeholder="请输入设计面积" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12"
|
||||||
|
><el-form-item label="责任人" prop="responsiblePerson">
|
||||||
|
<el-input v-model="form.responsiblePerson" placeholder="请输入责任人" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12"
|
||||||
|
><el-form-item label="预计完成日期" prop="expectedFinishDate">
|
||||||
|
<el-date-picker clearable v-model="form.expectedFinishDate" type="date" value-format="YYYY-MM-DD" placeholder="请选择预计完成时间">
|
||||||
|
</el-date-picker> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12"
|
||||||
|
><el-form-item label="已流转面积" prop="transferAea">
|
||||||
|
<el-input v-model="form.transferAea" placeholder="请输入已流转面积" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12"
|
||||||
|
><el-form-item label="流转比例" prop="transferRatio">
|
||||||
|
<el-input v-model="form.transferRatio" placeholder="请输入流转比例" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="土地租金" prop="landRent"> <el-input v-model="form.landRent" placeholder="请输入土地租金" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="青苗赔偿" prop="seedlingCompensation">
|
||||||
|
<el-input v-model="form.seedlingCompensation" placeholder="请输入青苗赔偿" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="总金额" prop="totalAmount">
|
||||||
|
<el-input type="number" v-model="form.totalAmount" placeholder="请输入总金额" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="24"
|
||||||
|
><el-form-item label="状态说明" prop="statusDescription">
|
||||||
|
<el-input v-model="form.statusDescription" type="textarea" placeholder="请输入内容" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="24"
|
||||||
|
><el-form-item label="问题总结" prop="issueSummary">
|
||||||
|
<el-input v-model="form.issueSummary" type="textarea" placeholder="请输入内容" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="下一步策略" prop="nextStrategy">
|
||||||
|
<el-input v-model="form.nextStrategy" type="textarea" placeholder="请输入内容" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<div class="dialog-footer">
|
||||||
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||||
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup name="LandTransferLedger" lang="ts">
|
||||||
|
import {
|
||||||
|
listLandTransferLedger,
|
||||||
|
getLandTransferLedger,
|
||||||
|
delLandTransferLedger,
|
||||||
|
addLandTransferLedger,
|
||||||
|
updateLandTransferLedger
|
||||||
|
} from '@/api/system/landTransfer/landTransferLedger';
|
||||||
|
import { listEnterRoad } from '@/api/system/landTransfer/enterRoad';
|
||||||
|
import { LandTransferLedgerVO, LandTransferLedgerQuery, LandTransferLedgerForm } from '@/api/system/landTransfer/landTransferLedger/types';
|
||||||
|
import { useUserStoreHook } from '@/store/modules/user';
|
||||||
|
import { listLandBlock } from '@/api/system/landTransfer/landBlock';
|
||||||
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||||
|
// 获取用户 store
|
||||||
|
const userStore = useUserStoreHook();
|
||||||
|
// 从 store 中获取项目列表和当前选中的项目
|
||||||
|
const currentProject = computed(() => userStore.selectedProject);
|
||||||
|
const landTransferLedgerList = ref<LandTransferLedgerVO[]>([]);
|
||||||
|
const buttonLoading = ref(false);
|
||||||
|
const loading = ref(true);
|
||||||
|
const showSearch = ref(true);
|
||||||
|
const ids = ref<Array<string | number>>([]);
|
||||||
|
const single = ref(true);
|
||||||
|
const multiple = ref(true);
|
||||||
|
const total = ref(0);
|
||||||
|
const landBlockList = ref([]);
|
||||||
|
const queryFormRef = ref<ElFormInstance>();
|
||||||
|
const landTransferLedgerFormRef = ref<ElFormInstance>();
|
||||||
|
const enterRoadList = ref([]);
|
||||||
|
const { land_type, transfer_status } = toRefs<any>(proxy?.useDict('land_type', 'transfer_status'));
|
||||||
|
|
||||||
|
const dialog = reactive<DialogOption>({
|
||||||
|
visible: false,
|
||||||
|
title: ''
|
||||||
|
});
|
||||||
|
|
||||||
|
const initFormData: LandTransferLedgerForm = {
|
||||||
|
id: undefined,
|
||||||
|
projectId: currentProject.value.id,
|
||||||
|
landType: undefined,
|
||||||
|
landBlockId: undefined,
|
||||||
|
enterRoadId: undefined,
|
||||||
|
designArea: undefined,
|
||||||
|
responsiblePerson: undefined,
|
||||||
|
expectedFinishDate: undefined,
|
||||||
|
transferAea: undefined,
|
||||||
|
transferRatio: undefined,
|
||||||
|
landRent: undefined,
|
||||||
|
seedlingCompensation: undefined,
|
||||||
|
totalAmount: undefined,
|
||||||
|
transferStatus: undefined,
|
||||||
|
statusDescription: undefined,
|
||||||
|
issueSummary: undefined,
|
||||||
|
nextStrategy: undefined
|
||||||
|
};
|
||||||
|
const data = reactive<PageData<LandTransferLedgerForm, LandTransferLedgerQuery>>({
|
||||||
|
form: { ...initFormData },
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
projectId: currentProject.value.id,
|
||||||
|
landType: undefined,
|
||||||
|
landBlockId: undefined,
|
||||||
|
enterRoadId: undefined,
|
||||||
|
designArea: undefined,
|
||||||
|
responsiblePerson: undefined,
|
||||||
|
expectedFinishDate: undefined,
|
||||||
|
transferAea: undefined,
|
||||||
|
transferRatio: undefined,
|
||||||
|
landRent: undefined,
|
||||||
|
seedlingCompensation: undefined,
|
||||||
|
totalAmount: undefined,
|
||||||
|
transferStatus: undefined,
|
||||||
|
statusDescription: undefined,
|
||||||
|
issueSummary: undefined,
|
||||||
|
nextStrategy: undefined,
|
||||||
|
params: {}
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
id: [{ required: true, message: '主键ID不能为空', trigger: 'blur' }],
|
||||||
|
projectId: [{ required: true, message: '项目ID不能为空', trigger: 'blur' }],
|
||||||
|
landType: [{ required: true, message: '土地类型不能为空', trigger: 'change' }]
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const { queryParams, form, rules } = toRefs(data);
|
||||||
|
|
||||||
|
/** 查询项目土地流转台账列表 */
|
||||||
|
const getList = async () => {
|
||||||
|
loading.value = true;
|
||||||
|
const res = await listLandTransferLedger(queryParams.value);
|
||||||
|
landTransferLedgerList.value = res.rows;
|
||||||
|
total.value = res.total;
|
||||||
|
loading.value = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 取消按钮 */
|
||||||
|
const cancel = () => {
|
||||||
|
reset();
|
||||||
|
dialog.visible = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 表单重置 */
|
||||||
|
const reset = () => {
|
||||||
|
form.value = { ...initFormData };
|
||||||
|
landTransferLedgerFormRef.value?.resetFields();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
const handleQuery = () => {
|
||||||
|
queryParams.value.pageNum = 1;
|
||||||
|
getList();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
const resetQuery = () => {
|
||||||
|
queryFormRef.value?.resetFields();
|
||||||
|
handleQuery();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 多选框选中数据 */
|
||||||
|
const handleSelectionChange = (selection: LandTransferLedgerVO[]) => {
|
||||||
|
ids.value = selection.map((item) => item.id);
|
||||||
|
single.value = selection.length != 1;
|
||||||
|
multiple.value = !selection.length;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
const handleAdd = () => {
|
||||||
|
reset();
|
||||||
|
dialog.visible = true;
|
||||||
|
dialog.title = '添加项目土地流转台账';
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
const handleUpdate = async (row?: LandTransferLedgerVO) => {
|
||||||
|
reset();
|
||||||
|
const _id = row?.id || ids.value[0];
|
||||||
|
const res = await getLandTransferLedger(_id);
|
||||||
|
Object.assign(form.value, res.data);
|
||||||
|
dialog.visible = true;
|
||||||
|
dialog.title = '修改项目土地流转台账';
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 提交按钮 */
|
||||||
|
const submitForm = () => {
|
||||||
|
landTransferLedgerFormRef.value?.validate(async (valid: boolean) => {
|
||||||
|
if (valid) {
|
||||||
|
buttonLoading.value = true;
|
||||||
|
if (form.value.id) {
|
||||||
|
await updateLandTransferLedger(form.value).finally(() => (buttonLoading.value = false));
|
||||||
|
} else {
|
||||||
|
await addLandTransferLedger(form.value).finally(() => (buttonLoading.value = false));
|
||||||
|
}
|
||||||
|
proxy?.$modal.msgSuccess('操作成功');
|
||||||
|
dialog.visible = false;
|
||||||
|
await getList();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
const handleDelete = async (row?: LandTransferLedgerVO) => {
|
||||||
|
const _ids = row?.id || ids.value;
|
||||||
|
await proxy?.$modal.confirm('是否确认删除项目土地流转台账编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
|
||||||
|
await delLandTransferLedger(_ids);
|
||||||
|
proxy?.$modal.msgSuccess('删除成功');
|
||||||
|
await getList();
|
||||||
|
};
|
||||||
|
// 选择地块
|
||||||
|
const handleLandBlockChange = (val) => {
|
||||||
|
console.log(val);
|
||||||
|
getListRoad();
|
||||||
|
};
|
||||||
|
/** 查询地块信息列表 */
|
||||||
|
const getListLand = async () => {
|
||||||
|
const res = await listLandBlock({
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10000,
|
||||||
|
projectId: currentProject.value.id
|
||||||
|
});
|
||||||
|
landBlockList.value = res.rows;
|
||||||
|
};
|
||||||
|
/** 查询进场道路信息列表 */
|
||||||
|
const getListRoad = async () => {
|
||||||
|
const res = await listEnterRoad({ pageNum: 1, pageSize: 10000, projectId: currentProject.value.id, landBlockId: form.value.landBlockId });
|
||||||
|
enterRoadList.value = res.rows;
|
||||||
|
};
|
||||||
|
//监听项目id刷新数据
|
||||||
|
const listeningProject = watch(
|
||||||
|
() => currentProject.value.id,
|
||||||
|
(nid, oid) => {
|
||||||
|
queryParams.value.projectId = nid;
|
||||||
|
getListLand();
|
||||||
|
getList();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
onUnmounted(() => {
|
||||||
|
listeningProject();
|
||||||
|
});
|
||||||
|
onMounted(() => {
|
||||||
|
getList();
|
||||||
|
getListLand();
|
||||||
|
});
|
||||||
|
</script>
|
@ -0,0 +1,373 @@
|
|||||||
|
<template>
|
||||||
|
<div class="p-2">
|
||||||
|
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
||||||
|
<div v-show="showSearch" class="mb-[10px]">
|
||||||
|
<el-card shadow="hover">
|
||||||
|
<el-form ref="queryFormRef" :model="queryParams" :inline="true" label-width="110px">
|
||||||
|
<el-form-item label="对应地块" prop="landBlockId">
|
||||||
|
<el-select v-model="queryParams.landBlockId" clearable placeholder="请选择对应地块">
|
||||||
|
<el-option v-for="item in landBlockList" :key="item.id" :label="item.landName" :value="item.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="设计面积" prop="designArea">
|
||||||
|
<el-input v-model="queryParams.designArea" placeholder="请输入设计面积" clearable @keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="责任人" prop="responsiblePerson">
|
||||||
|
<el-input v-model="queryParams.responsiblePerson" placeholder="请输入责任人" clearable @keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="预计完成时间" prop="expectedFinishDate">
|
||||||
|
<el-date-picker
|
||||||
|
clearable
|
||||||
|
v-model="queryParams.expectedFinishDate"
|
||||||
|
type="date"
|
||||||
|
value-format="YYYY-MM-DD"
|
||||||
|
placeholder="请选择预计完成时间"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</el-card>
|
||||||
|
</div>
|
||||||
|
</transition>
|
||||||
|
<el-card shadow="never">
|
||||||
|
<template #header>
|
||||||
|
<el-row :gutter="10" class="mb8">
|
||||||
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="landTransferLedgerList" @selection-change="handleSelectionChange">
|
||||||
|
<!-- 二级表格 -->
|
||||||
|
<el-table-column type="expand">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-table :data="scope.row.unitBoList" border>
|
||||||
|
<el-table-column label="序号" align="center" type="index" width="100" />
|
||||||
|
<el-table-column label="地块名称" align="center" prop="unitProjectName" />
|
||||||
|
<el-table-column label="所属工区" align="center" prop="unitProjectArea" />
|
||||||
|
<el-table-column label="方阵状态" align="center" prop="unitProjectStatus" />
|
||||||
|
</el-table>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<el-table-column label="土地类型" align="center" prop="landType" />
|
||||||
|
<el-table-column label="地块" align="center" prop="landName" />
|
||||||
|
<el-table-column label="进场道路" align="center" prop="roadName" />
|
||||||
|
<el-table-column label="设计面积" align="center" prop="designArea" />
|
||||||
|
<el-table-column label="责任人" align="center" prop="responsiblePerson" />
|
||||||
|
<el-table-column label="预计完成时间" align="center" prop="expectedFinishDate" width="180">
|
||||||
|
<template #default="scope">
|
||||||
|
<span>{{ parseTime(scope.row.expectedFinishDate, '{y}-{m}-{d}') }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="已流转面积" align="center" prop="transferAea" />
|
||||||
|
<el-table-column label="流转比例" align="center" prop="transferRatio" />
|
||||||
|
<el-table-column label="土地租金" align="center" prop="landRent" />
|
||||||
|
<el-table-column label="青苗赔偿" align="center" prop="seedlingCompensation" />
|
||||||
|
<el-table-column label="总金额" align="center" prop="totalAmount" />
|
||||||
|
<el-table-column label="流转状态" align="center" prop="transferStatus" />
|
||||||
|
<el-table-column label="状态说明" align="center" prop="statusDescription" />
|
||||||
|
<el-table-column label="问题总结" align="center" prop="issueSummary" />
|
||||||
|
<el-table-column label="下一步策略" align="center" prop="nextStrategy" />
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-tooltip content="修改" placement="top">
|
||||||
|
<el-button link type="primary" @click="handleUpdate(scope.row)" v-hasPermi="['land:landTransferLedger:edit']">编辑</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip content="删除" placement="top">
|
||||||
|
<el-button link type="primary" @click="handleDelete(scope.row)" v-hasPermi="['land:landTransferLedger:remove']">删除</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
||||||
|
</el-card>
|
||||||
|
<!-- 添加或修改项目土地流转台账对话框 -->
|
||||||
|
<el-dialog draggable :title="dialog.title" v-model="dialog.visible" width="800px" append-to-body>
|
||||||
|
<el-form ref="landTransferLedgerFormRef" :model="form" :rules="rules" label-width="110px">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="对应地块" prop="landBlockId">
|
||||||
|
<el-select v-model="form.landBlockId" clearable placeholder="请选择对应地块" @change="handleLandBlockChange">
|
||||||
|
<el-option v-for="item in landBlockList" :key="item.id" :label="item.landName" :value="item.id" />
|
||||||
|
</el-select> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12" v-if="enterRoadList.length">
|
||||||
|
<el-form-item label="进场道路" prop="enterRoadId">
|
||||||
|
<el-select v-model="form.enterRoadId" clearable placeholder="请选择对应地块">
|
||||||
|
<el-option v-for="item in enterRoadList" :key="item.id" :label="item.roadName" :value="item.id" />
|
||||||
|
</el-select> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="土地类型" prop="landType">
|
||||||
|
<el-select v-model="form.landType" placeholder="请选择土地类型" clearable>
|
||||||
|
<el-option v-for="dict in land_type" :key="dict.value" :label="dict.label" :value="dict.value" /> </el-select></el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="流转台账状态" prop="transferStatus">
|
||||||
|
<el-select v-model="form.transferStatus" placeholder="请选择流转台账状态" clearable>
|
||||||
|
<el-option v-for="dict in transfer_status" :key="dict.value" :label="dict.label" :value="dict.value" /> </el-select></el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="设计面积" prop="designArea"> <el-input v-model="form.designArea" placeholder="请输入设计面积" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12"
|
||||||
|
><el-form-item label="责任人" prop="responsiblePerson">
|
||||||
|
<el-input v-model="form.responsiblePerson" placeholder="请输入责任人" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12"
|
||||||
|
><el-form-item label="预计完成日期" prop="expectedFinishDate">
|
||||||
|
<el-date-picker clearable v-model="form.expectedFinishDate" type="date" value-format="YYYY-MM-DD" placeholder="请选择预计完成时间">
|
||||||
|
</el-date-picker> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12"
|
||||||
|
><el-form-item label="已流转面积" prop="transferAea">
|
||||||
|
<el-input v-model="form.transferAea" placeholder="请输入已流转面积" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12"
|
||||||
|
><el-form-item label="流转比例" prop="transferRatio">
|
||||||
|
<el-input v-model="form.transferRatio" placeholder="请输入流转比例" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="土地租金" prop="landRent"> <el-input v-model="form.landRent" placeholder="请输入土地租金" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="青苗赔偿" prop="seedlingCompensation">
|
||||||
|
<el-input v-model="form.seedlingCompensation" placeholder="请输入青苗赔偿" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="总金额" prop="totalAmount">
|
||||||
|
<el-input type="number" v-model="form.totalAmount" placeholder="请输入总金额" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="24"
|
||||||
|
><el-form-item label="状态说明" prop="statusDescription">
|
||||||
|
<el-input v-model="form.statusDescription" type="textarea" placeholder="请输入内容" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="24"
|
||||||
|
><el-form-item label="问题总结" prop="issueSummary">
|
||||||
|
<el-input v-model="form.issueSummary" type="textarea" placeholder="请输入内容" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="下一步策略" prop="nextStrategy">
|
||||||
|
<el-input v-model="form.nextStrategy" type="textarea" placeholder="请输入内容" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<div class="dialog-footer">
|
||||||
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||||
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup name="LandTransferLedger" lang="ts">
|
||||||
|
import {
|
||||||
|
ListUnitLandTransferLedger,
|
||||||
|
getLandTransferLedger,
|
||||||
|
delLandTransferLedger,
|
||||||
|
addLandTransferLedger,
|
||||||
|
updateLandTransferLedger
|
||||||
|
} from '@/api/system/landTransfer/landTransferLedger';
|
||||||
|
import { listEnterRoad } from '@/api/system/landTransfer/enterRoad';
|
||||||
|
import { LandTransferLedgerVO, LandTransferLedgerQuery, LandTransferLedgerForm } from '@/api/system/landTransfer/landTransferLedger/types';
|
||||||
|
import { useUserStoreHook } from '@/store/modules/user';
|
||||||
|
import { listLandBlock } from '@/api/system/landTransfer/landBlock';
|
||||||
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||||
|
// 获取用户 store
|
||||||
|
const userStore = useUserStoreHook();
|
||||||
|
// 从 store 中获取项目列表和当前选中的项目
|
||||||
|
const currentProject = computed(() => userStore.selectedProject);
|
||||||
|
const landTransferLedgerList = ref<LandTransferLedgerVO[]>([]);
|
||||||
|
const buttonLoading = ref(false);
|
||||||
|
const loading = ref(true);
|
||||||
|
const showSearch = ref(true);
|
||||||
|
const ids = ref<Array<string | number>>([]);
|
||||||
|
const single = ref(true);
|
||||||
|
const multiple = ref(true);
|
||||||
|
const total = ref(0);
|
||||||
|
const landBlockList = ref([]);
|
||||||
|
const queryFormRef = ref<ElFormInstance>();
|
||||||
|
const landTransferLedgerFormRef = ref<ElFormInstance>();
|
||||||
|
const enterRoadList = ref([]);
|
||||||
|
const { land_type, transfer_status } = toRefs<any>(proxy?.useDict('land_type', 'transfer_status'));
|
||||||
|
|
||||||
|
const dialog = reactive<DialogOption>({
|
||||||
|
visible: false,
|
||||||
|
title: ''
|
||||||
|
});
|
||||||
|
|
||||||
|
const initFormData: LandTransferLedgerForm = {
|
||||||
|
id: undefined,
|
||||||
|
projectId: currentProject.value.id,
|
||||||
|
landType: undefined,
|
||||||
|
landBlockId: undefined,
|
||||||
|
enterRoadId: undefined,
|
||||||
|
designArea: undefined,
|
||||||
|
responsiblePerson: undefined,
|
||||||
|
expectedFinishDate: undefined,
|
||||||
|
transferAea: undefined,
|
||||||
|
transferRatio: undefined,
|
||||||
|
landRent: undefined,
|
||||||
|
seedlingCompensation: undefined,
|
||||||
|
totalAmount: undefined,
|
||||||
|
transferStatus: undefined,
|
||||||
|
statusDescription: undefined,
|
||||||
|
issueSummary: undefined,
|
||||||
|
nextStrategy: undefined
|
||||||
|
};
|
||||||
|
const data = reactive<PageData<LandTransferLedgerForm, LandTransferLedgerQuery>>({
|
||||||
|
form: { ...initFormData },
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
projectId: currentProject.value.id,
|
||||||
|
landType: undefined,
|
||||||
|
landBlockId: undefined,
|
||||||
|
enterRoadId: undefined,
|
||||||
|
designArea: undefined,
|
||||||
|
responsiblePerson: undefined,
|
||||||
|
expectedFinishDate: undefined,
|
||||||
|
transferAea: undefined,
|
||||||
|
transferRatio: undefined,
|
||||||
|
landRent: undefined,
|
||||||
|
seedlingCompensation: undefined,
|
||||||
|
totalAmount: undefined,
|
||||||
|
transferStatus: undefined,
|
||||||
|
statusDescription: undefined,
|
||||||
|
issueSummary: undefined,
|
||||||
|
nextStrategy: undefined,
|
||||||
|
params: {}
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
id: [{ required: true, message: '主键ID不能为空', trigger: 'blur' }],
|
||||||
|
projectId: [{ required: true, message: '项目ID不能为空', trigger: 'blur' }],
|
||||||
|
landType: [{ required: true, message: '土地类型不能为空', trigger: 'change' }]
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const { queryParams, form, rules } = toRefs(data);
|
||||||
|
|
||||||
|
/** 查询项目土地流转台账列表 */
|
||||||
|
const getList = async () => {
|
||||||
|
loading.value = true;
|
||||||
|
const res = await ListUnitLandTransferLedger(queryParams.value);
|
||||||
|
landTransferLedgerList.value = res.rows;
|
||||||
|
total.value = res.total;
|
||||||
|
loading.value = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 取消按钮 */
|
||||||
|
const cancel = () => {
|
||||||
|
reset();
|
||||||
|
dialog.visible = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 表单重置 */
|
||||||
|
const reset = () => {
|
||||||
|
form.value = { ...initFormData };
|
||||||
|
landTransferLedgerFormRef.value?.resetFields();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
const handleQuery = () => {
|
||||||
|
queryParams.value.pageNum = 1;
|
||||||
|
getList();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
const resetQuery = () => {
|
||||||
|
queryFormRef.value?.resetFields();
|
||||||
|
handleQuery();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 多选框选中数据 */
|
||||||
|
const handleSelectionChange = (selection: LandTransferLedgerVO[]) => {
|
||||||
|
ids.value = selection.map((item) => item.id);
|
||||||
|
single.value = selection.length != 1;
|
||||||
|
multiple.value = !selection.length;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
const handleAdd = () => {
|
||||||
|
reset();
|
||||||
|
dialog.visible = true;
|
||||||
|
dialog.title = '添加项目土地流转台账';
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
const handleUpdate = async (row?: LandTransferLedgerVO) => {
|
||||||
|
reset();
|
||||||
|
const _id = row?.id || ids.value[0];
|
||||||
|
const res = await getLandTransferLedger(_id);
|
||||||
|
Object.assign(form.value, res.data);
|
||||||
|
dialog.visible = true;
|
||||||
|
dialog.title = '修改项目土地流转台账';
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 提交按钮 */
|
||||||
|
const submitForm = () => {
|
||||||
|
landTransferLedgerFormRef.value?.validate(async (valid: boolean) => {
|
||||||
|
if (valid) {
|
||||||
|
buttonLoading.value = true;
|
||||||
|
if (form.value.id) {
|
||||||
|
await updateLandTransferLedger(form.value).finally(() => (buttonLoading.value = false));
|
||||||
|
} else {
|
||||||
|
await addLandTransferLedger(form.value).finally(() => (buttonLoading.value = false));
|
||||||
|
}
|
||||||
|
proxy?.$modal.msgSuccess('操作成功');
|
||||||
|
dialog.visible = false;
|
||||||
|
await getList();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
const handleDelete = async (row?: LandTransferLedgerVO) => {
|
||||||
|
const _ids = row?.id || ids.value;
|
||||||
|
await proxy?.$modal.confirm('是否确认删除项目土地流转台账编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
|
||||||
|
await delLandTransferLedger(_ids);
|
||||||
|
proxy?.$modal.msgSuccess('删除成功');
|
||||||
|
await getList();
|
||||||
|
};
|
||||||
|
// 选择地块
|
||||||
|
const handleLandBlockChange = (val) => {
|
||||||
|
console.log(val);
|
||||||
|
getListRoad();
|
||||||
|
};
|
||||||
|
/** 查询地块信息列表 */
|
||||||
|
const getListLand = async () => {
|
||||||
|
const res = await listLandBlock({
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10000,
|
||||||
|
projectId: currentProject.value.id
|
||||||
|
});
|
||||||
|
landBlockList.value = res.rows;
|
||||||
|
};
|
||||||
|
/** 查询进场道路信息列表 */
|
||||||
|
const getListRoad = async () => {
|
||||||
|
const res = await listEnterRoad({ pageNum: 1, pageSize: 10000, projectId: currentProject.value.id, landBlockId: form.value.landBlockId });
|
||||||
|
enterRoadList.value = res.rows;
|
||||||
|
};
|
||||||
|
//监听项目id刷新数据
|
||||||
|
const listeningProject = watch(
|
||||||
|
() => currentProject.value.id,
|
||||||
|
(nid, oid) => {
|
||||||
|
queryParams.value.projectId = nid;
|
||||||
|
getListLand();
|
||||||
|
getList();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
onUnmounted(() => {
|
||||||
|
listeningProject();
|
||||||
|
});
|
||||||
|
onMounted(() => {
|
||||||
|
getList();
|
||||||
|
getListLand();
|
||||||
|
});
|
||||||
|
</script>
|
@ -0,0 +1,299 @@
|
|||||||
|
<template>
|
||||||
|
<div class="p-2">
|
||||||
|
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
||||||
|
<div v-show="showSearch" class="mb-[10px]">
|
||||||
|
<el-card shadow="hover">
|
||||||
|
<el-form ref="queryFormRef" :model="queryParams" :inline="true">
|
||||||
|
<el-form-item label="对应地块" prop="landBlockId">
|
||||||
|
<el-select v-model="queryParams.landBlockId" clearable placeholder="请选择对应地块">
|
||||||
|
<el-option v-for="item in landBlockList" :key="item.id" :label="item.landName" :value="item.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="设计面积" prop="designArea">
|
||||||
|
<el-input v-model="queryParams.designArea" placeholder="请输入设计面积" clearable @keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</el-card>
|
||||||
|
</div>
|
||||||
|
</transition>
|
||||||
|
|
||||||
|
<el-card shadow="never">
|
||||||
|
<template #header>
|
||||||
|
<el-row :gutter="10" class="mb8">
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['land:nonTransferLedger:add']">新增</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['land:nonTransferLedger:remove']"
|
||||||
|
>删除</el-button
|
||||||
|
>
|
||||||
|
</el-col>
|
||||||
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="nonTransferLedgerList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<el-table-column label="土地类型" align="center" prop="landType" />
|
||||||
|
<el-table-column label="地块" align="center" prop="landName" />
|
||||||
|
<el-table-column label="进场道路" align="center" prop="roadName" />
|
||||||
|
<el-table-column label="设计面积" align="center" prop="designArea" />
|
||||||
|
<el-table-column label="不签合同面积" align="center" prop="noContractArea" />
|
||||||
|
<el-table-column label="不签合同原因" align="center" prop="noContractReason" />
|
||||||
|
<el-table-column label="不测量面积" align="center" prop="noSurveyArea" />
|
||||||
|
<el-table-column label="不流转原因" align="center" prop="nonTransferReason" />
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-tooltip content="修改" placement="top">
|
||||||
|
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['land:nonTransferLedger:edit']"></el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
<el-tooltip content="删除" placement="top">
|
||||||
|
<el-button
|
||||||
|
link
|
||||||
|
type="primary"
|
||||||
|
icon="Delete"
|
||||||
|
@click="handleDelete(scope.row)"
|
||||||
|
v-hasPermi="['land:nonTransferLedger:remove']"
|
||||||
|
></el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
||||||
|
</el-card>
|
||||||
|
<!-- 添加或修改不流转台账对话框 -->
|
||||||
|
<el-dialog :title="dialog.title" v-model="dialog.visible" width="800px" append-to-body>
|
||||||
|
<el-form ref="nonTransferLedgerFormRef" :model="form" :rules="rules" label-width="110px">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="对应地块" prop="landBlockId">
|
||||||
|
<el-select v-model="form.landBlockId" clearable placeholder="请选择对应地块" @change="handleLandBlockChange">
|
||||||
|
<el-option v-for="item in landBlockList" :key="item.id" :label="item.landName" :value="item.id" />
|
||||||
|
</el-select> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12" v-if="enterRoadList.length">
|
||||||
|
<el-form-item label="进场道路" prop="enterRoadId">
|
||||||
|
<el-select v-model="form.enterRoadId" clearable placeholder="请选择对应地块">
|
||||||
|
<el-option v-for="item in enterRoadList" :key="item.id" :label="item.roadName" :value="item.id" />
|
||||||
|
</el-select> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="土地类型" prop="landType">
|
||||||
|
<el-select v-model="form.landType" placeholder="请选择土地类型" clearable>
|
||||||
|
<el-option v-for="dict in land_type" :key="dict.value" :label="dict.label" :value="dict.value" /> </el-select></el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="设计面积" prop="designArea"> <el-input v-model="form.designArea" placeholder="请输入设计面积" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12"
|
||||||
|
><el-form-item label="不签合同面积" prop="noContractArea">
|
||||||
|
<el-input v-model="form.noContractArea" placeholder="请输入不签合同面积" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="不测量面积" prop="noSurveyArea">
|
||||||
|
<el-input v-model="form.noSurveyArea" placeholder="请输入不测量面积" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="24"
|
||||||
|
><el-form-item label="不签合同原因" prop="noContractReason">
|
||||||
|
<el-input v-model="form.noContractReason" type="textarea" placeholder="请输入内容" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="24"
|
||||||
|
><el-form-item label="不流转原因" prop="nonTransferReason">
|
||||||
|
<el-input v-model="form.nonTransferReason" type="textarea" placeholder="请输入内容" /> </el-form-item
|
||||||
|
></el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<div class="dialog-footer">
|
||||||
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||||
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup name="NonTransferLedger" lang="ts">
|
||||||
|
import {
|
||||||
|
listNonTransferLedger,
|
||||||
|
getNonTransferLedger,
|
||||||
|
delNonTransferLedger,
|
||||||
|
addNonTransferLedger,
|
||||||
|
updateNonTransferLedger
|
||||||
|
} from '@/api/system/landTransfer/nonTransferLedger';
|
||||||
|
import { NonTransferLedgerVO, NonTransferLedgerQuery, NonTransferLedgerForm } from '@/api/system/landTransfer/nonTransferLedger/types';
|
||||||
|
import { listEnterRoad } from '@/api/system/landTransfer/enterRoad';
|
||||||
|
import { listLandBlock } from '@/api/system/landTransfer/landBlock';
|
||||||
|
import { useUserStoreHook } from '@/store/modules/user';
|
||||||
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||||
|
// 获取用户 store
|
||||||
|
const userStore = useUserStoreHook();
|
||||||
|
// 从 store 中获取项目列表和当前选中的项目
|
||||||
|
const currentProject = computed(() => userStore.selectedProject);
|
||||||
|
const nonTransferLedgerList = ref<NonTransferLedgerVO[]>([]);
|
||||||
|
const buttonLoading = ref(false);
|
||||||
|
const loading = ref(true);
|
||||||
|
const showSearch = ref(true);
|
||||||
|
const ids = ref<Array<string | number>>([]);
|
||||||
|
const single = ref(true);
|
||||||
|
const multiple = ref(true);
|
||||||
|
const total = ref(0);
|
||||||
|
const landBlockList = ref([]);
|
||||||
|
const enterRoadList = ref([]);
|
||||||
|
const queryFormRef = ref<ElFormInstance>();
|
||||||
|
const nonTransferLedgerFormRef = ref<ElFormInstance>();
|
||||||
|
const { land_type } = toRefs<any>(proxy?.useDict('land_type', 'transfer_status'));
|
||||||
|
|
||||||
|
const dialog = reactive<DialogOption>({
|
||||||
|
visible: false,
|
||||||
|
title: ''
|
||||||
|
});
|
||||||
|
|
||||||
|
const initFormData: NonTransferLedgerForm = {
|
||||||
|
id: undefined,
|
||||||
|
projectId: currentProject.value.id,
|
||||||
|
landType: undefined,
|
||||||
|
landBlockId: undefined,
|
||||||
|
enterRoadId: undefined,
|
||||||
|
designArea: undefined,
|
||||||
|
noContractArea: undefined,
|
||||||
|
noContractReason: undefined,
|
||||||
|
noSurveyArea: undefined,
|
||||||
|
nonTransferReason: undefined
|
||||||
|
};
|
||||||
|
const data = reactive<PageData<NonTransferLedgerForm, NonTransferLedgerQuery>>({
|
||||||
|
form: { ...initFormData },
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
projectId: currentProject.value.id,
|
||||||
|
landType: undefined,
|
||||||
|
landBlockId: undefined,
|
||||||
|
enterRoadId: undefined,
|
||||||
|
designArea: undefined,
|
||||||
|
noContractArea: undefined,
|
||||||
|
noContractReason: undefined,
|
||||||
|
noSurveyArea: undefined,
|
||||||
|
nonTransferReason: undefined,
|
||||||
|
params: {}
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
id: [{ required: true, message: '主键ID不能为空', trigger: 'blur' }],
|
||||||
|
projectId: [{ required: true, message: '项目ID不能为空', trigger: 'blur' }],
|
||||||
|
landType: [{ required: true, message: '土地类型不能为空', trigger: 'change' }]
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const { queryParams, form, rules } = toRefs(data);
|
||||||
|
|
||||||
|
/** 查询不流转台账列表 */
|
||||||
|
const getList = async () => {
|
||||||
|
loading.value = true;
|
||||||
|
const res = await listNonTransferLedger(queryParams.value);
|
||||||
|
nonTransferLedgerList.value = res.rows;
|
||||||
|
total.value = res.total;
|
||||||
|
loading.value = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 取消按钮 */
|
||||||
|
const cancel = () => {
|
||||||
|
reset();
|
||||||
|
dialog.visible = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 表单重置 */
|
||||||
|
const reset = () => {
|
||||||
|
form.value = { ...initFormData };
|
||||||
|
nonTransferLedgerFormRef.value?.resetFields();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
const handleQuery = () => {
|
||||||
|
queryParams.value.pageNum = 1;
|
||||||
|
getList();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
const resetQuery = () => {
|
||||||
|
queryFormRef.value?.resetFields();
|
||||||
|
handleQuery();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 多选框选中数据 */
|
||||||
|
const handleSelectionChange = (selection: NonTransferLedgerVO[]) => {
|
||||||
|
ids.value = selection.map((item) => item.id);
|
||||||
|
single.value = selection.length != 1;
|
||||||
|
multiple.value = !selection.length;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
const handleAdd = () => {
|
||||||
|
reset();
|
||||||
|
dialog.visible = true;
|
||||||
|
dialog.title = '添加不流转台账';
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
const handleUpdate = async (row?: NonTransferLedgerVO) => {
|
||||||
|
reset();
|
||||||
|
const _id = row?.id || ids.value[0];
|
||||||
|
const res = await getNonTransferLedger(_id);
|
||||||
|
Object.assign(form.value, res.data);
|
||||||
|
dialog.visible = true;
|
||||||
|
dialog.title = '修改不流转台账';
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 提交按钮 */
|
||||||
|
const submitForm = () => {
|
||||||
|
nonTransferLedgerFormRef.value?.validate(async (valid: boolean) => {
|
||||||
|
if (valid) {
|
||||||
|
buttonLoading.value = true;
|
||||||
|
if (form.value.id) {
|
||||||
|
await updateNonTransferLedger(form.value).finally(() => (buttonLoading.value = false));
|
||||||
|
} else {
|
||||||
|
await addNonTransferLedger(form.value).finally(() => (buttonLoading.value = false));
|
||||||
|
}
|
||||||
|
proxy?.$modal.msgSuccess('操作成功');
|
||||||
|
dialog.visible = false;
|
||||||
|
await getList();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
const handleDelete = async (row?: NonTransferLedgerVO) => {
|
||||||
|
const _ids = row?.id || ids.value;
|
||||||
|
await proxy?.$modal.confirm('是否确认删除不流转台账编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
|
||||||
|
await delNonTransferLedger(_ids);
|
||||||
|
proxy?.$modal.msgSuccess('删除成功');
|
||||||
|
await getList();
|
||||||
|
};
|
||||||
|
/** 查询地块信息列表 */
|
||||||
|
const getListLand = async () => {
|
||||||
|
const res = await listLandBlock({
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10000,
|
||||||
|
projectId: currentProject.value.id
|
||||||
|
});
|
||||||
|
landBlockList.value = res.rows;
|
||||||
|
};
|
||||||
|
/** 查询进场道路信息列表 */
|
||||||
|
const getListRoad = async () => {
|
||||||
|
const res = await listEnterRoad({ pageNum: 1, pageSize: 10000, projectId: currentProject.value.id, landBlockId: form.value.landBlockId });
|
||||||
|
enterRoadList.value = res.rows;
|
||||||
|
};
|
||||||
|
// 选择地块
|
||||||
|
const handleLandBlockChange = (val) => {
|
||||||
|
console.log(val);
|
||||||
|
getListRoad();
|
||||||
|
};
|
||||||
|
onMounted(() => {
|
||||||
|
getListLand();
|
||||||
|
getList();
|
||||||
|
});
|
||||||
|
</script>
|
Reference in New Issue
Block a user