|
@@ -15,7 +15,7 @@
|
|
<!-- 没有tab的页面 -->
|
|
<!-- 没有tab的页面 -->
|
|
<div v-if='Object.keys(dialogInfo).length>0 && dialogInfo.children.length==0' style='margin:16px 24px 0 24px'>
|
|
<div v-if='Object.keys(dialogInfo).length>0 && dialogInfo.children.length==0' style='margin:16px 24px 0 24px'>
|
|
<!-- 原理图 -->
|
|
<!-- 原理图 -->
|
|
- <div v-if='dialogInfo.id.slice(2,4)=="YL"' style='width:100%;height:90vh;overflow:hidden'>
|
|
|
|
|
|
+ <div v-if='dialogInfo.id.slice(2,4)=="YL"' style='width:90%;overflow:hidden'>
|
|
<rotation :rotationImg='rotationImg'></rotation>
|
|
<rotation :rotationImg='rotationImg'></rotation>
|
|
</div>
|
|
</div>
|
|
<!-- 土建系统主要材料清单 -->
|
|
<!-- 土建系统主要材料清单 -->
|
|
@@ -57,13 +57,21 @@
|
|
:key='index1+index'
|
|
:key='index1+index'
|
|
:label='`${value.label}`'
|
|
:label='`${value.label}`'
|
|
:name='`${value.param.type_code}`'
|
|
:name='`${value.param.type_code}`'
|
|
- v-if='value.id.slice(2,4)=="YL" && eve.count>0'
|
|
|
|
|
|
+ v-if='value.id.slice(2,4)=="YL" && eve.count>0 && value.param.type_code!="FBT"'
|
|
>
|
|
>
|
|
<!-- 有tab的原理图 -->
|
|
<!-- 有tab的原理图 -->
|
|
<div style='width:100%;height:600px;overflow:hidden'>
|
|
<div style='width:100%;height:600px;overflow:hidden'>
|
|
<rotation :rotationImg='rotationImg'></rotation>
|
|
<rotation :rotationImg='rotationImg'></rotation>
|
|
</div>
|
|
</div>
|
|
</el-tab-pane>
|
|
</el-tab-pane>
|
|
|
|
+ <el-tab-pane
|
|
|
|
+ :key='index1+index'
|
|
|
|
+ :label='`${value.label}`'
|
|
|
|
+ :name='`${value.param.type_code}`'
|
|
|
|
+ v-if='value.id.slice(2,4)=="YL" && value.param.type_code=="FBT"'
|
|
|
|
+ >
|
|
|
|
+ <fenbuPic></fenbuPic>
|
|
|
|
+ </el-tab-pane>
|
|
</template>
|
|
</template>
|
|
</template>
|
|
</template>
|
|
</template>
|
|
</template>
|
|
@@ -86,6 +94,7 @@ import wxTable from './table/wxTable'
|
|
import recordDialog from './table/recordDialog'
|
|
import recordDialog from './table/recordDialog'
|
|
import djspTable from './table/djspTable'
|
|
import djspTable from './table/djspTable'
|
|
import { queryPic, queryTab } from '@/api/public.js'
|
|
import { queryPic, queryTab } from '@/api/public.js'
|
|
|
|
+import fenbuPic from './fenbuPic'
|
|
export default {
|
|
export default {
|
|
props: ['systemName', 'smsxt'],
|
|
props: ['systemName', 'smsxt'],
|
|
data() {
|
|
data() {
|
|
@@ -102,7 +111,7 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
mounted() {},
|
|
mounted() {},
|
|
- components: { tableList, tjTable, wbTable, zwTable, lookPage, standTable, otherTable, wxTable, recordDialog, djspTable },
|
|
|
|
|
|
+ components: { tableList, tjTable, wbTable, zwTable, lookPage, standTable, otherTable, wxTable, recordDialog, djspTable, fenbuPic },
|
|
methods: {
|
|
methods: {
|
|
//打开弹窗
|
|
//打开弹窗
|
|
showModal(item) {
|
|
showModal(item) {
|