1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!--
- * @Author: git config user.name
- * @Date: 2022-06-21 10:25:10
- * @LastEditors: howie
- * @LastEditTime: 2022-06-21 11:09:29
- * @FilePath: \supply-front\src\views\supply\policy\components\record.vue
- * @Description:操作记录页面
- *
- * Copyright (c) 2022 , All Rights Reserved.
- -->
- <template>
- <div>
- <my-table-info />
- </div>
- </template>
- <script>
- import myTableInfo from "./common/table_info";
- export default {
- data() {
- return {
- dataList: [],
- columns: [
- {
- prop: "saleCode",
- lable: "操作类型",
- widht: 160,
- },
- {
- prop: "saleCode",
- lable: "操作人",
- widht: 160,
- },
- {
- prop: "saleCode",
- lable: "所属单位",
- widht: 160,
- },
- {
- prop: "saleCode",
- lable: "操作时间",
- widht: 160,
- },
- ],
- };
- },
- components: {
- myTableInfo,
- },
- };
- </script>
- <style lang="scss" scoped></style>
|