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.
|
|
|
import html from "html";
|
|
|
|
import AppList from "../../../components/list/index.js";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: { AppList },
|
|
|
|
template: html`</app-list :config="config" @command="onCommand"></app-list>
|
|
|
|
<el-table :data="tableData" border style="width: 100%">
|
|
|
|
<el-table-column prop="date" label="custoner/type" width="180" />
|
|
|
|
<el-table-column prop="name" label="BBAC" width="180" />
|
|
|
|
<el-table-column prop="address" label="HBPO" width="180" />
|
|
|
|
</el-table>
|
|
|
|
`,
|
|
|
|
setup() {
|
|
|
|
const tableData = [
|
|
|
|
{
|
|
|
|
date: "JIS",
|
|
|
|
name: "√",
|
|
|
|
address: "√",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
date: "直供件",
|
|
|
|
name: "√",
|
|
|
|
address: "√",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
date: "印度件",
|
|
|
|
name: "√",
|
|
|
|
address: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
date: "备件",
|
|
|
|
name: "√",
|
|
|
|
address: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
date: "买单件",
|
|
|
|
name: "对比√ 开票×",
|
|
|
|
address: "√",
|
|
|
|
},
|
|
|
|
];
|
|
|
|
return { tableData };
|
|
|
|
},
|
|
|
|
};
|