|
@@ -12,30 +12,38 @@
|
|
|
v-else
|
|
|
class="main-content"
|
|
|
>
|
|
|
- <div class="flex btn-wrap">
|
|
|
- <el-button
|
|
|
- :disabled="multipleSelection.length < 1"
|
|
|
- type="danger"
|
|
|
- @click="onDelete"
|
|
|
- >
|
|
|
- Delete
|
|
|
- </el-button>
|
|
|
- <el-button @click="downloadSample">Download XLSX sample</el-button>
|
|
|
+ <div class="flex between">
|
|
|
+ <div class="flex btn-wrap">
|
|
|
+ <el-button
|
|
|
+ :disabled="multipleSelection.length < 1"
|
|
|
+ type="danger"
|
|
|
+ @click="onDelete"
|
|
|
+ >
|
|
|
+ Delete
|
|
|
+ </el-button>
|
|
|
+ <el-button @click="downloadSample">Download XLSX sample</el-button>
|
|
|
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- @click="dialogVisible = true"
|
|
|
- >
|
|
|
- Upload Statement
|
|
|
- </el-button>
|
|
|
- <el-button @click="addRow">Add New Line</el-button>
|
|
|
- <el-button
|
|
|
- :disabled="tableData.length < 1"
|
|
|
- type="primary"
|
|
|
- @click="save"
|
|
|
- >
|
|
|
- Save
|
|
|
- </el-button>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ @click="dialogVisible = true"
|
|
|
+ >
|
|
|
+ Upload Statement
|
|
|
+ </el-button>
|
|
|
+ <el-button @click="addRow">Add New Line</el-button>
|
|
|
+ <el-button
|
|
|
+ :disabled="tableData.length < 1"
|
|
|
+ type="primary"
|
|
|
+ @click="save"
|
|
|
+ >
|
|
|
+ Save
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+ <div class="logo-area">
|
|
|
+ <img
|
|
|
+ :src="getLogoPath()"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="po-table">
|
|
|
<el-table
|
|
@@ -220,6 +228,10 @@ import * as XLSX from 'xlsx'
|
|
|
|
|
|
const loading = ref(false)
|
|
|
|
|
|
+const getLogoPath = function () {
|
|
|
+ return new URL('/assets/logo@2x.png', import.meta.url).href
|
|
|
+}
|
|
|
+
|
|
|
const multipleSelection = ref<IPoItem[]>([])
|
|
|
|
|
|
const handleSelectionChange = (val: IPoItem[]) => {
|
|
@@ -539,6 +551,11 @@ request
|
|
|
padding: 12px 0;
|
|
|
margin: 0 auto;
|
|
|
}
|
|
|
+.logo-area {
|
|
|
+ img {
|
|
|
+ height: 60px;
|
|
|
+ }
|
|
|
+}
|
|
|
.po-table {
|
|
|
width: 100%;
|
|
|
|