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.
53 lines
943 B
53 lines
943 B
2 years ago
|
<template>
|
||
|
<WkbTag>ssss</WkbTag>
|
||
|
<ListTable :data="data" :height="500" :props="prop"></ListTable>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import { reactive, onMounted } from "vue";
|
||
|
import { useStore } from "vuex";
|
||
|
import { WkbTag, ListTable } from "../packages";
|
||
|
|
||
|
const store = useStore();
|
||
|
|
||
|
const data = [
|
||
|
{ caseName: 111, taskName: 111, userId: 'test', content: 'content', createTime: 'createTime' }
|
||
|
]
|
||
|
|
||
|
const prop = [
|
||
|
{
|
||
|
code: "caseName",
|
||
|
name: "案件名称",
|
||
|
width: 110,
|
||
|
},
|
||
|
{
|
||
|
code: "taskName",
|
||
|
name: "任务名称",
|
||
|
width: 110,
|
||
|
},
|
||
|
{
|
||
|
code: "userId",
|
||
|
name: "用户名",
|
||
|
width: 100,
|
||
|
},
|
||
|
{
|
||
|
code: "content",
|
||
|
name: "日志内容",
|
||
|
width: 500,
|
||
|
},
|
||
|
{
|
||
|
code: "createTime",
|
||
|
name: "产生时间",
|
||
|
width: 170,
|
||
|
},
|
||
|
];
|
||
|
|
||
|
onMounted(() => {
|
||
|
|
||
|
});
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
@charset "UTF-8";
|
||
|
</style>
|