79e95008 by xiaomiao
2 parents 6e06adc1 e3e00fb3
1 /* 1 /*
2 * @Description: 引入公共组件 2 * @Description: 引入公共组件
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-04-26 17:26:12 4 * @LastEditTime: 2023-04-28 13:30:31
5 */ 5 */
6 import dialogBox from '@/components/dialogBox/dialogBox.vue' 6 import dialogBox from '@/components/DialogBox/dialogBox.vue'
7 import LbTable from '@/components/LbTable/lb-table.vue' 7 import LbTable from '@/components/LbTable/lb-table.vue'
8 import Theme from '@/components/Theme/theme.vue' 8 import Theme from '@/components/Theme/theme.vue'
9 import Popup from '@/components/Popup/index' 9 import Popup from '@/components/Popup/index'
......
...@@ -47,8 +47,8 @@ ...@@ -47,8 +47,8 @@
47 </template> 47 </template>
48 48
49 <script> 49 <script>
50 import LbColumn from './lb-column' 50 import LbColumn from './lb-column'
51 export default { 51 export default {
52 props: { 52 props: {
53 column: Array, 53 column: Array,
54 data: Array, 54 data: Array,
...@@ -163,7 +163,7 @@ export default { ...@@ -163,7 +163,7 @@ export default {
163 _this.tableHeight = window.innerHeight - _this.heightNum 163 _this.tableHeight = window.innerHeight - _this.heightNum
164 } 164 }
165 } else { 165 } else {
166 this.tableHeight = this.heightNum 166 // this.tableHeight = this.heightNum
167 this.$nextTick(() => { 167 this.$nextTick(() => {
168 this.minHeight && (document.getElementById('heightNumSetting').style.minHeight = this.minHeight + 'px') 168 this.minHeight && (document.getElementById('heightNumSetting').style.minHeight = this.minHeight + 'px')
169 }) 169 })
...@@ -266,24 +266,24 @@ export default { ...@@ -266,24 +266,24 @@ export default {
266 this.getMergeArr(this.data, this.merge) 266 this.getMergeArr(this.data, this.merge)
267 } 267 }
268 }, 268 },
269 } 269 }
270 </script> 270 </script>
271 <style rel="stylesheet/scss" scoped lang="scss"> 271 <style rel="stylesheet/scss" scoped lang="scss">
272 .lb-table { 272 .lb-table {
273 margin-top: 1px; 273 margin-top: 1px;
274 274
275 .interlaced { 275 .interlaced {
276 background: #fafcff; 276 background: #fafcff;
277 border: 1px solid #ebf2fa; 277 border: 1px solid #ebf2fa;
278 } 278 }
279 } 279 }
280 280
281 /deep/.el-table .cell { 281 /deep/.el-table .cell {
282 padding-left: 3px; 282 padding-left: 3px;
283 padding-right: 3px; 283 padding-right: 3px;
284 } 284 }
285 285
286 /deep/.el-radio__label { 286 /deep/.el-radio__label {
287 display: none; 287 display: none;
288 } 288 }
289 </style> 289 </style>
......
1 <template> 1 <template>
2 <lb-table :column="column" :maxHeight="300" heightNumSetting :pagination="false" :key="key" :data="tableData"> 2 <lb-table :column="column" :maxHeight="200" :heightNumSetting="true" :pagination="false" :key="key" :data="tableData">
3 </lb-table> 3 </lb-table>
4 </template> 4 </template>
5 <script> 5 <script>
6 import addQlr from './addQlr.vue' 6 import addQlr from './addQlr.vue'
7 import { mapGetters } from 'vuex' 7 import { mapGetters } from 'vuex'
8 export default { 8 export default {
9 components: { 9 components: {
10 addQlr 10 addQlr
11 }, 11 },
...@@ -111,8 +111,7 @@ export default { ...@@ -111,8 +111,7 @@ export default {
111 }, 111 },
112 methods: { 112 methods: {
113 } 113 }
114 } 114 }
115 </script> 115 </script>
116 <style scoped lang='scss'> 116 <style scoped lang='scss'>
117
118 </style> 117 </style>
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -154,10 +154,10 @@ ...@@ -154,10 +154,10 @@
154 </div> 154 </div>
155 </template> 155 </template>
156 <script> 156 <script>
157 import cfBdcdyTable from "@/views/workflow/components/cfBdcdyTable"; 157 import cfBdcdyTable from "@/views/workflow/components/cfBdcdyTable";
158 import { BatchInit, batchSaveData } from "@/api/workflow/cfdjFlow.js"; 158 import { BatchInit, batchSaveData } from "@/api/workflow/cfdjFlow.js";
159 import { mapGetters } from "vuex"; 159 import { mapGetters } from "vuex";
160 export default { 160 export default {
161 data () { 161 data () {
162 return { 162 return {
163 disabled: true, 163 disabled: true,
...@@ -166,7 +166,10 @@ export default { ...@@ -166,7 +166,10 @@ export default {
166 //传递参数 166 //传递参数
167 propsParam: {}, 167 propsParam: {},
168 //页面数据 168 //页面数据
169 ruleForm: {}, 169 ruleForm: {
170 slywxx: {},
171 cfdj: {},
172 },
170 isJfOperation: false, 173 isJfOperation: false,
171 tableData: [] 174 tableData: []
172 }; 175 };
...@@ -183,10 +186,7 @@ export default { ...@@ -183,10 +186,7 @@ export default {
183 if (res.code === 200 && res.result) { 186 if (res.code === 200 && res.result) {
184 this.ruleForm = res.result 187 this.ruleForm = res.result
185 } 188 }
186 }); 189 })
187 },
188 watch: {
189
190 }, 190 },
191 components: { cfBdcdyTable }, 191 components: { cfBdcdyTable },
192 props: { 192 props: {
...@@ -220,9 +220,9 @@ export default { ...@@ -220,9 +220,9 @@ export default {
220 this.ruleForm.cfdj.cflxmc = cflxItem.dname; 220 this.ruleForm.cfdj.cflxmc = cflxItem.dname;
221 } 221 }
222 }, 222 },
223 }; 223 };
224 </script> 224 </script>
225 <style scoped lang='scss'> 225 <style scoped lang='scss'>
226 @import "~@/styles/public.scss"; 226 @import "~@/styles/public.scss";
227 @import "~@/styles/slxx/slxx.scss"; 227 @import "~@/styles/slxx/slxx.scss";
228 </style> 228 </style>
...\ No newline at end of file ...\ No newline at end of file
......