农经大屏
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
458 B

  1. import Pannel from '@/components/pannel/index.vue';
  2. import ScrollTable from '@/components/scroll-table/index.vue';
  3. export default {
  4. components: {
  5. ScrollTable,
  6. Pannel
  7. },
  8. data () {
  9. return {
  10. headers: ['合同编码', '合同名称', '合同截止日期', '部门'],
  11. data: [['合同编码', '合同名称', '合同截止日期', '部门']]
  12. };
  13. },
  14. created () {
  15. },
  16. mounted () {
  17. },
  18. methods: {
  19. }
  20. };