1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <!--新增、编辑、查看报告模板-->
- <template>
- <div class="panel">
- <div class="leftPanel">
- <el-form
- ref="form"
- :model="form"
- :rules="rules"
- label-width="200px"
- class="flexBox"
- >
- <div class="formItemBox">
-
- </div>
- </el-form>
- </div>
- <div class="rightPanel">
-
- </div>
-
- </div>
- </template>
- <script>
- import tableList from "@/components/grid/TableList";
- export default {
- name: "clusteringDetail",
- components: {tableList},
- data() {
- return {
- form: {
- a1:'',
- a2:'',
- a3:'',
- a4:''
- },
-
- rules: {
- }
- };
- },
- computed: {},
- methods: {
- save(){
- },
- cancel(){
- },
- },
- mounted() {
-
- },
- };
- </script>
- <style scoped lang="less">
- .panel{
- display: flex;
- flex: 1;
- padding: 15px 30px 30px;
- .leftPanel{
- width:67%;
- }
- .rightPanel{
- width: 33%;
- min-width: 322px;
- }
- }
- </style>
|