diff --git a/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue
index 676c7de..c65a0b7 100644
--- a/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue
+++ b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue
@@ -207,7 +207,6 @@ import MarketRegulationsListSelectionModal from '../../../components/selection/M
import {
getForeignStandardDocumentInfo,
getMarketRegulationListById,
- getMarketRegulationListByIds,
marketRegulationListAdd,
marketRegulationListEdit
} from '../../../api/standardRegulationLibraryApi'
@@ -866,8 +865,8 @@ export default {
const param = {}
param.manifest = Object.assign({}, values)
let func
- if (this.model.id) {
- param.manifest.id = this.model.id
+ if (this.model.manifest.id) {
+ param.manifest.id = this.model.manifest.id
func = marketRegulationListEdit
} else {
func = marketRegulationListAdd
diff --git a/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsList.vue b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsList.vue
index b7c6185..ccd3a5e 100644
--- a/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsList.vue
+++ b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsList.vue
@@ -79,8 +79,6 @@
{{ $t('newlyAdded') }}
{{ $t('release') }}
-
- {{ $t('batchDelete') }}
{{ $t('export') }}