|
@@ -6,7 +6,8 @@
|
|
<div class="one_left">
|
|
<div class="one_left">
|
|
<div class="button" @click="toAdd">发布供给</div>
|
|
<div class="button" @click="toAdd">发布供给</div>
|
|
<div class="button" @click="toExpert">导入数据</div>
|
|
<div class="button" @click="toExpert">导入数据</div>
|
|
- <div class="button" @click="toDownload">导出数据</div>
|
|
|
|
|
|
+ <!-- <div class="button" @click="toDownload">导出数据</div> -->
|
|
|
|
+ <custom-export table="Supply"></custom-export>
|
|
</div>
|
|
</div>
|
|
<div class="one_right">
|
|
<div class="one_right">
|
|
<el-input v-model="searchForm.name" style="width: 250px" size="large" placeholder="搜索" @change="search" :suffix-icon="Search" />
|
|
<el-input v-model="searchForm.name" style="width: 250px" size="large" placeholder="搜索" @change="search" :suffix-icon="Search" />
|
|
@@ -101,19 +102,6 @@
|
|
</el-col>
|
|
</el-col>
|
|
</el-col>
|
|
</el-col>
|
|
</transition>
|
|
</transition>
|
|
- <el-col :span="24" class="dialog_thr" v-if="dialog.type == '3'">
|
|
|
|
- <el-col :span="24" class="one">
|
|
|
|
- <el-checkbox :indeterminate="isIndeterminate" v-model="checkAll" @change="handleCheckAllChange">全选</el-checkbox>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="24" class="two">
|
|
|
|
- <el-checkbox-group v-model="checkedExport" @change="checkedExportChange">
|
|
|
|
- <el-checkbox v-for="i in formFields" :label="i" :key="i.model">{{ i.label }}</el-checkbox>
|
|
|
|
- </el-checkbox-group>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="24" class="btn">
|
|
|
|
- <el-button type="primary" size="mini" @click="toFile()">导出</el-button>
|
|
|
|
- </el-col>
|
|
|
|
- </el-col>
|
|
|
|
<el-col :span="24" class="dialog_four" v-if="dialog.type == '4'">
|
|
<el-col :span="24" class="dialog_four" v-if="dialog.type == '4'">
|
|
<el-row justify="center">
|
|
<el-row justify="center">
|
|
<el-col :span="16">
|
|
<el-col :span="16">
|
|
@@ -425,10 +413,7 @@ const checkedExportChange = (value) => {
|
|
const toExpert = () => {
|
|
const toExpert = () => {
|
|
dialog.value = { type: '4', show: true, title: '导入数据' }
|
|
dialog.value = { type: '4', show: true, title: '导入数据' }
|
|
}
|
|
}
|
|
-// 导出数据
|
|
|
|
-const toDownload = () => {
|
|
|
|
- dialog.value = { type: '3', show: true, title: '导出数据' }
|
|
|
|
-}
|
|
|
|
|
|
+// 导出数据转到组件
|
|
|
|
|
|
// 下载导入模板
|
|
// 下载导入模板
|
|
const toTemplate = () => {
|
|
const toTemplate = () => {
|
|
@@ -463,21 +448,6 @@ const onImport = async () => {
|
|
msgbox.close()
|
|
msgbox.close()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
-// 导出数据
|
|
|
|
-const toFile = async () => {
|
|
|
|
- if (checkedExport.value.length > 0) {
|
|
|
|
- const reqData = { table: 'supply', config: checkedExport.value, user: user.value.id }
|
|
|
|
- const res = await utilStore.toExport(reqData)
|
|
|
|
- if (res.errcode == '0') {
|
|
|
|
- ElMessage({ type: `success`, message: `导出成功` })
|
|
|
|
- window.open(res.data)
|
|
|
|
- }
|
|
|
|
- toClose()
|
|
|
|
- } else {
|
|
|
|
- ElMessage({ type: `warning`, message: `请选择导出信息字段` })
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
// 分页
|
|
// 分页
|
|
const changePage = (page = currentPage.value) => {
|
|
const changePage = (page = currentPage.value) => {
|
|
search({ skip: (page - 1) * limit, limit: limit })
|
|
search({ skip: (page - 1) * limit, limit: limit })
|
|
@@ -490,6 +460,7 @@ const sizeChange = (limits) => {
|
|
</script>
|
|
</script>
|
|
<style scoped lang="scss">
|
|
<style scoped lang="scss">
|
|
.main {
|
|
.main {
|
|
|
|
+ height:85vh;
|
|
.one {
|
|
.one {
|
|
height: 50px;
|
|
height: 50px;
|
|
display: flex;
|
|
display: flex;
|