diff --git a/src/views/workCenter/standardComplianceProcess/components/InitialBasicServiceInfo.vue b/src/views/workCenter/standardComplianceProcess/components/InitialBasicServiceInfo.vue
index 607e1187..3018913f 100644
--- a/src/views/workCenter/standardComplianceProcess/components/InitialBasicServiceInfo.vue
+++ b/src/views/workCenter/standardComplianceProcess/components/InitialBasicServiceInfo.vue
@@ -41,7 +41,10 @@
-
+
@@ -78,6 +81,7 @@ export default {
},
data () {
return {
+ StandardSource,
columns: [
// 标准编号
{
diff --git a/src/views/workCenter/standardComplianceProcess/modules/SelectStandardDrawer.vue b/src/views/workCenter/standardComplianceProcess/modules/SelectStandardDrawer.vue
index 1a602aaa..dba2ee39 100644
--- a/src/views/workCenter/standardComplianceProcess/modules/SelectStandardDrawer.vue
+++ b/src/views/workCenter/standardComplianceProcess/modules/SelectStandardDrawer.vue
@@ -239,7 +239,9 @@ export default {
if (res.success) {
this.dataList = res.result.records
this.ipagination.total = res.result.total
- this.selectedRowKeys = this.value ? this.value.split(',') : []
+ if (!this.selectedRowKeys || this.selectedRowKeys.length === 0) {
+ this.selectedRowKeys = this.value ? this.value.split(',') : []
+ }
} else {
this.dataList = []
}