diff --git a/src/pages/details/otherStandardDetails/index.vue b/src/pages/details/otherStandardDetails/index.vue
index 42e4a956c..ce703e2fa 100644
--- a/src/pages/details/otherStandardDetails/index.vue
+++ b/src/pages/details/otherStandardDetails/index.vue
@@ -57,7 +57,7 @@
@@ -82,9 +82,12 @@
:key="index"
@click="showItemsModel(child.attrField)"
class="decomposition-btn"
+ style="right:62px"
icon="icon-separate"
>标准分解单
+ 更多
{{
@@ -134,7 +137,7 @@
@@ -180,7 +183,7 @@
@@ -362,7 +365,7 @@
@@ -1045,6 +1048,40 @@
+
+
+
+
18) {
- return value.slice(0,18) + '...'
+ if (value.length > 12) {
+ return value.slice(0,12) + '...'
}
return value
}
@@ -1433,8 +1470,10 @@
AddKnowledgDialog: false,
knowledgeSharingDialog: false,
relateDialog: false,
+ relateDialog1: false,
relateList: [],
relateNowList: [],
+ relateNowList1: [],
loading: false,
showItemInfoModal: false,
standShowItemEO: {},
@@ -1672,6 +1711,14 @@
props: {},
watch: {},
methods: {
+ child1Func(child1){
+ const list = []
+ if(child1 && child1.length > 1){
+ list.push(child1[0])
+ return list
+ }
+ return child1
+ },
handleChange(val) {
console.log(val);
},
@@ -2878,6 +2925,10 @@
})
}
},
+ relateEvent1(list){
+ this.relateDialog1 = true
+ this.relateNowList1 = list
+ },
// 更新LOG
relateEvent() {
this.$http.get('lawss/sarUpdLog/getLogList', {
@@ -2911,6 +2962,10 @@
this.relateDialog = false
this.relateNowList = []
},
+ relateDialogClose1() {
+ this.relateDialog1 = false
+ this.relateNowList = []
+ },
halfClass(data, nextData, index) {
const halfType = ['INPUT_STR', 'DATE_PICKER', 'SEL_OPTION', 'INPUT_NUM']
let flag = false
@@ -3045,7 +3100,7 @@
// }
}
}
- if (location.label === '文本信息') {
+ if (location.label === '过程稿件') {
location.isShowImp = '0'
}
})
@@ -3053,7 +3108,7 @@
for (let i = 0; i < displayLocation.length; i++) {
// sss
- if(displayLocation[i].label !== '基础信息' && displayLocation[i].label !== '文本信息'){
+ if(displayLocation[i].label !== '基础信息' && displayLocation[i].label !== '过程稿件'){
const childList = displayLocation[i].child.filter ( item => item.value !== null && item.value !== '');
if(childList.length === 0){
displayLocation.splice(i,1)
@@ -3062,19 +3117,20 @@
}
displayLocation.forEach(location => {
// 动态属性字段-FBGBJBD 单独添加至基础信息
- const list = displayLocation.filter ( item => item.label === '文本信息');
+ const list = displayLocation.filter ( item => item.label === '过程稿件');
if(location.label === '基础信息' && list && list.length > 0){
if (!list[0].child) {
location['child1'] = []
}else {
const childList = list[0].child.filter ( item => item.attrField === 'FBGBJBD');
location['child1'] = childList
+
}
}
// 动态属性字段-SYRZ 单独添加至基础信息
const list2 = displayLocation.filter ( item => item.label === '适用范围');
if(location.label === '基础信息' && list2 && list2.length > 0){
- if (!list[0].child) {
+ if (!list2[0].child) {
location['child2'] = []
}else {
const childList = list2[0].child.filter ( item => item.attrField === 'SYRZ');