12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <div id="page5">
- <el-row>
- <el-col :span="6" :offset="1" style="font-size:24px;padding-bottom:10px">五,现场测试(检测,测产)意见</el-col>
- </el-row>
- <div :style="`width:${width};height:${height};border:2px solid;position: relative;`">
- <div style="position:absolute;bottom:115px;right:300px">
- <div style="padding:15px">测试组长签字:</div>
- <div style="padding:15px">评价专家组长签字:</div>
- <div style="padding:30px 0 10px 150px">
- <span style="padding-left:20px">年</span>
- <span style="padding-left:20px">月</span>
- <span style="padding-left:20px">日</span>
- </div>
- </div>
- </div>
- <el-row>
- <el-col :span="14" style="text-align:right;padding-right:50px">(加盖吉林省科技成果评价专用章有效)</el-col>
- </el-row>
- </div>
- </template>
- <script>
- import { mapState, createNamespacedHelpers } from 'vuex';
- export default {
- name: 'page5',
- props: {},
- components: {},
- data: function() {
- return {
- width: '60%',
- height: '1000px',
- };
- },
- created() {},
- methods: {},
- computed: {
- ...mapState(['user', 'menuParams']),
- pageTitle() {
- return `${this.$route.meta.title}`;
- },
- },
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- };
- </script>
- <style lang="less" scoped></style>
|