diff --git a/src/pages/details/otherLawsStandDetails/index.vue b/src/pages/details/otherLawsStandDetails/index.vue index 71eb0f0fa..1180a29ef 100644 --- a/src/pages/details/otherLawsStandDetails/index.vue +++ b/src/pages/details/otherLawsStandDetails/index.vue @@ -6,8 +6,8 @@ {{sarStandardsInfoEO.lawsNumber}}-{{sarStandardsInfoEO.lawsYear}} 《{{sarStandardsInfoEO.lawsName}}》 企标详情 -
-
+
+
-
-
{{ item.label }}
-
-
-
{{ item.label }}
- - -
- - - 更新LOG + +
+
+
+ + + 更新LOG +
+
-
-
- - +
+ +
更多
@@ -886,13 +896,26 @@ export default { components: { PutQuestionButton }, + filters: { + ellipsis (value) { + if (!value) return '' + if (value.length > 12) { + return value.slice(0,12) + '...' + } + return value + } + }, data () { return { + activeNames: ['基础信息'], + activeState: false, visiblePlanCheck: false, form: {}, relateDialog: false, + relateDialog1: false, relateList: [], relateNowList: [], + relateNowList1: [], sarType: sarType, loading: true, showItemInfoModal: false, @@ -1091,6 +1114,14 @@ export default { watch: { }, methods: { + handleChange(val) { + console.log(val) + }, + handleChange1(val) { + if(val && val === '基础信息'){ + this.activeState = true + } + }, getPlanStatusName(status) { switch (status) { case "1": @@ -2097,6 +2128,62 @@ export default {