|
|
|
@ -28,12 +28,24 @@
|
|
|
|
|
<div class="avue-crud__header"> |
|
|
|
|
<!-- 头部左侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__left"> |
|
|
|
|
<!-- 新增 --> |
|
|
|
|
<el-button type="primary" icon="Plus" @click="handleAdd">新 增</el-button> |
|
|
|
|
<el-button type="primary" icon="Delete" @click="() => handleDelete(true)" |
|
|
|
|
>删 除</el-button |
|
|
|
|
> |
|
|
|
|
|
|
|
|
|
<!-- 删除 --> |
|
|
|
|
<el-button type="primary" icon="Delete" @click="() => handleDelete(true)"> |
|
|
|
|
删 除 |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
<!-- 导出 --> |
|
|
|
|
<el-button type="primary" icon="Download" @click="handleExport">导 出</el-button> |
|
|
|
|
<el-button type="primary" icon="Upload" @click="searchChange">导 入</el-button> |
|
|
|
|
|
|
|
|
|
<!-- 导入 --> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
icon="Upload" |
|
|
|
|
@click="() => (details.popUpShow.UploadPackageDelivery = true)" |
|
|
|
|
>导 入 |
|
|
|
|
</el-button> |
|
|
|
|
</div> |
|
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__right"> |
|
|
|
@ -84,6 +96,23 @@
|
|
|
|
|
</div> |
|
|
|
|
</basic-container> |
|
|
|
|
|
|
|
|
|
<!-- 上传 --> |
|
|
|
|
<MyUpload |
|
|
|
|
ref="myUpload" |
|
|
|
|
v-model="details.popUpShow.UploadPackageDelivery" |
|
|
|
|
templateSrc="" |
|
|
|
|
uploadAddress="/api/logpm-basicdata/vehicle/import-basicdataVehicle" |
|
|
|
|
isDefined |
|
|
|
|
:success=" |
|
|
|
|
() => { |
|
|
|
|
details.popUpShow.UploadPackageDelivery = false; |
|
|
|
|
onLoad(); |
|
|
|
|
} |
|
|
|
|
" |
|
|
|
|
> |
|
|
|
|
<!-- <el-button type="danger" icon="Download" @click="handleDownloadTemplate"> 下载模板 </el-button> --> |
|
|
|
|
</MyUpload> |
|
|
|
|
|
|
|
|
|
<!-- 列表配置显示 --> |
|
|
|
|
<edittablehead |
|
|
|
|
@closce="showdrawer" |
|
|
|
@ -93,7 +122,7 @@
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
|
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue'; |
|
|
|
|
import { ref, reactive, toRefs, computed, onMounted, nextTick, getCurrentInstance } from 'vue'; |
|
|
|
|
import functions from '@/utils/functions.js'; |
|
|
|
|
import dayjs from 'dayjs'; |
|
|
|
|
import { mapGetters } from 'vuex'; |
|
|
|
@ -115,6 +144,9 @@ import columnList from '@/option/basicdata/basicdataVehicle2.js';
|
|
|
|
|
import { useStore } from 'vuex'; |
|
|
|
|
import { useRouter } from 'vue-router'; |
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'; |
|
|
|
|
import { exportBlob } from '@/api/common'; |
|
|
|
|
import { getToken } from '@/utils/auth'; |
|
|
|
|
import { dateNow } from '@/utils/date'; |
|
|
|
|
import { |
|
|
|
|
getList, |
|
|
|
|
getDetail, |
|
|
|
@ -194,6 +226,8 @@ const details = reactive<any>({
|
|
|
|
|
popUpShow: { |
|
|
|
|
/** 图片预览 */ |
|
|
|
|
abnormalVisited: false, |
|
|
|
|
/** 上传 */ |
|
|
|
|
UploadPackageDelivery: false, |
|
|
|
|
}, |
|
|
|
|
/** 列表Dom节点 */ |
|
|
|
|
listNode: '', |
|
|
|
@ -208,6 +242,8 @@ const details = reactive<any>({
|
|
|
|
|
const { search, query, shortcuts, stockupDate, data, loadingObj, selectionList, drawerShow, page } = |
|
|
|
|
toRefs(details); |
|
|
|
|
|
|
|
|
|
const instance = getCurrentInstance(); |
|
|
|
|
|
|
|
|
|
/** vuex */ |
|
|
|
|
const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList'])); |
|
|
|
|
|
|
|
|
@ -451,7 +487,40 @@ const handleDelete = (isBatch, row: any = {}) => {
|
|
|
|
|
|
|
|
|
|
/** 导出 */ |
|
|
|
|
const handleExport = () => { |
|
|
|
|
getVehicleExport(); |
|
|
|
|
console.log('instance :>> ', instance); |
|
|
|
|
|
|
|
|
|
if (!details.selectionList.length) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '请勾选要导出的数据', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let downloadUrl = `/logpm-basicdata/vehicle/export-basicdataVehicle?Blade-Auth=${getToken()}`; |
|
|
|
|
let submitData = { |
|
|
|
|
ids: '', |
|
|
|
|
}; |
|
|
|
|
submitData.ids = details.selectionList.map(item => item.id).join(','); |
|
|
|
|
ElMessageBox.confirm('是否导出数据?', '提示', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}).then(async () => { |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
const res = await exportBlob(downloadUrl, submitData); |
|
|
|
|
const { status, data } = res; |
|
|
|
|
if (status !== 200) retrun; |
|
|
|
|
|
|
|
|
|
downloadXls(res.data, `车辆信息导出${dateNow()}.xlsx`); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
details.loadingObj.pageLoading = false; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 导入 */ |
|
|
|
|