79e95008 by xiaomiao
2 parents 6e06adc1 e3e00fb3
/*
* @Description: 引入公共组件
* @Autor: renchao
* @LastEditTime: 2023-04-26 17:26:12
* @LastEditTime: 2023-04-28 13:30:31
*/
import dialogBox from '@/components/dialogBox/dialogBox.vue'
import dialogBox from '@/components/DialogBox/dialogBox.vue'
import LbTable from '@/components/LbTable/lb-table.vue'
import Theme from '@/components/Theme/theme.vue'
import Popup from '@/components/Popup/index'
......
......@@ -47,8 +47,8 @@
</template>
<script>
import LbColumn from './lb-column'
export default {
import LbColumn from './lb-column'
export default {
props: {
column: Array,
data: Array,
......@@ -163,7 +163,7 @@ export default {
_this.tableHeight = window.innerHeight - _this.heightNum
}
} else {
this.tableHeight = this.heightNum
// this.tableHeight = this.heightNum
this.$nextTick(() => {
this.minHeight && (document.getElementById('heightNumSetting').style.minHeight = this.minHeight + 'px')
})
......@@ -266,24 +266,24 @@ export default {
this.getMergeArr(this.data, this.merge)
}
},
}
}
</script>
<style rel="stylesheet/scss" scoped lang="scss">
.lb-table {
.lb-table {
margin-top: 1px;
.interlaced {
background: #fafcff;
border: 1px solid #ebf2fa;
}
}
}
/deep/.el-table .cell {
/deep/.el-table .cell {
padding-left: 3px;
padding-right: 3px;
}
}
/deep/.el-radio__label {
/deep/.el-radio__label {
display: none;
}
}
</style>
......
<template>
<lb-table :column="column" :maxHeight="300" heightNumSetting :pagination="false" :key="key" :data="tableData">
<lb-table :column="column" :maxHeight="200" :heightNumSetting="true" :pagination="false" :key="key" :data="tableData">
</lb-table>
</template>
<script>
import addQlr from './addQlr.vue'
import { mapGetters } from 'vuex'
export default {
import addQlr from './addQlr.vue'
import { mapGetters } from 'vuex'
export default {
components: {
addQlr
},
......@@ -111,8 +111,7 @@ export default {
},
methods: {
}
}
}
</script>
<style scoped lang='scss'>
</style>
\ No newline at end of file
......
......@@ -154,10 +154,10 @@
</div>
</template>
<script>
import cfBdcdyTable from "@/views/workflow/components/cfBdcdyTable";
import { BatchInit, batchSaveData } from "@/api/workflow/cfdjFlow.js";
import { mapGetters } from "vuex";
export default {
import cfBdcdyTable from "@/views/workflow/components/cfBdcdyTable";
import { BatchInit, batchSaveData } from "@/api/workflow/cfdjFlow.js";
import { mapGetters } from "vuex";
export default {
data () {
return {
disabled: true,
......@@ -166,7 +166,10 @@ export default {
//传递参数
propsParam: {},
//页面数据
ruleForm: {},
ruleForm: {
slywxx: {},
cfdj: {},
},
isJfOperation: false,
tableData: []
};
......@@ -183,10 +186,7 @@ export default {
if (res.code === 200 && res.result) {
this.ruleForm = res.result
}
});
},
watch: {
})
},
components: { cfBdcdyTable },
props: {
......@@ -220,9 +220,9 @@ export default {
this.ruleForm.cfdj.cflxmc = cflxItem.dname;
}
},
};
};
</script>
<style scoped lang='scss'>
@import "~@/styles/public.scss";
@import "~@/styles/slxx/slxx.scss";
@import "~@/styles/public.scss";
@import "~@/styles/slxx/slxx.scss";
</style>
\ No newline at end of file
......