Compare commits
No commits in common. "0bcd46de7b55af5d0c3cc7fa13aeec0d1b934167" and "d95b421ff16c9fb317da867429075f40b1d0b423" have entirely different histories.
0bcd46de7b
...
d95b421ff1
@ -29,11 +29,13 @@ export function editBusinessSubject(data) {
|
||||
* 生产经营主体 - 分页查询
|
||||
* @param {Object} params 查询参数
|
||||
*/
|
||||
export function fetchBusinessSubjectList(params) {
|
||||
export function fetchBusinessSubjectList(query) {
|
||||
return request({
|
||||
url: '/product-business/business/businessPage',
|
||||
method: 'get',
|
||||
params,
|
||||
params: {
|
||||
businessSubjectQuery: JSON.stringify(query),
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -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 = () => {
|
||||
let ids = handleIds();
|
||||
if (!ids.length || ids.length <= 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user