xw_admin/src/views/shipment/shipmentList/list.vue
2025-07-31 15:09:41 +08:00

317 lines
9.1 KiB
Vue

<template>
<el-container class="mainBox mainBoxHeaderNoBorder">
<el-main class="nopadding">
<div class="fieldsSwitchBox searchConditionItem" style="margin-top: 10px" v-if="!fieldsShow">
<div class="leftBox"></div>
<div class="rightBox" @click="searchClick">
<el-icon class="icon"><sc-icon-SwitchQuery /></el-icon>
<span class="name">切换查询方式</span>
</div>
</div>
<div class="searchMain searchMainMarginNone" v-if="!fieldsShow">
<scTableSearch ref="scSearch" :searchList="list.column" :paramsData="params" :searchShow="searchShow" @fetchSelectData="getSelectData" @changeHeaderData="getHeaderData"></scTableSearch>
<div class="searchItem searchBtn" v-if="searchHeaderShow">
<el-button :size="size" :icon="searchShow?'el-icon-ArrowUpBold':'el-icon-ArrowDownBold'" @click="searchShowClick">{{searchShow?'收起':'更多'}}</el-button>
<el-button :size="size" type="primary" icon="el-icon-search" @click="upSearch">查询</el-button>
<el-button :size="size" type="info" icon="el-icon-RefreshRight" @click="reset">重置</el-button>
<el-button type="danger" v-auth="'deleteOutStockImport'" plain :size="size" icon="el-icon-Delete" :disabled="selection.length==0" @click="batch_del"></el-button>
<scImport ref="scImport" :size="size" type="45" :httpDisabled="httpDisabled" title="批量导入出货清单" @parentParams="importUpload" @importSuccess="importSuccess">
<template #header>
<el-button v-auth="'outStockImport'" type="primary" :size="size" plain @click="importFile" style="margin-right: 12px;">批量导入</el-button>
</template>
<template #cover>
<el-checkbox v-model="importParams.is_save_repeat" :label="true">覆盖重复数据</el-checkbox>
</template>
<template #download>
<div v-auth="'shippingListImportTemplate'" @click="importTemplate">下载导入模版</div>
</template>
</scImport>
<scExport class="exportView" :size="size" @exportData="exportData" @updateShow="exportChangeShow" :show="exportShow" type="46">
<el-button :size="size" v-auth="'outStockExportList'" icon="sc-icon-Download" :disabled="exportShow" @click="exportData">导出</el-button>
</scExport>
</div>
</div>
<div class="searchMain searchMainMarginNone searchMainBodyMarginNone searchMainNoTop" v-if="fieldsShow">
<herderMultipleSearch @fieldsSwitch="fieldsSwitch" @fieldsSearch="fieldsSearch" :fieldsShow="fieldsShow" :searchList="list.fields"></herderMultipleSearch>
</div>
<scTable ref="table" :apiObj="list.apiObj" :column="list.column" row-key="id" stripe border :size="size" @selection-change="selectionChange" @columnBack="columnBack">
<el-table-column type="selection" align="center" width="40"></el-table-column>
<template #logo="scope">
<el-image class="logoCell" :src="scope.row.logo" preview-teleported :preview-src-list="[scope.row.logo]" fit="contain">
<template #error>
<div class="image-slot" style="text-align: center;font-size: 20px;">
<el-icon><el-icon-Picture /></el-icon>
</div>
</template>
</el-image>
</template>
</scTable>
</el-main>
</el-container>
</template>
<script>
import {eventBus} from "@/utils/eventBus";
export default {
name:"",
components: {
},
data() {
return {
fieldsShow:false,
size:'small',
httpDisabled:false,
dialog: {
save: false,
show: false,
},
list: {
apiObj: this.$API.shipment.out.stockImport,
column: [],
fields:{}
},
selection: [],
exportShow:false,
searchShow:false,
searchHeaderShow:false,
filterMap:{
data:{}
},
params: {},
importParams:{
is_save_repeat:false
}
}
},
provide(){
return{
filterUploadClick:this.filterClick,
filterUploadParams:this.filterParams,
filterTagClose:this.tagClose,
filterModelParams:this.filterModelParams,
}
},
watch:{
'list.column':{
handler(val){
this.searchHeaderShow = val.length>0 && val.some(em=>em.is_search);
},
immediate:false,
deep:true
}
},
computed:{
filterModelParams(){
return this.filterMap
},
},
methods: {
/** 检索开始 */
searchClick(){
this.fieldsShow = true;
},
fieldsSwitch(val){
this.fieldsShow = val;
},
fieldsSearch(params){
this.params = params;
this.upSearch();
},
columnBack(val, fieldsData){
this.list.column = val;
this.list.fields = fieldsData;
},
async filterClick(item) {
let {data, params} = item;
let filterParams = Object.assign(this.params,params);
this.filterMap.data = filterParams;
let searchParams = this.$TOOL.objCopy(this.params);
searchParams.field = ""
if (typeof data.prop === 'string') {
searchParams.field = data.prop;
} else {
searchParams.field = data.prop[0];
}
if (data.search_type == 'select' || data.search_type == 'checkbox') {
await this.getField(data,searchParams);
}
},
filterParams(params){
let filterParams = Object.assign(this.params,params);
this.filterMap.data = filterParams;
this.upSearch();
},
tagClose(params){
let filterParams = Object.assign(this.params,params);
this.filterMap.data = filterParams;
},
searchShowClick(){
this.searchShow = !this.searchShow;
eventBus.$emit('close-all-popovers');
},
getHeaderData(params){
this.params = params;
this.filterMap.data = params;
},
async getSelectData(item) {
let {data, params} = item;
this.params = params; // 列表需要的参数
this.filterMap.data = params; // 表头组件需要转 才能传的参数
let searchParams = this.$TOOL.objCopy(params);
searchParams.field = ""
if (typeof data.prop === 'string') {
searchParams.field = data.prop;
} else {
searchParams.field = data.prop[0];
}
if (data.search_type == 'select' || data.search_type == 'checkbox') {
await this.getField(data,searchParams)
}
},
async getField(data,searchParams) {
const res = await this.$API.shipment.out.field.post(searchParams);
if (res.code == 200) {
if (res.data && res.data.length > 0) {
res.data.forEach(item => {
item.label = item[data.prop];
item.value = item[data.prop];
})
}
this.list.column.forEach(item => {
if (item.prop == data.prop) {
item.data = res.data;
}
})
}
},
/** 检索结束 */
//添加
add(){
this.dialog.save = true;
this.$nextTick(() => {
this.$refs.saveDialog.open()
})
},
// 批量导入
importFile(){
this.$nextTick(()=>{
this.$refs.scImport.importFile();
})
},
async importTemplate() {
const res = await this.$API.shipment.out.template.post();
const blob = new Blob([res]);
const text = new Date().getTime();
const eLink = document.createElement('a');
eLink.download = "清单导入模版_"+text+'.xlsx';
eLink.style.display = 'none';
eLink.href = URL.createObjectURL(blob);
document.body.appendChild(eLink);
eLink.click();
URL.revokeObjectURL(eLink.href);
document.body.removeChild(eLink);
},
async importUpload(params) {
const updateOrAppend = (formData, key, value) => {
let found = false;
for (let [k] of formData.entries()) {
if (k === key) {
formData.set(k, value); // 替换已存在的值
found = true;
break;
}
}
if (!found) {
formData.append(key, value); // 如果没有找到,则添加新项
}
};
updateOrAppend(params, 'is_save_repeat', this.importParams.is_save_repeat);
this.httpDisabled = true;
const res = await this.$API.shipment.out.import.post(params);
if(res.code == 200){
this.$refs.scImport.setAnalysisShow(true);
this.$message.success('上传成功,开始导入数据');
}
},
importSuccess(refresh){
this.httpDisabled = false;
if(!refresh){
this.$refs.table.refresh()
}
},
// 删除
batch_del(){
this.$confirm(`确定删除选中 ${this.selection.length} 项吗?`, '提示', {
type: 'warning'
}).then(async () => {
const reqData = {ids: this.selection.map(em=>em.id)};
const res = await this.$API.shipment.out.deleteImport.post(reqData);
if(res.code == 200){
this.$refs.table.refresh()
this.$message.success("删除成功")
}else{
await this.$alert(res.message, "提示", {type: 'error'})
}
}).catch(()=>{})
},
//表格选择后回调事件
selectionChange(selection){
this.selection = selection;
},
// 下载导出
exportChangeShow(params){
if(params.type == 46){
this.exportShow = params.status==0?true:false
}
},
async exportData() {
if(this.exportShow) return
const res = await this.$API.shipment.out.stockExport.post(this.params);
if(res.code == 200){
this.exportShow = true;
this.$message.success('开始导出');
}
},
upSearch(){
this.$refs.table.upData(this.params);
},
reset(){
this.params = {};
this.filterMap.data = {};
this.$refs.scSearch.reload();
eventBus.$emit('reset-popovers');
this.$refs.table.reload();
},
handleSaveSuccess(){
this.$refs.table.refresh();
},
}
}
</script>
<style lang="scss" scoped>
.mainBox{
padding: 0;
}
.logoCell{
display: flex;
align-items: center;
height: 20px;
margin: 0 auto;
}
.exportView{
::v-deep .btnBox{
margin-left: 0;
}
}
</style>