123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- </template>
- <script>
- import Minxin from "@/mixin";
- import { getId, getMaterialList } from "@/api/supply/sales";
- import Pagination from "./Pagination";
- export default {
- mixins: [Minxin],
- props: {
- conditList: {
- type: Array,
- default: [],
- },
- },
- data() {
- return {
- input: "",
- centerDialogVisible: false,
- value1: [new Date(2000, 10, 10, 10, 10), new Date(2000, 10, 11, 10, 10)],
- tableData: [
- {
- date: "2016-05-03",
- name: "王小虎",
- address: "上海市普陀区金沙江路 1518 弄",
- },
- ],
- type:''
- };
- },
- methods: {
- getList() {
- // this.getMaterialList();
- },
- },
- components: {
- Pagination,
- },
- };
- </script>
- <style lang="scss" scoped>
- </style>
|