Compare commits

..

No commits in common. "0bcd46de7b55af5d0c3cc7fa13aeec0d1b934167" and "d95b421ff16c9fb317da867429075f40b1d0b423" have entirely different histories.

2 changed files with 30 additions and 2 deletions

View File

@ -29,11 +29,13 @@ export function editBusinessSubject(data) {
* 生产经营主体 - 分页查询 * 生产经营主体 - 分页查询
* @param {Object} params 查询参数 * @param {Object} params 查询参数
*/ */
export function fetchBusinessSubjectList(params) { export function fetchBusinessSubjectList(query) {
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,6 +245,32 @@ 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) {