reportTemplateDetail.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <!--新增、编辑、查看报告模板-->
  2. <template>
  3. <div class="panel">
  4. <div class="leftPanel">
  5. <el-form
  6. ref="form"
  7. :model="form"
  8. :rules="rules"
  9. label-width="200px"
  10. class="flexBox"
  11. >
  12. <div class="formItemBox">
  13. </div>
  14. </el-form>
  15. </div>
  16. <div class="rightPanel">
  17. </div>
  18. </div>
  19. </template>
  20. <script>
  21. import tableList from "@/components/grid/TableList";
  22. export default {
  23. name: "clusteringDetail",
  24. components: {tableList},
  25. data() {
  26. return {
  27. form: {
  28. a1:'',
  29. a2:'',
  30. a3:'',
  31. a4:''
  32. },
  33. rules: {
  34. }
  35. };
  36. },
  37. computed: {},
  38. methods: {
  39. save(){
  40. },
  41. cancel(){
  42. },
  43. },
  44. mounted() {
  45. },
  46. };
  47. </script>
  48. <style scoped lang="less">
  49. .panel{
  50. display: flex;
  51. flex: 1;
  52. padding: 15px 30px 30px;
  53. .leftPanel{
  54. width:67%;
  55. }
  56. .rightPanel{
  57. width: 33%;
  58. min-width: 322px;
  59. }
  60. }
  61. </style>