Browse Source

feat: 调整

lanceJiang 1 year ago
parent
commit
162968a9b8

+ 1 - 0
src/components/Flow/FlowTypeDot.vue

@@ -82,6 +82,7 @@ defineProps({
 	}
 	}
 
 
 	.svg-icon {
 	.svg-icon {
+		display: inline;
 		font-size: 36px;
 		font-size: 36px;
 	}
 	}
 }
 }

+ 1 - 0
src/components/SvgIcon/index.vue

@@ -38,6 +38,7 @@ const styleExternalIcon = computed(() => {
 
 
 <style scoped>
 <style scoped>
 .svg-icon {
 .svg-icon {
+	display: inline-block;
 	width: 1em;
 	width: 1em;
 	height: 1em;
 	height: 1em;
 	vertical-align: -0.15em;
 	vertical-align: -0.15em;

+ 1 - 0
src/styles/lance-element/icon.scss

@@ -1,6 +1,7 @@
 @import "../variables.scss";
 @import "../variables.scss";
 // Icon 样式
 // Icon 样式
 .#{$prefix}icon {
 .#{$prefix}icon {
+	display: inline-block;
   width: 1em;
   width: 1em;
   height: 1em;
   height: 1em;
   vertical-align: -0.15em;
   vertical-align: -0.15em;

+ 11 - 2
src/views/flow/group/components/historyProcessList.vue

@@ -2,7 +2,7 @@
 	<el-dialog v-model="visibleDialog" class="le-dialog" title="历史版本" width="860" destroy-on-close :close-on-click-modal="false">
 	<el-dialog v-model="visibleDialog" class="le-dialog" title="历史版本" width="860" destroy-on-close :close-on-click-modal="false">
 		<!--  LeTable 组件使用  -->
 		<!--  LeTable 组件使用  -->
 		<LeTable
 		<LeTable
-			ref="tableRef"
+			class="local_table"
 			v-model:searchParams="tableOpts.searchParams"
 			v-model:searchParams="tableOpts.searchParams"
 			v-bind="tableOpts"
 			v-bind="tableOpts"
 			v-model:curRow="tableOpts.curRow"
 			v-model:curRow="tableOpts.curRow"
@@ -167,4 +167,13 @@ watch(
 )
 )
 </script>
 </script>
 
 
-<style></style>
+<style lang="scss" scoped>
+.local_table {
+	padding: 0;
+	:deep(.tableBody) {
+		.toolBarWrap {
+			display: none;
+		}
+	}
+}
+</style>