record.vue 1008 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!--
  2. * @Author: git config user.name
  3. * @Date: 2022-06-21 10:25:10
  4. * @LastEditors: howie
  5. * @LastEditTime: 2022-06-21 11:09:29
  6. * @FilePath: \supply-front\src\views\supply\policy\components\record.vue
  7. * @Description:操作记录页面
  8. *
  9. * Copyright (c) 2022 , All Rights Reserved.
  10. -->
  11. <template>
  12. <div>
  13. <my-table-info />
  14. </div>
  15. </template>
  16. <script>
  17. import myTableInfo from "./common/table_info";
  18. export default {
  19. data() {
  20. return {
  21. dataList: [],
  22. columns: [
  23. {
  24. prop: "saleCode",
  25. lable: "操作类型",
  26. widht: 160,
  27. },
  28. {
  29. prop: "saleCode",
  30. lable: "操作人",
  31. widht: 160,
  32. },
  33. {
  34. prop: "saleCode",
  35. lable: "所属单位",
  36. widht: 160,
  37. },
  38. {
  39. prop: "saleCode",
  40. lable: "操作时间",
  41. widht: 160,
  42. },
  43. ],
  44. };
  45. },
  46. components: {
  47. myTableInfo,
  48. },
  49. };
  50. </script>
  51. <style lang="scss" scoped></style>