style: 明细导出等样式调整

This commit is contained in:
wangjiahao 2023-01-03 17:26:33 +08:00
parent 6c1cf41828
commit e225a60b95
6 changed files with 52 additions and 50 deletions

View File

@ -284,7 +284,7 @@ export default {
return this.curComponent.type === 'view' && this.terminal === 'pc' && this.curComponent.propValue.innerType !== 'richTextView'
},
enlargeShow() {
return this.curComponent.type === 'view' && this.curComponent.propValue.innerType !== 'richTextView'
return this.curComponent.type === 'view' && this.curComponent.propValue.innerType !== 'richTextView' && !this.curComponent.propValue.innerType.includes('table')
},
selectFieldShow() {
return this.activeModel === 'edit' && this.curComponent.type === 'view' && this.curComponent.propValue.innerType === 'richTextView' && this.curComponent.editing

View File

@ -287,6 +287,9 @@ export default {
return this.$store.state.panel.mainActiveName
},
showUnpublishedArea() {
if (this.canvasId !== 'canvas-main') {
return false
}
if (this.showPosition === 'edit') {
return false
} else if (this.panelInfo && this.panelInfo.showType === 'view') {

View File

@ -226,7 +226,7 @@ export default {
.condition-main {
position: absolute;
overflow: auto;
overflow: hidden;
top: 0px;
right: 0px;
bottom: 0px;

View File

@ -93,7 +93,7 @@
</template>
<script>
import { loadTree, loadShareOutTree, removePanelShares } from '@/api/panel/share'
import { loadShareOutTree, loadTree, removePanelShares } from '@/api/panel/share'
import { uuid } from 'vue-uuid'
import { initPanelData, viewPanelLog } from '@/api/panel/panel'
import { proxyInitPanelData } from '@/api/panel/shareProxy'
@ -142,7 +142,6 @@ export default {
refreshMyShareOut() {
this.initOutData().then(res => {
this.outData = res.data
this.setMainNull()
})
},
initData() {

View File

@ -79,7 +79,7 @@ export default {
}
},
activeName: function(newVal, oldVal) {
if (newVal !== 'PanelMain') {
if (newVal !== 'PanelList') {
this.clear()
}
}