123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <keep-alive>
- <div style="box-sizing: content-box;" :style="containerComputedStyle">
- <!-- <drag-tool :unique="data.unique" @delete="deleteModule" :is-edit="isEdit" @copy="copyModule" @active="activeModule">-->
- <el-row :style="moduleComputedStyle">
- <slot></slot>
- </el-row>
- <!-- </drag-tool>-->
- </div>
- </keep-alive>
- </template>
- <script>
- import mixin from '../../mixinnew'
- import DragTool from "../DragTool";
- export default {
- name: "row-container",
- components: {DragTool},
- mixins: [mixin],
- title: '行布局',
- data(){
- return{
- }
- },
- dataTpl: {
- tpl_id: 9,
- tpl_type: 'BOARD_ITEM',
- unique:'',
- isEdit:true,
- moduleIconClass:'icon-Row',
- moduleConfig:{
- moduleStyle: {
- borderColor: '',
- borderWidth:'0px',
- borderRadius:'0px',
- borderStyle:'solid',
- backgroundColor:'',
- marginLeft:'0px',
- marginTop:'0px',
- marginRight:'0px',
- marginBottom:'0px',
- },
- styleConfig:{
- borderColorWithNurse:'', //边框颜色跟随的护理信息分类
- backgroundColorWithNurse:'', //模块背景色跟随的护理信息分类
- moduleFixed:false,
- boxShadowShow:false,
- boxShadowColor:''
- },
- dataConfig:{
- }
- },
- children:[]
- }
- }
- </script>
- <style scoped>
- </style>
|