Compare commits

...

2 Commits

Author SHA1 Message Date
0bcd46de7b Merge branch 'dev' of http://47.109.205.240:3000/Web/daimp-front into dev 2025-05-27 09:50:02 +08:00
7be265d84f 政务服务 2025-05-27 09:49:55 +08:00
2 changed files with 2 additions and 30 deletions

View File

@ -29,13 +29,11 @@ export function editBusinessSubject(data) {
* 生产经营主体 - 分页查询 * 生产经营主体 - 分页查询
* @param {Object} params 查询参数 * @param {Object} params 查询参数
*/ */
export function fetchBusinessSubjectList(query) { export function fetchBusinessSubjectList(params) {
return request({ return request({
url: '/product-business/business/businessPage', url: '/product-business/business/businessPage',
method: 'get', method: 'get',
params: { params,
businessSubjectQuery: JSON.stringify(query),
},
}); });
} }

View File

@ -245,32 +245,6 @@ const rowUpdate = (row, index, done, loading) => {
}); });
}; };
//
// const rowDel = (row, index, done) => {
// if (isEmpty(row)) return;
// app
// .$confirm(``, '', {
// confirmButtonText: '',
// cancelButtonText: '',
// type: 'warning',
// })
// .then(() => {
// console.info('', row.recordId);
// delOperationRecord(row.recordId || '')
// .then((res) => {
// if (res.code === 200) {
// app.$message.success('');
// loadData();
// done();
// }
// })
// .catch((err) => {
// app.$message.error(err.msg);
// });
// })
// .catch(() => {});
// };
const onBatchDel = () => { const onBatchDel = () => {
let ids = handleIds(); let ids = handleIds();
if (!ids.length || ids.length <= 0) { if (!ids.length || ids.length <= 0) {