姜旭之
1 year ago
3 changed files with 45 additions and 20 deletions
@ -1,5 +1,43 @@ |
|||||
import html from "html"; |
import html from "html"; |
||||
|
import AppList from "../../../components/list/index.js"; |
||||
|
|
||||
export default { |
export default { |
||||
template: html`<a href="../assets/导入模版.zip" target="blank">导入模板下载</a>`, |
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 }; |
||||
|
}, |
||||
}; |
}; |
||||
|
Loading…
Reference in new issue