TabelTransfer.vue 796 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. </template>
  3. <script>
  4. import Minxin from "@/mixin";
  5. import { getId, getMaterialList } from "@/api/supply/sales";
  6. import Pagination from "./Pagination";
  7. export default {
  8. mixins: [Minxin],
  9. props: {
  10. conditList: {
  11. type: Array,
  12. default: [],
  13. },
  14. },
  15. data() {
  16. return {
  17. input: "",
  18. centerDialogVisible: false,
  19. value1: [new Date(2000, 10, 10, 10, 10), new Date(2000, 10, 11, 10, 10)],
  20. tableData: [
  21. {
  22. date: "2016-05-03",
  23. name: "王小虎",
  24. address: "上海市普陀区金沙江路 1518 弄",
  25. },
  26. ],
  27. type:''
  28. };
  29. },
  30. methods: {
  31. getList() {
  32. // this.getMaterialList();
  33. },
  34. },
  35. components: {
  36. Pagination,
  37. },
  38. };
  39. </script>
  40. <style lang="scss" scoped>
  41. </style>