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.

102 lines
2.4 KiB

11 months ago
<template>
11 months ago
<div class="app-container" v-loading="loading">
11 months ago
<el-form
:model="queryParams"
ref="queryRef"
:inline="true"
:rules="rules"
label-width="68px"
>
11 months ago
<el-form-item label="订单号" prop="orderNo">
<el-input
v-model="queryParams.orderNo"
placeholder="请输入订单号"
clearable
@keyup.enter="handleQuery"
/>
</el-form-item>
<el-form-item>
11 months ago
<el-button
type="primary"
11 months ago
icon="Download"
11 months ago
@click="handleExport('changchun')"
>导出长春</el-button
>
11 months ago
<el-button type="primary" icon="Download" @click="handleExport('foshan')"
11 months ago
>导出佛山青岛</el-button
>
11 months ago
<el-button type="primary" icon="Download" @click="handleExport('guowai1')"
11 months ago
>导出国外(国力)</el-button
11 months ago
>
11 months ago
<el-button type="primary" icon="Download" @click="handleExport('guowai2')"
11 months ago
>导出国外PO</el-button
11 months ago
>
<el-button type="info" plain icon="Refresh" @click="resetQuery"
>重置</el-button
>
11 months ago
</el-form-item>
</el-form>
</div>
</template>
<script setup name="Excel">
import { exportOut } from "@/api/excel";
const uploadImgUrl = ref(import.meta.env.VITE_APP_BASE_API + "/profile/upload");
const { proxy } = getCurrentInstance();
const linuxAccessList = ref([]);
11 months ago
const loading = ref(false);
11 months ago
const data = reactive({
queryParams: {
orderNo: null,
11 months ago
type: "changchun",
11 months ago
},
11 months ago
rules: {
orderNo: [
{
required: true,
message: "订单号不能为空",
trigger: "blur",
},
{
max: 50,
message: "字符长度不得超于50",
trigger: "blur",
}
]
}
11 months ago
});
11 months ago
const { queryParams, rules } = toRefs(data);
11 months ago
/** 搜索按钮操作 */
function handleQuery() {
handleExport();
}
/** 重置按钮操作 */
function resetQuery() {
proxy.resetForm("queryRef");
}
/** 导出按钮操作 */
function handleExport(type) {
11 months ago
proxy.$refs["queryRef"].validate((valid) => {
if (valid) {
loading.value = true;
queryParams.value.type = type;
exportOut(queryParams.value).then((response) => {
response.data.forEach((item) => {
window.open(uploadImgUrl.value + "/" + item, "_blank");
});
loading.value = false;
11 months ago
}).catch(err => {
loading.value = false;
})
11 months ago
}
11 months ago
});
}
</script>