page5.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <div id="page5">
  3. <el-row>
  4. <el-col :span="6" :offset="1" style="font-size:24px;padding-bottom:10px">五,现场测试(检测,测产)意见</el-col>
  5. </el-row>
  6. <div :style="`width:${width};height:${height};border:2px solid;position: relative;`">
  7. <div style="position:absolute;bottom:115px;right:300px">
  8. <div style="padding:15px">测试组长签字:</div>
  9. <div style="padding:15px">评价专家组长签字:</div>
  10. <div style="padding:30px 0 10px 150px">
  11. <span style="padding-left:20px">年</span>
  12. <span style="padding-left:20px">月</span>
  13. <span style="padding-left:20px">日</span>
  14. </div>
  15. </div>
  16. </div>
  17. <el-row>
  18. <el-col :span="14" style="text-align:right;padding-right:50px">(加盖吉林省科技成果评价专用章有效)</el-col>
  19. </el-row>
  20. </div>
  21. </template>
  22. <script>
  23. import { mapState, createNamespacedHelpers } from 'vuex';
  24. export default {
  25. name: 'page5',
  26. props: {},
  27. components: {},
  28. data: function() {
  29. return {
  30. width: '60%',
  31. height: '1000px',
  32. };
  33. },
  34. created() {},
  35. methods: {},
  36. computed: {
  37. ...mapState(['user', 'menuParams']),
  38. pageTitle() {
  39. return `${this.$route.meta.title}`;
  40. },
  41. },
  42. metaInfo() {
  43. return { title: this.$route.meta.title };
  44. },
  45. };
  46. </script>
  47. <style lang="less" scoped></style>