14 changed files with 2004 additions and 667 deletions
@ -0,0 +1,38 @@
|
||||
import request from '@/axios'; |
||||
// 月度仓储成本统计表接口
|
||||
export const $_Getlist = params => { |
||||
return request({ |
||||
url: '/api/logpm-statisticsdata/expenseWarehouseMonth/list', |
||||
method: 'get', |
||||
params, |
||||
}); |
||||
}; |
||||
|
||||
// 获取仓库
|
||||
export const $_getMyWarehouseList = params => { |
||||
return request({ |
||||
url: '/api/logpm-basicdata/warehouse/getMyWarehouseList', |
||||
method: 'get', |
||||
params, |
||||
}); |
||||
}; |
||||
|
||||
//月度仓储成本统计导出
|
||||
export const $_expenseWarehouseMonth = params => { |
||||
return request({ |
||||
url: '/api/logpm-statisticsdata/expenseWarehouseMonth/export-expenseWarehouseMonth', |
||||
method: 'get', |
||||
params, |
||||
responseType: 'blob' |
||||
}); |
||||
}; |
||||
|
||||
// 月度订单仓储成本明细列表
|
||||
export const $_Monthlyorderwarehousing = params => { |
||||
return request({ |
||||
url: '/api/logpm-statisticsdata/expenseOrderWarehouseMonth/list', |
||||
method: 'get', |
||||
params, |
||||
}); |
||||
}; |
||||
|
@ -0,0 +1,364 @@
|
||||
export const columnList = [ |
||||
{ |
||||
prop: '', |
||||
label: '复选框', |
||||
type: 0, |
||||
width: 55, |
||||
fixed: true, |
||||
}, |
||||
{ |
||||
prop: '', |
||||
label: '序号', |
||||
type: 12, |
||||
values: '', |
||||
width: 55, |
||||
fixed: true, |
||||
}, |
||||
{ |
||||
prop: 'orderCode', |
||||
label: '订单自编号', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'brandName', |
||||
label: '品牌', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'clientName', |
||||
label: '客户名称', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'materialName', |
||||
label: '货物名称', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'firsts', |
||||
label: '一级品', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'second', |
||||
label: '二级品', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'thirdProduct', |
||||
label: '三级品', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'orderPackageCode', |
||||
label: '包条码', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'quantity', |
||||
label: '数量', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'conditions', |
||||
label: '包条类型', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'sku', |
||||
label: 'sku', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'materialCode', |
||||
label: '物料编码', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'a', |
||||
label: '上楼层数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'aa', |
||||
label: '费用', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: '', |
||||
label: '操作', |
||||
type: 6, |
||||
values: '', |
||||
width: '200', |
||||
checkarr: [], |
||||
fixed: 'right', |
||||
sortable: false, |
||||
}, |
||||
]; |
||||
|
||||
export const columnListTC = [ |
||||
{ |
||||
prop: '', |
||||
label: '复选框', |
||||
type: 0, |
||||
width: 55, |
||||
fixed: true, |
||||
}, |
||||
{ |
||||
prop: '', |
||||
label: '序号', |
||||
type: 12, |
||||
values: '', |
||||
width: 55, |
||||
fixed: true, |
||||
}, |
||||
{ |
||||
prop: 'orderCode', |
||||
label: '订单自编号', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'brandName', |
||||
label: '品牌', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'clientName', |
||||
label: '客户名称', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'materialName', |
||||
label: '货物名称', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'firsts', |
||||
label: '一级品', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'second', |
||||
label: '二级品', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'thirdProduct', |
||||
label: '三级品', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'orderPackageCode', |
||||
label: '包条码', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'quantity', |
||||
label: '数量', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'conditions', |
||||
label: '包条类型', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'sku', |
||||
label: 'sku', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'materialCode', |
||||
label: '物料编码', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'a', |
||||
label: '上楼层数', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'aa', |
||||
label: '费用', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: '', |
||||
label: '操作', |
||||
type: 6, |
||||
values: '', |
||||
width: '200', |
||||
checkarr: [], |
||||
fixed: 'right', |
||||
sortable: false, |
||||
}, |
||||
]; |
||||
|
@ -1,303 +1,401 @@
|
||||
<template> |
||||
<basic-container> |
||||
<!-- 首页表格 --> |
||||
<div class="avue-crud"> |
||||
<!-- 搜索模块 --> |
||||
<el-row v-if="search"> |
||||
<!-- 查询模块 --> |
||||
<el-form :inline="true" :model="query" class="el-fr-d"> |
||||
<!-- 查询按钮 --> |
||||
<el-form-item class="el-btn"> |
||||
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
||||
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
||||
<basic-container> |
||||
<!-- 首页表格 --> |
||||
<div class="avue-crud"> |
||||
<!-- 搜索模块 --> |
||||
<el-row v-if="search"> |
||||
<!-- 查询模块 --> |
||||
<el-form :inline="true" :model="queryTop" class="el-fr-d"> |
||||
<!-- 查询按钮 --> |
||||
<div> |
||||
<!-- <el-form-item label="客户名称"> |
||||
<el-input v-model="queryTop.orderNo" placeholder="请输入客户名称"></el-input> |
||||
</el-form-item> --> |
||||
<el-form-item label="目的仓"> |
||||
<el-select |
||||
v-model="queryTop.warehouse" |
||||
multiple |
||||
placeholder="请选择仓库" |
||||
style="min-width: 340px" |
||||
> |
||||
<el-option |
||||
v-for="item in warehouseList" |
||||
:key="item.value" |
||||
:label="item.label" |
||||
:value="item.value" |
||||
/> |
||||
</el-select> |
||||
</el-form-item> |
||||
<el-form-item label="结算年份"> |
||||
<el-date-picker |
||||
v-model="queryTop.costSettlementYear" |
||||
type="year" |
||||
placeholder="请选择年份" |
||||
value-format="YYYY" |
||||
/> |
||||
</el-form-item> |
||||
|
||||
<el-form-item label="结算月"> |
||||
<el-select v-model="queryTop.costSettlementMonth" placeholder="请选择月份"> |
||||
<el-option |
||||
v-for="item in monthList" |
||||
:key="item.value" |
||||
:label="item.label" |
||||
:value="item.value" |
||||
/> |
||||
</el-select> |
||||
</el-form-item> |
||||
</el-form> |
||||
</el-row> |
||||
|
||||
<!-- 控件模块 --> |
||||
<el-row> |
||||
<div class="avue-crud__header"> |
||||
<!-- 头部左侧按钮模块 --> |
||||
<div class="avue-crud__left"> |
||||
<el-button type="primary" @click="AddInfo"><el-icon><Plus /></el-icon>导出</el-button> |
||||
</div> |
||||
<!-- 头部右侧按钮模块 --> |
||||
<div class="avue-crud__right"> |
||||
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> |
||||
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> |
||||
<el-button icon="Search" @click="searchHide" circle></el-button> |
||||
</div> |
||||
</div> |
||||
</el-row> |
||||
|
||||
<!-- 首页表格 --> |
||||
<el-row> |
||||
<!-- 列表模块 --> |
||||
<tablecmt |
||||
class="tableNode" |
||||
:columnList="details.columnList" |
||||
:tableData="data" |
||||
:loading="loadingObj.list" |
||||
@inputTxt="inputsc" |
||||
@timeCheck="timesc" |
||||
@btnCheck="btnsc" |
||||
@selectCheck="selectsc" |
||||
@selection="selectionChange" |
||||
> |
||||
<template #default="slotProps"> |
||||
<template v-if="slotProps.scope.column.label === '操作'"> |
||||
<div class="ElBtnClass"> |
||||
|
||||
</div> |
||||
</template> |
||||
</template> |
||||
</tablecmt> |
||||
</el-row> |
||||
|
||||
<!-- 分页模块 --> |
||||
<el-row class="el-fy"> |
||||
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
||||
<div></div> |
||||
<el-pagination |
||||
align="right" |
||||
background |
||||
@size-change="sizeChange" |
||||
@current-change="currentChange" |
||||
:current-page="page.currentPage" |
||||
:page-sizes="[30, 50, 80, 120]" |
||||
:page-size="page.pageSize" |
||||
layout="total, sizes, prev, pager, next, jumper" |
||||
:total="page.total" |
||||
<el-form-item class="el-btn"> |
||||
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
||||
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
||||
</el-form-item> |
||||
</el-form> |
||||
</el-row> |
||||
|
||||
<!-- 控件模块 --> |
||||
<el-row> |
||||
<div class="avue-crud__header"> |
||||
<!-- 头部左侧按钮模块 --> |
||||
<div class="avue-crud__left"> |
||||
<el-button type="primary" @click="AddInfo" |
||||
><el-icon><Plus /></el-icon>导出</el-button |
||||
> |
||||
</el-pagination> |
||||
</div> |
||||
</el-row> |
||||
</div> |
||||
</basic-container> |
||||
<!-- 列表配置显示 --> |
||||
<edittablehead |
||||
@setcolum="setnewcolum" |
||||
@closce="showdrawer" |
||||
:drawerShow="drawerShow" |
||||
:columnList="details.columnList" |
||||
v-model="details.columnList" |
||||
></edittablehead> |
||||
</template> |
||||
|
||||
<script setup> |
||||
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
||||
import { columnList } from '@/option/storagecost/Monthlyorderwarehousing.js'; |
||||
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
||||
import { processRowProperty,setNodeHeight } from '@/utils/util'; |
||||
import functions from '@/utils/functions.js'; |
||||
import { ElMessageBox,ElMessage } from 'element-plus'; |
||||
import { downloadXls } from '@/utils/util'; |
||||
import { useStore } from 'vuex'; |
||||
import dayjs from 'dayjs'; |
||||
const $router = useRouter();//跳转 |
||||
const $useStore = useStore();//权限 |
||||
const $route = useRoute();//获取地址栏参数 |
||||
const details = reactive({ |
||||
/** 是否开启搜索 */ |
||||
search: false, |
||||
/** 表格搜索条件 */ |
||||
query: {}, |
||||
/** 时间快捷选择设置 */ |
||||
shortcuts: [ |
||||
{ |
||||
text: '最近一周', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
{ |
||||
text: '最近一个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
{ |
||||
text: '最近三个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); |
||||
return [start, end]; |
||||
}, |
||||
<!-- 头部右侧按钮模块 --> |
||||
<div class="avue-crud__right"> |
||||
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> |
||||
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> |
||||
<el-button icon="Search" @click="searchHide" circle></el-button> |
||||
</div> |
||||
</div> |
||||
</el-row> |
||||
|
||||
<!-- 首页表格 --> |
||||
<el-row> |
||||
<!-- 列表模块 --> |
||||
<tablecmt |
||||
class="tableNode" |
||||
:columnList="details.columnList" |
||||
:tableData="data" |
||||
:loading="loadingObj.list" |
||||
@inputTxt="inputsc" |
||||
@timeCheck="timesc" |
||||
@btnCheck="btnsc" |
||||
@selectCheck="selectsc" |
||||
@selection="selectionChange" |
||||
> |
||||
<template #default="slotProps"> |
||||
<template v-if="slotProps.scope.column.label === '操作'"> |
||||
<div class="ElBtnClass"></div> |
||||
</template> |
||||
</template> |
||||
</tablecmt> |
||||
</el-row> |
||||
|
||||
<!-- 分页模块 --> |
||||
<el-row class="el-fy"> |
||||
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
||||
<div></div> |
||||
<el-pagination |
||||
align="right" |
||||
background |
||||
@size-change="sizeChange" |
||||
@current-change="currentChange" |
||||
:current-page="page.currentPage" |
||||
:page-sizes="[30, 50, 80, 120]" |
||||
:page-size="page.pageSize" |
||||
layout="total, sizes, prev, pager, next, jumper" |
||||
:total="page.total" |
||||
> |
||||
</el-pagination> |
||||
</div> |
||||
</el-row> |
||||
</div> |
||||
</basic-container> |
||||
<!-- 列表配置显示 --> |
||||
<edittablehead |
||||
@setcolum="setnewcolum" |
||||
@closce="showdrawer" |
||||
:drawerShow="drawerShow" |
||||
:columnList="details.columnList" |
||||
v-model="details.columnList" |
||||
></edittablehead> |
||||
</template> |
||||
|
||||
<script setup> |
||||
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
||||
import { columnList } from '@/option/storagecost/Monthlyorderwarehousing.js'; |
||||
import { $_Monthlyorderwarehousing, $_getMyWarehouseList } from '@/api/storagecost/index.js'; |
||||
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
||||
import { processRowProperty, setNodeHeight } from '@/utils/util'; |
||||
import functions from '@/utils/functions.js'; |
||||
import { ElMessageBox, ElMessage } from 'element-plus'; |
||||
import { downloadXls } from '@/utils/util'; |
||||
import { useStore } from 'vuex'; |
||||
import dayjs from 'dayjs'; |
||||
const $router = useRouter(); //跳转 |
||||
const $useStore = useStore(); //权限 |
||||
const $route = useRoute(); //获取地址栏参数 |
||||
const warehouseList = ref([]); //仓库列表 |
||||
const queryTop=ref({}) |
||||
const monthList = ref([]); //月份 |
||||
const details = reactive({ |
||||
/** 是否开启搜索 */ |
||||
search: false, |
||||
/** 表格搜索条件 */ |
||||
query: {}, |
||||
/** 时间快捷选择设置 */ |
||||
shortcuts: [ |
||||
{ |
||||
text: '最近一周', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); |
||||
return [start, end]; |
||||
}, |
||||
], |
||||
/** 时间选择器数据 */ |
||||
stockupDate: [], |
||||
/** 列表 */ |
||||
columnList, |
||||
|
||||
/** 列表数据 */ |
||||
data: [{}], |
||||
/** 页面loading */ |
||||
loadingObj: { |
||||
/** 列表加载loading */ |
||||
list: false, |
||||
packageListLoading: false, |
||||
}, |
||||
/** 列表复选框选中的数据 */ |
||||
selectionList: [], |
||||
/** 是否显示设置表格 */ |
||||
drawerShow: false, |
||||
/** 分页参数 */ |
||||
page: { |
||||
currentPage: 1, |
||||
pageSize: 50, |
||||
total: 0, |
||||
}, |
||||
|
||||
/** 弹出层显示 */ |
||||
popUpShow: { |
||||
/** 包件明细 */ |
||||
packageOrderListlVisited: false, |
||||
/** 二维码 */ |
||||
QRCodeVisible: false, |
||||
/** 修改客户信息 */ |
||||
editClientInfoVisible: false, |
||||
{ |
||||
text: '最近一个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
/** 列表Dom节点 */ |
||||
listNode: '', |
||||
form: {}, |
||||
/** 全屏 */ |
||||
fullscreenObj: { |
||||
/** 包明细 */ |
||||
packageOrderListlVisited: false, |
||||
{ |
||||
text: '最近三个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
}); |
||||
|
||||
const { |
||||
search, |
||||
query, |
||||
shortcuts, |
||||
stockupDate, |
||||
data, |
||||
loadingObj, |
||||
selectionList, |
||||
drawerShow, |
||||
page, |
||||
trickleLoadingPage, |
||||
zeroAdditionalRecordingInfo, |
||||
popUpShow, |
||||
recorddata, |
||||
} = toRefs(details); |
||||
], |
||||
/** 时间选择器数据 */ |
||||
stockupDate: [], |
||||
/** 列表 */ |
||||
columnList, |
||||
|
||||
/** 展开列表控件 */ |
||||
const showdrawer = _flag => { |
||||
details.drawerShow = _flag; |
||||
}; |
||||
/** 表格表头输入框搜索 */ |
||||
const inputsc = (index, row) => { |
||||
details.query[row.prop] = index; |
||||
processRowProperty(index, row, details); |
||||
test(details.query); |
||||
|
||||
}; |
||||
// 实例函数 |
||||
const test=(val)=>{ |
||||
|
||||
} |
||||
/** 表格表头时间选择 */ |
||||
const timesc = (index, row) => { |
||||
console.log(index, row); |
||||
if (!!index) { |
||||
index = dayjs(index).format('YYYY-MM-DD'); |
||||
} |
||||
details.query[row.prop] = index; |
||||
if (!index) { |
||||
delete details.query[row.prop]; |
||||
} |
||||
}; |
||||
|
||||
/** 表格表头输入框搜索 */ |
||||
const btnsc = val => { |
||||
console.log(val); |
||||
}; |
||||
/** 表格表头下拉框选择 */ |
||||
const selectsc = (index, row) => { |
||||
processRowProperty(index, row, details); |
||||
}; |
||||
/** 表格表头复选框选择 */ |
||||
const selectionChange = list => { |
||||
console.log(list); |
||||
details.selectionList = list; |
||||
}; |
||||
// 网页顶部搜索按钮 |
||||
const searchChange = () => { |
||||
details.search = false; //关闭搜索 |
||||
}; |
||||
// 每页多少条 |
||||
const sizeChange = val => { |
||||
page.value.pageSize = val; |
||||
}; |
||||
/** 页码改变执行的回调 */ |
||||
const currentChange = val => { |
||||
page.value.currentPage = val; |
||||
}; |
||||
// 刷新按钮 |
||||
const searchChangeS = () => { |
||||
details.search = false; //关闭搜索 |
||||
}; |
||||
// 顶部搜索 |
||||
const searchHide = () => { |
||||
console.log(details); |
||||
details.search = !details.search; |
||||
const _node = document.querySelector('.tableNode'); |
||||
setNodeHeight(_node, '', true); |
||||
}; |
||||
// 字典公共函数 |
||||
function updateDictionary(targetArray, dictionaryType) { |
||||
getDictionaryBiz(dictionaryType).then(res => { |
||||
console.log(res, '字典'); |
||||
res.data.data.forEach(item => { |
||||
targetArray.push({ |
||||
value: item.dictKey, |
||||
label: item.dictValue, |
||||
}); |
||||
}); |
||||
}); |
||||
} |
||||
// 页面初始化 |
||||
const onLoad=()=>{ |
||||
/** 列表数据 */ |
||||
data: [{}], |
||||
/** 页面loading */ |
||||
loadingObj: { |
||||
/** 列表加载loading */ |
||||
list: false, |
||||
packageListLoading: false, |
||||
}, |
||||
/** 列表复选框选中的数据 */ |
||||
selectionList: [], |
||||
/** 是否显示设置表格 */ |
||||
drawerShow: false, |
||||
/** 分页参数 */ |
||||
page: { |
||||
currentPage: 1, |
||||
pageSize: 50, |
||||
total: 0, |
||||
}, |
||||
|
||||
} |
||||
/** 弹出层显示 */ |
||||
popUpShow: { |
||||
/** 包件明细 */ |
||||
packageOrderListlVisited: false, |
||||
/** 二维码 */ |
||||
QRCodeVisible: false, |
||||
/** 修改客户信息 */ |
||||
editClientInfoVisible: false, |
||||
}, |
||||
/** 列表Dom节点 */ |
||||
listNode: '', |
||||
form: {}, |
||||
/** 全屏 */ |
||||
fullscreenObj: { |
||||
/** 包明细 */ |
||||
packageOrderListlVisited: false, |
||||
}, |
||||
}); |
||||
|
||||
const { |
||||
search, |
||||
query, |
||||
shortcuts, |
||||
stockupDate, |
||||
data, |
||||
loadingObj, |
||||
selectionList, |
||||
drawerShow, |
||||
page, |
||||
trickleLoadingPage, |
||||
zeroAdditionalRecordingInfo, |
||||
popUpShow, |
||||
recorddata, |
||||
} = toRefs(details); |
||||
|
||||
// 页面初始化方法 |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
.ElBtnClass button { |
||||
border: none; |
||||
padding: 0; |
||||
background-color: transparent; |
||||
/** 展开列表控件 */ |
||||
const showdrawer = _flag => { |
||||
details.drawerShow = _flag; |
||||
}; |
||||
/** 表格表头输入框搜索 */ |
||||
const inputsc = (index, row) => { |
||||
details.query[row.prop] = index; |
||||
processRowProperty(index, row, details); |
||||
test(details.query); |
||||
}; |
||||
// 实例函数 |
||||
const test = val => {}; |
||||
/** 表格表头时间选择 */ |
||||
const timesc = (index, row) => { |
||||
console.log(index, row); |
||||
if (!!index) { |
||||
index = dayjs(index).format('YYYY-MM-DD'); |
||||
} |
||||
:deep(.el-card) { |
||||
height: 100%; |
||||
details.query[row.prop] = index; |
||||
if (!index) { |
||||
delete details.query[row.prop]; |
||||
} |
||||
:deep(.el-card__body) { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
}; |
||||
|
||||
/** 表格表头输入框搜索 */ |
||||
const btnsc = val => { |
||||
console.log(val); |
||||
}; |
||||
/** 表格表头下拉框选择 */ |
||||
const selectsc = (index, row) => { |
||||
processRowProperty(index, row, details); |
||||
}; |
||||
/** 表格表头复选框选择 */ |
||||
const selectionChange = list => { |
||||
console.log(list); |
||||
details.selectionList = list; |
||||
}; |
||||
// 网页顶部搜索按钮 |
||||
const searchChange = () => { |
||||
if (queryTop.value.warehouse?.length) { |
||||
queryTop.value.warehouseName = queryTop.value.warehouse.join(','); |
||||
} else { |
||||
delete queryTop.value.warehouseName; |
||||
} |
||||
.el-fy { |
||||
flex: 1; |
||||
display: flex; |
||||
align-items: flex-end; |
||||
margin-bottom: 10px; |
||||
if (queryTop.value.costSettlementMonth) { |
||||
if (!queryTop.value.costSettlementYear) { |
||||
ElMessage({ |
||||
message: '请选择年份', |
||||
type: 'warning', |
||||
}); |
||||
return; |
||||
} |
||||
} |
||||
.avue-crud { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
details.query = { ...details.query, ...queryTop.value }; |
||||
delete details.query.warehouse; //删除多余字段 |
||||
onLoad(); |
||||
}; |
||||
// 每页多少条 |
||||
const sizeChange = val => { |
||||
details.page.pageSize = val; |
||||
onLoad(); |
||||
}; |
||||
/** 页码改变执行的回调 */ |
||||
const currentChange = val => { |
||||
details.page.currentPage = val; |
||||
onLoad(); |
||||
}; |
||||
// 刷新按钮 |
||||
const searchChangeS = () => { |
||||
details.search = false; //关闭搜索 |
||||
}; |
||||
// 顶部搜索 |
||||
const searchHide = () => { |
||||
console.log(details); |
||||
details.search = !details.search; |
||||
const _node = document.querySelector('.tableNode'); |
||||
setNodeHeight(_node, '', true); |
||||
}; |
||||
// 字典公共函数 |
||||
function updateDictionary(targetArray, dictionaryType) { |
||||
getDictionaryBiz(dictionaryType).then(res => { |
||||
console.log(res, '字典'); |
||||
res.data.data.forEach(item => { |
||||
targetArray.push({ |
||||
value: item.dictKey, |
||||
label: item.dictValue, |
||||
}); |
||||
}); |
||||
}); |
||||
} |
||||
// 页面初始化 |
||||
const onLoad = value => { |
||||
let data = { |
||||
current: details.page.currentPage, |
||||
size: details.page.pageSize, |
||||
...details.query, |
||||
...value, |
||||
}; |
||||
$_Monthlyorderwarehousing(data).then(res => { |
||||
console.log(res, '初始化参数'); |
||||
if (res.data.code == 200) { |
||||
details.data = res.data.data.records || []; |
||||
details.page.total = res.data.data.total; //页码 |
||||
} |
||||
}); |
||||
}; |
||||
const monthFn = () => { |
||||
for (let i = 0; i < 12; i++) { |
||||
monthList.value.push({ |
||||
value: i + 1, |
||||
label: i + 1 + '月', |
||||
}); |
||||
} |
||||
</style> |
||||
|
||||
}; |
||||
// 获取仓库 |
||||
const MyWarehouseList = () => { |
||||
$_getMyWarehouseList().then(res => { |
||||
console.log(res, '仓库列表'); |
||||
res.data.data.forEach(item => { |
||||
warehouseList.value.push({ |
||||
value: item.name, |
||||
label: item.name, |
||||
}); |
||||
}); |
||||
}); |
||||
}; |
||||
|
||||
// 页面初始化方法 |
||||
const PageOnload = () => { |
||||
onLoad(); //获取列表参数 |
||||
MyWarehouseList(); //获取仓库 |
||||
monthFn(); //月份初始化 |
||||
}; |
||||
|
||||
//页面初始化方法 |
||||
PageOnload(); |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
.ElBtnClass button { |
||||
border: none; |
||||
padding: 0; |
||||
background-color: transparent; |
||||
} |
||||
:deep(.el-card) { |
||||
height: 100%; |
||||
} |
||||
:deep(.el-card__body) { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
.el-fy { |
||||
flex: 1; |
||||
display: flex; |
||||
align-items: flex-end; |
||||
margin-bottom: 10px; |
||||
} |
||||
.avue-crud { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
</style> |
||||
|
@ -1,303 +1,437 @@
|
||||
<template> |
||||
<basic-container> |
||||
<!-- 首页表格 --> |
||||
<div class="avue-crud"> |
||||
<!-- 搜索模块 --> |
||||
<el-row v-if="search"> |
||||
<!-- 查询模块 --> |
||||
<el-form :inline="true" :model="query" class="el-fr-d"> |
||||
<!-- 查询按钮 --> |
||||
<el-form-item class="el-btn"> |
||||
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
||||
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
||||
<basic-container> |
||||
<!-- 首页表格 --> |
||||
<div class="avue-crud"> |
||||
<!-- 搜索模块 --> |
||||
<el-row v-if="search"> |
||||
<!-- 查询模块 --> |
||||
<el-form :inline="true" :model="queryTop" class="el-fr-d"> |
||||
<!-- 查询按钮 --> |
||||
<div> |
||||
<el-form-item label="目的仓"> |
||||
<el-select |
||||
v-model="queryTop.warehouse" |
||||
multiple |
||||
placeholder="请选择仓库" |
||||
style="min-width: 340px" |
||||
> |
||||
<el-option |
||||
v-for="item in warehouseList" |
||||
:key="item.value" |
||||
:label="item.label" |
||||
:value="item.value" |
||||
/> |
||||
</el-select> |
||||
</el-form-item> |
||||
|
||||
<el-form-item label="结算年份"> |
||||
<el-date-picker |
||||
v-model="queryTop.costSettlementYear" |
||||
type="year" |
||||
placeholder="请选择年份" |
||||
value-format="YYYY" |
||||
/> |
||||
</el-form-item> |
||||
|
||||
<el-form-item label="结算月"> |
||||
<el-select v-model="queryTop.costSettlementMonth" placeholder="请选择月份"> |
||||
<el-option |
||||
v-for="item in monthList" |
||||
:key="item.value" |
||||
:label="item.label" |
||||
:value="item.value" |
||||
/> |
||||
</el-select> |
||||
</el-form-item> |
||||
</el-form> |
||||
</el-row> |
||||
|
||||
<!-- 控件模块 --> |
||||
<el-row> |
||||
<div class="avue-crud__header"> |
||||
<!-- 头部左侧按钮模块 --> |
||||
<div class="avue-crud__left"> |
||||
<el-button type="primary" @click="AddInfo"><el-icon><Plus /></el-icon>导出</el-button> |
||||
</div> |
||||
<!-- 头部右侧按钮模块 --> |
||||
<div class="avue-crud__right"> |
||||
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> |
||||
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> |
||||
<el-button icon="Search" @click="searchHide" circle></el-button> |
||||
</div> |
||||
</div> |
||||
</el-row> |
||||
|
||||
<!-- 首页表格 --> |
||||
<el-row> |
||||
<!-- 列表模块 --> |
||||
<tablecmt |
||||
class="tableNode" |
||||
:columnList="details.columnList" |
||||
:tableData="data" |
||||
:loading="loadingObj.list" |
||||
@inputTxt="inputsc" |
||||
@timeCheck="timesc" |
||||
@btnCheck="btnsc" |
||||
@selectCheck="selectsc" |
||||
@selection="selectionChange" |
||||
> |
||||
<template #default="slotProps"> |
||||
<template v-if="slotProps.scope.column.label === '操作'"> |
||||
<div class="ElBtnClass"> |
||||
<el-button @click="view(slotProps.scope)">查看</el-button> |
||||
</div> |
||||
</template> |
||||
</template> |
||||
</tablecmt> |
||||
</el-row> |
||||
|
||||
<!-- 分页模块 --> |
||||
<el-row class="el-fy"> |
||||
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
||||
<div></div> |
||||
<el-pagination |
||||
align="right" |
||||
background |
||||
@size-change="sizeChange" |
||||
@current-change="currentChange" |
||||
:current-page="page.currentPage" |
||||
:page-sizes="[30, 50, 80, 120]" |
||||
:page-size="page.pageSize" |
||||
layout="total, sizes, prev, pager, next, jumper" |
||||
:total="page.total" |
||||
<el-form-item class="el-btn"> |
||||
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
||||
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
||||
</el-form-item> |
||||
</el-form> |
||||
</el-row> |
||||
|
||||
<!-- 控件模块 --> |
||||
<el-row> |
||||
<div class="avue-crud__header"> |
||||
<!-- 头部左侧按钮模块 --> |
||||
<div class="avue-crud__left"> |
||||
<el-button type="primary" @click="exportExcel" |
||||
><el-icon><Plus /></el-icon>导出</el-button |
||||
> |
||||
</el-pagination> |
||||
</div> |
||||
</el-row> |
||||
</div> |
||||
</basic-container> |
||||
<!-- 列表配置显示 --> |
||||
<edittablehead |
||||
@setcolum="setnewcolum" |
||||
@closce="showdrawer" |
||||
:drawerShow="drawerShow" |
||||
:columnList="details.columnList" |
||||
v-model="details.columnList" |
||||
></edittablehead> |
||||
</template> |
||||
|
||||
<script setup> |
||||
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
||||
import { columnList } from '@/option/storagecost/WarehouseMonthly.js'; |
||||
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
||||
import { processRowProperty,setNodeHeight } from '@/utils/util'; |
||||
import functions from '@/utils/functions.js'; |
||||
import { ElMessageBox,ElMessage } from 'element-plus'; |
||||
import { downloadXls } from '@/utils/util'; |
||||
import { useStore } from 'vuex'; |
||||
import dayjs from 'dayjs'; |
||||
const $router = useRouter();//跳转 |
||||
const $useStore = useStore();//权限 |
||||
const $route = useRoute();//获取地址栏参数 |
||||
const details = reactive({ |
||||
/** 是否开启搜索 */ |
||||
search: false, |
||||
/** 表格搜索条件 */ |
||||
query: {}, |
||||
/** 时间快捷选择设置 */ |
||||
shortcuts: [ |
||||
{ |
||||
text: '最近一周', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
{ |
||||
text: '最近一个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
{ |
||||
text: '最近三个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); |
||||
return [start, end]; |
||||
}, |
||||
<!-- 头部右侧按钮模块 --> |
||||
<div class="avue-crud__right"> |
||||
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> |
||||
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> |
||||
<el-button icon="Search" @click="searchHide" circle></el-button> |
||||
</div> |
||||
</div> |
||||
</el-row> |
||||
|
||||
<!-- 首页表格 --> |
||||
<el-row> |
||||
<!-- 列表模块 --> |
||||
<tablecmt |
||||
class="tableNode" |
||||
:columnList="details.columnList" |
||||
:tableData="data" |
||||
:loading="loadingObj.list" |
||||
@inputTxt="inputsc" |
||||
@timeCheck="timesc" |
||||
@btnCheck="btnsc" |
||||
@selectCheck="selectsc" |
||||
@selection="selectionChange" |
||||
> |
||||
<template #default="slotProps"> |
||||
<template v-if="slotProps.scope.column.label === '操作'"> |
||||
<div class="ElBtnClass"> |
||||
<el-button @click="view(slotProps.scope)">查看</el-button> |
||||
</div> |
||||
</template> |
||||
</template> |
||||
</tablecmt> |
||||
</el-row> |
||||
|
||||
<!-- 分页模块 --> |
||||
<el-row class="el-fy"> |
||||
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
||||
<div></div> |
||||
<el-pagination |
||||
align="right" |
||||
background |
||||
@size-change="sizeChange" |
||||
@current-change="currentChange" |
||||
:current-page="page.currentPage" |
||||
:page-sizes="[30, 50, 80, 120]" |
||||
:page-size="page.pageSize" |
||||
layout="total, sizes, prev, pager, next, jumper" |
||||
:total="page.total" |
||||
> |
||||
</el-pagination> |
||||
</div> |
||||
</el-row> |
||||
</div> |
||||
</basic-container> |
||||
<!-- 列表配置显示 --> |
||||
<edittablehead |
||||
@setcolum="setnewcolum" |
||||
@closce="showdrawer" |
||||
:drawerShow="drawerShow" |
||||
:columnList="details.columnList" |
||||
v-model="details.columnList" |
||||
></edittablehead> |
||||
</template> |
||||
|
||||
<script setup> |
||||
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
||||
import { columnList } from '@/option/storagecost/WarehouseMonthly.js'; |
||||
import { |
||||
$_Getlist, |
||||
$_getMyWarehouseList, |
||||
$_expenseWarehouseMonth, |
||||
} from '@/api/storagecost/index.js'; |
||||
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
||||
import { processRowProperty, setNodeHeight } from '@/utils/util'; |
||||
import functions from '@/utils/functions.js'; |
||||
import { ElMessageBox, ElMessage } from 'element-plus'; |
||||
import { downloadXls } from '@/utils/util'; |
||||
import { useStore } from 'vuex'; |
||||
import dayjs from 'dayjs'; |
||||
const $router = useRouter(); //跳转 |
||||
const $useStore = useStore(); //权限 |
||||
const $route = useRoute(); //获取地址栏参数 |
||||
const warehouseList = ref([]); //仓库 |
||||
const monthList = ref([]); //月份 |
||||
const queryTop = ref({}); //顶部查询 |
||||
const details = reactive({ |
||||
/** 是否开启搜索 */ |
||||
search: false, |
||||
/** 表格搜索条件 */ |
||||
query: {}, |
||||
/** 时间快捷选择设置 */ |
||||
shortcuts: [ |
||||
{ |
||||
text: '最近一周', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); |
||||
return [start, end]; |
||||
}, |
||||
], |
||||
/** 时间选择器数据 */ |
||||
stockupDate: [], |
||||
/** 列表 */ |
||||
columnList, |
||||
|
||||
/** 列表数据 */ |
||||
data: [{}], |
||||
/** 页面loading */ |
||||
loadingObj: { |
||||
/** 列表加载loading */ |
||||
list: false, |
||||
packageListLoading: false, |
||||
}, |
||||
/** 列表复选框选中的数据 */ |
||||
selectionList: [], |
||||
/** 是否显示设置表格 */ |
||||
drawerShow: false, |
||||
/** 分页参数 */ |
||||
page: { |
||||
currentPage: 1, |
||||
pageSize: 50, |
||||
total: 0, |
||||
}, |
||||
|
||||
/** 弹出层显示 */ |
||||
popUpShow: { |
||||
/** 包件明细 */ |
||||
packageOrderListlVisited: false, |
||||
/** 二维码 */ |
||||
QRCodeVisible: false, |
||||
/** 修改客户信息 */ |
||||
editClientInfoVisible: false, |
||||
{ |
||||
text: '最近一个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
/** 列表Dom节点 */ |
||||
listNode: '', |
||||
form: {}, |
||||
/** 全屏 */ |
||||
fullscreenObj: { |
||||
/** 包明细 */ |
||||
packageOrderListlVisited: false, |
||||
{ |
||||
text: '最近三个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
}); |
||||
|
||||
const { |
||||
search, |
||||
query, |
||||
shortcuts, |
||||
stockupDate, |
||||
data, |
||||
loadingObj, |
||||
selectionList, |
||||
drawerShow, |
||||
page, |
||||
trickleLoadingPage, |
||||
zeroAdditionalRecordingInfo, |
||||
popUpShow, |
||||
recorddata, |
||||
} = toRefs(details); |
||||
], |
||||
/** 时间选择器数据 */ |
||||
stockupDate: [], |
||||
/** 列表 */ |
||||
columnList, |
||||
|
||||
/** 展开列表控件 */ |
||||
const showdrawer = _flag => { |
||||
details.drawerShow = _flag; |
||||
}; |
||||
/** 表格表头输入框搜索 */ |
||||
const inputsc = (index, row) => { |
||||
details.query[row.prop] = index; |
||||
processRowProperty(index, row, details); |
||||
test(details.query); |
||||
|
||||
}; |
||||
// 实例函数 |
||||
const test=(val)=>{ |
||||
|
||||
/** 列表数据 */ |
||||
data: [], |
||||
/** 页面loading */ |
||||
loadingObj: { |
||||
/** 列表加载loading */ |
||||
list: false, |
||||
packageListLoading: false, |
||||
}, |
||||
/** 列表复选框选中的数据 */ |
||||
selectionList: [], |
||||
/** 是否显示设置表格 */ |
||||
drawerShow: false, |
||||
/** 分页参数 */ |
||||
page: { |
||||
currentPage: 1, |
||||
pageSize: 50, |
||||
total: 0, |
||||
}, |
||||
|
||||
/** 弹出层显示 */ |
||||
popUpShow: { |
||||
/** 包件明细 */ |
||||
packageOrderListlVisited: false, |
||||
/** 二维码 */ |
||||
QRCodeVisible: false, |
||||
/** 修改客户信息 */ |
||||
editClientInfoVisible: false, |
||||
}, |
||||
/** 列表Dom节点 */ |
||||
listNode: '', |
||||
form: {}, |
||||
/** 全屏 */ |
||||
fullscreenObj: { |
||||
/** 包明细 */ |
||||
packageOrderListlVisited: false, |
||||
}, |
||||
}); |
||||
|
||||
const { |
||||
search, |
||||
query, |
||||
shortcuts, |
||||
stockupDate, |
||||
data, |
||||
loadingObj, |
||||
selectionList, |
||||
drawerShow, |
||||
page, |
||||
trickleLoadingPage, |
||||
zeroAdditionalRecordingInfo, |
||||
popUpShow, |
||||
recorddata, |
||||
} = toRefs(details); |
||||
|
||||
/** 展开列表控件 */ |
||||
const showdrawer = _flag => { |
||||
details.drawerShow = _flag; |
||||
}; |
||||
/** 表格表头输入框搜索 */ |
||||
const inputsc = (index, row) => { |
||||
details.query[row.prop] = index; |
||||
processRowProperty(index, row, details); |
||||
console.log(details.query, '合并后的参数'); |
||||
onLoad(); |
||||
}; |
||||
// 实例函数 |
||||
const test = val => {}; |
||||
/** 表格表头时间选择 */ |
||||
const timesc = (index, row) => { |
||||
console.log(index, row); |
||||
if (!!index) { |
||||
index = dayjs(index).format('YYYY-MM-DD'); |
||||
} |
||||
/** 表格表头时间选择 */ |
||||
const timesc = (index, row) => { |
||||
console.log(index, row); |
||||
if (!!index) { |
||||
index = dayjs(index).format('YYYY-MM-DD'); |
||||
} |
||||
details.query[row.prop] = index; |
||||
if (!index) { |
||||
delete details.query[row.prop]; |
||||
details.query[row.prop] = index; |
||||
if (!index) { |
||||
delete details.query[row.prop]; |
||||
} |
||||
}; |
||||
|
||||
/** 表格表头输入框搜索 */ |
||||
const btnsc = val => { |
||||
console.log(val); |
||||
}; |
||||
/** 表格表头下拉框选择 */ |
||||
const selectsc = (index, row) => { |
||||
processRowProperty(index, row, details); |
||||
}; |
||||
/** 表格表头复选框选择 */ |
||||
const selectionChange = list => { |
||||
console.log(list); |
||||
details.selectionList = list; |
||||
}; |
||||
// 网页顶部搜索按钮 |
||||
const searchChange = () => { |
||||
if (queryTop.value.warehouse?.length) { |
||||
queryTop.value.warehouseName = queryTop.value.warehouse.join(','); |
||||
} else { |
||||
delete queryTop.value.warehouseName; |
||||
} |
||||
if (queryTop.value.costSettlementMonth) { |
||||
if (!queryTop.value.costSettlementYear) { |
||||
ElMessage({ |
||||
message: '请选择年份', |
||||
type: 'warning', |
||||
}); |
||||
return; |
||||
} |
||||
}; |
||||
|
||||
/** 表格表头输入框搜索 */ |
||||
const btnsc = val => { |
||||
console.log(val); |
||||
}; |
||||
/** 表格表头下拉框选择 */ |
||||
const selectsc = (index, row) => { |
||||
processRowProperty(index, row, details); |
||||
}; |
||||
/** 表格表头复选框选择 */ |
||||
const selectionChange = list => { |
||||
console.log(list); |
||||
details.selectionList = list; |
||||
}; |
||||
// 网页顶部搜索按钮 |
||||
const searchChange = () => { |
||||
details.search = false; //关闭搜索 |
||||
}; |
||||
// 每页多少条 |
||||
const sizeChange = val => { |
||||
page.value.pageSize = val; |
||||
}; |
||||
/** 页码改变执行的回调 */ |
||||
const currentChange = val => { |
||||
page.value.currentPage = val; |
||||
}; |
||||
// 刷新按钮 |
||||
const searchChangeS = () => { |
||||
details.search = false; //关闭搜索 |
||||
}; |
||||
// 顶部搜索 |
||||
const searchHide = () => { |
||||
console.log(details); |
||||
details.search = !details.search; |
||||
const _node = document.querySelector('.tableNode'); |
||||
setNodeHeight(_node, '', true); |
||||
}; |
||||
// 字典公共函数 |
||||
function updateDictionary(targetArray, dictionaryType) { |
||||
getDictionaryBiz(dictionaryType).then(res => { |
||||
console.log(res, '字典'); |
||||
res.data.data.forEach(item => { |
||||
targetArray.push({ |
||||
value: item.dictKey, |
||||
label: item.dictValue, |
||||
}); |
||||
} |
||||
details.query = { ...details.query, ...queryTop.value }; |
||||
delete details.query.warehouse; //删除多余字段 |
||||
onLoad(); |
||||
}; |
||||
// 每页多少条 |
||||
const sizeChange = val => { |
||||
details.page.pageSize = val; |
||||
onLoad(); |
||||
}; |
||||
/** 页码改变执行的回调 */ |
||||
const currentChange = val => { |
||||
details.page.currentPage = val; |
||||
onLoad(); |
||||
}; |
||||
// 刷新按钮 |
||||
const searchChangeS = () => { |
||||
details.search = false; //关闭搜索 |
||||
}; |
||||
// 顶部搜索 |
||||
const searchHide = () => { |
||||
console.log(details); |
||||
details.search = !details.search; |
||||
const _node = document.querySelector('.tableNode'); |
||||
setNodeHeight(_node, '', true); |
||||
}; |
||||
// 字典公共函数 |
||||
function updateDictionary(targetArray, dictionaryType) { |
||||
getDictionaryBiz(dictionaryType).then(res => { |
||||
console.log(res, '字典'); |
||||
res.data.data.forEach(item => { |
||||
targetArray.push({ |
||||
value: item.dictKey, |
||||
label: item.dictValue, |
||||
}); |
||||
}); |
||||
} |
||||
// 页面初始化 |
||||
const onLoad=()=>{ |
||||
|
||||
}); |
||||
} |
||||
|
||||
// 页面初始化方法 |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
.ElBtnClass button { |
||||
border: none; |
||||
padding: 0; |
||||
background-color: transparent; |
||||
} |
||||
:deep(.el-card) { |
||||
height: 100%; |
||||
} |
||||
:deep(.el-card__body) { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
.el-fy { |
||||
flex: 1; |
||||
display: flex; |
||||
align-items: flex-end; |
||||
margin-bottom: 10px; |
||||
// 获取仓库 |
||||
const MyWarehouseList = () => { |
||||
$_getMyWarehouseList().then(res => { |
||||
console.log(res, '仓库列表'); |
||||
res.data.data.forEach(item => { |
||||
warehouseList.value.push({ |
||||
value: item.name, |
||||
label: item.name, |
||||
}); |
||||
}); |
||||
}); |
||||
}; |
||||
|
||||
// 页面初始化 |
||||
const onLoad = value => { |
||||
let data = { |
||||
current: details.page.currentPage, |
||||
size: details.page.pageSize, |
||||
...details.query, |
||||
...value, |
||||
}; |
||||
$_Getlist(data).then(res => { |
||||
if (res.data.code == 200) { |
||||
details.data = res.data.data.records || []; |
||||
details.page.total = res.data.data.total; //页码 |
||||
} |
||||
}); |
||||
}; |
||||
const monthFn = () => { |
||||
for (let i = 0; i < 12; i++) { |
||||
monthList.value.push({ |
||||
value: i + 1, |
||||
label: i + 1 + '月', |
||||
}); |
||||
} |
||||
.avue-crud { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
}; |
||||
const PageOnload = () => { |
||||
onLoad(); //获取列表参数 |
||||
MyWarehouseList(); //获取仓库 |
||||
monthFn(); //月份初始化 |
||||
}; |
||||
// 页面初始化方法 |
||||
PageOnload(); |
||||
//导出 |
||||
|
||||
const exportExcel = () => { |
||||
ElMessageBox.confirm('是否导出数据?', { |
||||
confirmButtonText: '确定', |
||||
cancelButtonText: '取消', |
||||
type: 'warning', |
||||
}) |
||||
.then(() => { |
||||
console.log(details.query, '搜索参数'); |
||||
details.loadingObj.list = true; |
||||
let data = { |
||||
...details.query, |
||||
}; |
||||
console.log(data, '要提交的数据'); |
||||
$_expenseWarehouseMonth(data).then(res => { |
||||
details.loadingObj.list = false; |
||||
downloadXls(res.data, `月度仓储成本统计.xlsx`); |
||||
ElMessage({ |
||||
message: '导出成功', |
||||
type: 'success', |
||||
}); |
||||
}); |
||||
}) |
||||
.catch(() => {}); |
||||
}; |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
.ElBtnClass button { |
||||
border: none; |
||||
padding: 0; |
||||
background-color: transparent; |
||||
} |
||||
:deep(.el-card) { |
||||
height: 100%; |
||||
} |
||||
:deep(.el-card__body) { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
.el-fy { |
||||
flex: 1; |
||||
display: flex; |
||||
align-items: flex-end; |
||||
margin-bottom: 10px; |
||||
} |
||||
.avue-crud { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
.el-fr-d { |
||||
width: 100%; |
||||
display: flex; |
||||
justify-content: space-between; |
||||
.el-btn { |
||||
margin-right: 0; |
||||
} |
||||
</style> |
||||
|
||||
} |
||||
</style> |
||||
|
@ -0,0 +1,686 @@
|
||||
<template> |
||||
<basic-container> |
||||
<!-- 首页表格 --> |
||||
<div class="avue-crud"> |
||||
<!-- 搜索模块 --> |
||||
<el-row v-if="search"> |
||||
<!-- 查询模块 --> |
||||
<el-form :inline="true" :model="query" class="el-fr-d"> |
||||
<!-- 查询按钮 --> |
||||
<el-form-item class="el-btn"> |
||||
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
||||
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
||||
</el-form-item> |
||||
<!-- <el-form-item label="配送日期"> |
||||
<el-date-picker |
||||
v-model="TopQuery.time" |
||||
type="datetimerange" |
||||
unlink-panels |
||||
range-separator="至" |
||||
start-placeholder="开始时间" |
||||
end-placeholder="结束时间" |
||||
:shortcuts="shortcuts" |
||||
:default-time="defaultTime2" |
||||
/> |
||||
</el-form-item> --> |
||||
</el-form> |
||||
</el-row> |
||||
<div class="header"> |
||||
<h2 class="money">合计费用:999999</h2> |
||||
|
||||
<div class="radio"> |
||||
<div class="el_radio"> |
||||
<span class="title">是否专车:</span> |
||||
<el-radio-group v-model="radio"> |
||||
<el-radio :value="0">是</el-radio> |
||||
<el-radio :value="1">否</el-radio> |
||||
</el-radio-group> |
||||
</div> |
||||
<div class="el_radio el_money"> |
||||
<span class="title">专车费用:</span> |
||||
<el-input-number |
||||
v-model="form.num" |
||||
:min="0" |
||||
:max="10" |
||||
@change="handleChange" |
||||
:controls="false" |
||||
:value-on-clear="0" |
||||
/> |
||||
</div> |
||||
<div class="el_radio"> |
||||
<span class="title">是否超区:</span> |
||||
<el-radio-group v-model="radio"> |
||||
<el-radio :value="0">是</el-radio> |
||||
<el-radio :value="1">否</el-radio> |
||||
</el-radio-group> |
||||
</div> |
||||
<div class="el_radio el_money"> |
||||
<span class="title">超区公里数:</span> |
||||
<el-input-number |
||||
v-model="form.num" |
||||
:min="0" |
||||
@change="handleChange" |
||||
:controls="false" |
||||
:value-on-clear="0" |
||||
/> |
||||
</div> |
||||
<div class="el_radio el_money"> |
||||
<span class="title">超区费用:</span> |
||||
<el-input-number |
||||
v-model="form.num" |
||||
:min="0" |
||||
@change="handleChange" |
||||
:controls="false" |
||||
:value-on-clear="0" |
||||
/> |
||||
</div> |
||||
</div> |
||||
<!-- --- --> |
||||
<!-- <div class="radio"> |
||||
<div class="el_radio"> |
||||
<span class="title">是否超区:</span> |
||||
<el-radio-group v-model="radio"> |
||||
<el-radio :value="0">是</el-radio> |
||||
<el-radio :value="1">否</el-radio> |
||||
</el-radio-group> |
||||
</div> |
||||
<div class="el_radio el_money"> |
||||
<span class="title">超区公里数:</span> |
||||
<el-input-number |
||||
v-model="form.num" |
||||
:min="0" |
||||
@change="handleChange" |
||||
:controls="false" |
||||
:value-on-clear="0" |
||||
/> |
||||
</div> |
||||
<div class="el_radio el_money"> |
||||
<span class="title">超区费用:</span> |
||||
<el-input-number |
||||
v-model="form.num" |
||||
:min="0" |
||||
@change="handleChange" |
||||
:controls="false" |
||||
:value-on-clear="0" |
||||
/> |
||||
</div> |
||||
</div> --> |
||||
</div> |
||||
|
||||
<!-- 控件模块 --> |
||||
<el-row> |
||||
<div class="avue-crud__header"> |
||||
<!-- 头部左侧按钮模块 --> |
||||
<div class="avue-crud__left"> |
||||
<el-button type="primary" @click="AddInfo" |
||||
><el-icon><Plus /></el-icon>新增</el-button |
||||
> |
||||
<el-button type="primary" @click="AddInfo" |
||||
><el-icon><Delete /></el-icon>批量删除</el-button |
||||
> |
||||
<el-button type="primary" @click="exportExcel" |
||||
><el-icon><Download /></el-icon>导出</el-button |
||||
> |
||||
</div> |
||||
<!-- 头部右侧按钮模块 --> |
||||
<div class="avue-crud__right"> |
||||
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> |
||||
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> |
||||
<el-button icon="Search" @click="searchHide" circle></el-button> |
||||
</div> |
||||
</div> |
||||
</el-row> |
||||
<div v-loading="loadingObj.list"> |
||||
<!-- 首页表格 --> |
||||
<el-tabs v-model="tabName" type="border-card" class="el_tab_top" @tab-click="tabchange"> |
||||
<el-tab-pane label="上楼费" name="1"></el-tab-pane> |
||||
<el-tab-pane label="装卸费" name="4"></el-tab-pane> |
||||
<el-tab-pane label="平移费" name="3"></el-tab-pane> |
||||
<el-tab-pane label="分货费" name="5"></el-tab-pane> |
||||
</el-tabs> |
||||
<el-row> |
||||
<!-- 列表模块 --> |
||||
<tablecmt |
||||
class="tableNode" |
||||
:columnList="details.columnList" |
||||
:tableData="data" |
||||
@inputTxt="inputsc" |
||||
@timeCheck="timesc" |
||||
@btnCheck="btnsc" |
||||
@selectCheck="selectsc" |
||||
@selection="selectionChange" |
||||
> |
||||
<template #default="slotProps"> |
||||
<template v-if="slotProps.scope.column.label === '操作'"> |
||||
<div class="ElBtnClass"> |
||||
<el-button @click="deldet(slotProps.scope)">删除</el-button> |
||||
</div> |
||||
</template> |
||||
</template> |
||||
</tablecmt> |
||||
</el-row> |
||||
</div> |
||||
<!-- 分页模块 --> |
||||
<!-- <el-row class="el-fy"> |
||||
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
||||
<div></div> |
||||
<el-pagination |
||||
align="right" |
||||
background |
||||
@size-change="sizeChange" |
||||
@current-change="currentChange" |
||||
:current-page="page.currentPage" |
||||
:page-sizes="[30, 50, 80, 120]" |
||||
:page-size="page.pageSize" |
||||
layout="total, sizes, prev, pager, next, jumper" |
||||
:total="page.total" |
||||
> |
||||
</el-pagination> |
||||
</div> |
||||
</el-row> --> |
||||
</div> |
||||
</basic-container> |
||||
<el-dialog v-model="packdialog" :title="Tipstitle" width="70%"> |
||||
<!-- 列表模块 --> |
||||
<tablecmt |
||||
class="TctableNode" |
||||
:columnList="details.columnListTC" |
||||
:tableData="dataTC" |
||||
@inputTxt="inputsc" |
||||
@timeCheck="timesc" |
||||
@btnCheck="btnsc" |
||||
@selectCheck="selectsc" |
||||
@selection="selectionChange" |
||||
> |
||||
<template #default="slotProps"> |
||||
<template v-if="slotProps.scope.column.label === '操作'"> |
||||
<div class="ElBtnClass"> |
||||
<el-button @click="deldet(slotProps.scope)">删除</el-button> |
||||
</div> |
||||
</template> |
||||
</template> |
||||
</tablecmt> |
||||
<template #footer> |
||||
<div class="dialog-footer"> |
||||
<el-button @click="packdialog = false">取消</el-button> |
||||
<el-button type="primary" @click="Packageconfirmation"> 确定 </el-button> |
||||
</div> |
||||
</template> |
||||
</el-dialog> |
||||
|
||||
<el-dialog v-model="ConfirmationInformation" title="数据确认" width="50%"> |
||||
<el-form :inline="true" :model="TcZcInput" style="display: flex" class="tcSoInput"> |
||||
<el-form-item label="包件总数:"> |
||||
<el-input v-model="details.TCselectionList.length" disabled placeholder="已选择包件总数" /> |
||||
</el-form-item> |
||||
|
||||
<el-form-item label="楼层" width="240px" v-if="Tipstitle == '上楼费'"> |
||||
<el-input-number |
||||
v-model="TcZcInput.floolNum" |
||||
:min="0" |
||||
:controls="false" |
||||
:value-on-clear="0" |
||||
placeholder="请输入楼层" |
||||
/> |
||||
</el-form-item> |
||||
|
||||
<el-form-item label="平移费:" width="240px" v-if="Tipstitle == '平移费'"> |
||||
<el-input-number |
||||
v-model="TcZcInput.fee" |
||||
:min="0" |
||||
:controls="false" |
||||
:value-on-clear="0" |
||||
placeholder="请输入距离 单位:米" |
||||
/> |
||||
</el-form-item> |
||||
<!-- <el-form-item label="费用:" width="200px"> |
||||
<el-input v-model="TcZcInput.fee" placeholder="请输入费用" /> |
||||
</el-form-item> --> |
||||
</el-form> |
||||
<template #footer> |
||||
<span class="dialog-footer"> |
||||
<el-button @click="TCancellation">取消</el-button> |
||||
<el-button type="primary" @click="ConfirmSubmission"> 确认提交 </el-button> |
||||
</span> |
||||
</template> |
||||
</el-dialog> |
||||
<!-- 列表配置显示 --> |
||||
<edittablehead |
||||
@setcolum="setnewcolum" |
||||
@closce="showdrawer" |
||||
:drawerShow="drawerShow" |
||||
:columnList="details.columnList" |
||||
v-model="details.columnList" |
||||
></edittablehead> |
||||
</template> |
||||
<script> |
||||
export default { |
||||
name: '/distribution/signfor/asurcharge', |
||||
}; |
||||
</script> |
||||
<script setup> |
||||
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
||||
import { columnList, columnListTC } from '@/option/signfor/asurcharge.js'; |
||||
import { |
||||
addvalueInfoList, |
||||
$_checkAddValuePackageList, |
||||
} from '@/api/distribution/distributionSignfor'; |
||||
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
||||
import { processRowProperty, setNodeHeight } from '@/utils/util'; |
||||
import functions from '@/utils/functions.js'; |
||||
import { ElMessageBox, ElMessage } from 'element-plus'; |
||||
import { downloadXls } from '@/utils/util'; |
||||
import { useStore } from 'vuex'; |
||||
import dayjs from 'dayjs'; |
||||
const $router = useRouter(); //跳转 |
||||
const $useStore = useStore(); //权限 |
||||
const tabName = ref('1'); |
||||
const addvalueDetailId = ref(''); |
||||
const ConfirmationInformation = ref(false); |
||||
const $route = useRoute(); //获取地址栏参数 |
||||
const packdialog = ref(false); |
||||
const Tipstitle = ref('上楼费'); // |
||||
const TcZcInput = ref({}); |
||||
const form = ref({ |
||||
num: 0, |
||||
}); |
||||
const details = reactive({ |
||||
/** 是否开启搜索 */ |
||||
search: false, |
||||
/** 表格搜索条件 */ |
||||
query: {}, |
||||
defaultTime2: [new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 2, 1, 23, 59, 59)], // '12:00:00', '08:00:00' |
||||
/** 时间快捷选择设置 */ |
||||
shortcuts: [ |
||||
{ |
||||
text: '最近一周', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
{ |
||||
text: '最近一个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
{ |
||||
text: '最近三个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
], |
||||
/** 时间选择器数据 */ |
||||
stockupDate: [], |
||||
/** 列表 */ |
||||
columnList, |
||||
columnListTC, |
||||
/** 列表数据 */ |
||||
data: [], |
||||
// 弹窗列表数据 |
||||
dataTC: [], |
||||
/** 页面loading */ |
||||
loadingObj: { |
||||
/** 列表加载loading */ |
||||
list: false, |
||||
packageListLoading: false, |
||||
}, |
||||
/** 列表复选框选中的数据 */ |
||||
selectionList: [], |
||||
TCselectionList: [], |
||||
/** 是否显示设置表格 */ |
||||
drawerShow: false, |
||||
/** 分页参数 */ |
||||
page: { |
||||
currentPage: 1, |
||||
pageSize: 50, |
||||
total: 0, |
||||
}, |
||||
|
||||
/** 弹出层显示 */ |
||||
popUpShow: { |
||||
/** 包件明细 */ |
||||
packageOrderListlVisited: false, |
||||
/** 二维码 */ |
||||
QRCodeVisible: false, |
||||
/** 修改客户信息 */ |
||||
editClientInfoVisible: false, |
||||
}, |
||||
/** 列表Dom节点 */ |
||||
listNode: '', |
||||
form: {}, |
||||
/** 全屏 */ |
||||
fullscreenObj: { |
||||
/** 包明细 */ |
||||
packageOrderListlVisited: false, |
||||
}, |
||||
}); |
||||
|
||||
const { |
||||
search, |
||||
query, |
||||
shortcuts, |
||||
stockupDate, |
||||
data, |
||||
dataTC, |
||||
loadingObj, |
||||
selectionList, |
||||
TCselectionList, |
||||
drawerShow, |
||||
page, |
||||
trickleLoadingPage, |
||||
zeroAdditionalRecordingInfo, |
||||
popUpShow, |
||||
recorddata, |
||||
defaultTime2, |
||||
} = toRefs(details); |
||||
|
||||
/** 展开列表控件 */ |
||||
const showdrawer = _flag => { |
||||
details.drawerShow = _flag; |
||||
}; |
||||
/** 表格表头输入框搜索 */ |
||||
const inputsc = (index, row) => { |
||||
details.query[row.prop] = index; |
||||
processRowProperty(index, row, details); |
||||
test(details.query); |
||||
}; |
||||
// 实例函数 |
||||
const test = val => {}; |
||||
/** 表格表头时间选择 */ |
||||
const timesc = (index, row) => { |
||||
console.log(index, row); |
||||
if (!!index) { |
||||
index = dayjs(index).format('YYYY-MM-DD'); |
||||
} |
||||
details.query[row.prop] = index; |
||||
if (!index) { |
||||
delete details.query[row.prop]; |
||||
} |
||||
}; |
||||
|
||||
/** 表格表头输入框搜索 */ |
||||
const btnsc = val => { |
||||
console.log(val); |
||||
}; |
||||
/** 表格表头下拉框选择 */ |
||||
const selectsc = (index, row) => { |
||||
processRowProperty(index, row, details); |
||||
}; |
||||
/** 表格表头复选框选择 */ |
||||
const selectionChange = list => { |
||||
console.log(list); |
||||
console.log(packdialog.value, 'packdialog'); |
||||
if (!packdialog.value) { |
||||
// 外层表格 |
||||
details.selectionList = list; |
||||
} else { |
||||
// 弹窗表格 |
||||
details.TCselectionList = list; |
||||
} |
||||
}; |
||||
// 网页顶部搜索按钮 |
||||
const searchChange = () => { |
||||
details.search = false; //关闭搜索 |
||||
}; |
||||
// 每页多少条 |
||||
const sizeChange = val => { |
||||
details.page.pageSize = val; |
||||
}; |
||||
/** 页码改变执行的回调 */ |
||||
const currentChange = val => { |
||||
details.page.currentPage = val; |
||||
}; |
||||
// 刷新按钮 |
||||
const searchChangeS = () => { |
||||
details.search = false; //关闭搜索 |
||||
}; |
||||
// 顶部搜索 |
||||
const searchHide = () => { |
||||
console.log(details); |
||||
details.search = !details.search; |
||||
const _node = document.querySelector('.tableNode'); |
||||
setNodeHeight(_node, '', true); |
||||
}; |
||||
// 字典公共函数 |
||||
function updateDictionary(targetArray, dictionaryType) { |
||||
getDictionaryBiz(dictionaryType).then(res => { |
||||
console.log(res, '字典'); |
||||
res.data.data.forEach(item => { |
||||
targetArray.push({ |
||||
value: item.dictKey, |
||||
label: item.dictValue, |
||||
}); |
||||
}); |
||||
}); |
||||
} |
||||
//导出 |
||||
const exportExcel = () => { |
||||
ElMessage({ |
||||
message: '功能维护中', |
||||
type: 'warning', |
||||
}); |
||||
return; |
||||
}; |
||||
// 页面初始化 |
||||
const onLoad = (value = 1) => { |
||||
let data = { |
||||
addvalueId: value, |
||||
signforId: $route.query.id, |
||||
reservationId: $route.query.reservationId, |
||||
}; |
||||
details.loadingObj.list = true; |
||||
addvalueInfoList(data) |
||||
.then(res => { |
||||
console.log(res, 'res'); |
||||
if (res.data.code == 200) { |
||||
if (res.data.data == null) { |
||||
details.data = []; |
||||
addvalueDetailId.value = ''; |
||||
return; |
||||
} |
||||
if (res.data.data.addvalueDetailId) { |
||||
addvalueDetailId.value = res.data.data.addvalueDetailId; |
||||
} |
||||
details.data = res.data.data.packageEntityList; |
||||
} |
||||
}) |
||||
.catch(error => { |
||||
console.log(error); |
||||
}) |
||||
.finally(() => { |
||||
details.loadingObj.list = false; |
||||
}); |
||||
}; |
||||
onLoad(); |
||||
// 页面初始化方法 |
||||
const tabchange = row => { |
||||
console.log(row, 'row '); |
||||
tabName.value = row.props.name; |
||||
Tipstitle.value = row.props.label; //标题 |
||||
onLoad(row.props.name); |
||||
}; |
||||
// 增值服务新增 |
||||
const Newlyadded = value => { |
||||
let data = { |
||||
reservationId: $route.query.reservationId, |
||||
current: 1, |
||||
size: 1, |
||||
...value, |
||||
}; |
||||
$_checkAddValuePackageList(data).then(res => { |
||||
console.log(res, 'res'); |
||||
details.dataTC = res.data.records; |
||||
}); |
||||
}; |
||||
// 新增 |
||||
const AddInfo = () => { |
||||
packdialog.value = true; //开启弹窗 |
||||
|
||||
let Time = setTimeout(() => { |
||||
const _node = document.querySelector('.TctableNode'); |
||||
setNodeHeight(_node, '', true); |
||||
Newlyadded(); |
||||
clearTimeout(Time); |
||||
}, 0); |
||||
}; |
||||
const Packageconfirmation = () => { |
||||
if (!details.TCselectionList.length) { |
||||
ElMessage({ |
||||
message: '请勾选数据', |
||||
type: 'warning', |
||||
}); |
||||
return; |
||||
} |
||||
ConfirmationInformation.value = true; //数据确认 |
||||
}; |
||||
// 确认提交 |
||||
const ConfirmSubmission=()=>{ |
||||
let data={ |
||||
addvalueType:tabName.value,//类型 |
||||
deliveryId: $route.query.id, |
||||
reservationId:$route.query.reservationId, |
||||
num:0,//包件个数 |
||||
packageEntityList:details.TCselectionList,//选择的包件 |
||||
} |
||||
console.log(data,'准备提交的数据'); |
||||
} |
||||
//导出 |
||||
// const exportExcel = () => { |
||||
// if (!Object.values(queryCarn.value).length && !Object.values(details.query).length) { |
||||
// ElMessage({ |
||||
// message: '请输入查询条件', |
||||
// type: 'warning', |
||||
// }); |
||||
// return; |
||||
// } |
||||
// ElMessageBox.confirm('是否导出数据?', { |
||||
// confirmButtonText: '确定', |
||||
// cancelButtonText: '取消', |
||||
// type: 'warning', |
||||
// }) |
||||
// .then(() => { |
||||
// details.loadingObj.list = true; |
||||
// let data = { |
||||
// current: details.page.currentPage, |
||||
// size: details.page.pageSize, |
||||
// ...details.query, |
||||
// ...queryCarn.value, |
||||
// }; |
||||
// $_signforDistributionStockArticleList(data).then(res => { |
||||
// details.loadingObj.list = false; |
||||
// downloadXls(res.data, `已签订单.xlsx`); |
||||
// ElMessage({ |
||||
// message: '导出成功', |
||||
// type: 'success', |
||||
// }); |
||||
// }); |
||||
// }) |
||||
// .catch(() => {}); |
||||
// }; |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
.ElBtnClass button { |
||||
border: none; |
||||
padding: 0; |
||||
background-color: transparent; |
||||
} |
||||
:deep(.el-card) { |
||||
height: 100%; |
||||
} |
||||
:deep(.el-card__body) { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
.el-fy { |
||||
flex: 1; |
||||
display: flex; |
||||
align-items: flex-end; |
||||
margin-bottom: 10px; |
||||
} |
||||
.avue-crud { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
.header { |
||||
.money { |
||||
padding: 10px; |
||||
margin: 0; |
||||
border-bottom: 1px solid #ccc; |
||||
margin-bottom: 10px; |
||||
} |
||||
.radio { |
||||
display: flex; |
||||
} |
||||
.el_money { |
||||
width: 16%; |
||||
display: flex; |
||||
margin-left: 34px; |
||||
align-items: center; |
||||
justify-content: flex-end; |
||||
} |
||||
.el_radio { |
||||
margin-bottom: 10px; |
||||
width: 10%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
align-items: flex-start; |
||||
.title { |
||||
font-size: 16px; |
||||
position: relative; |
||||
padding-left: 10px; |
||||
margin-bottom: 3px; |
||||
} |
||||
.title::after { |
||||
content: ''; |
||||
width: 2px; |
||||
height: 100%; |
||||
background-color: #172e60; |
||||
position: absolute; |
||||
top: 0; |
||||
left: 0; |
||||
} |
||||
.el-radio-group { |
||||
width: 100%; |
||||
border: 1px solid #ccc; |
||||
padding: 0 10px; |
||||
border-radius: 4px; |
||||
} |
||||
} |
||||
} |
||||
:deep(.el_tab_top) { |
||||
.el-tabs__header { |
||||
border-bottom: none; |
||||
} |
||||
.el-tabs__content { |
||||
display: none; |
||||
} |
||||
} |
||||
:deep(.el-dialog) { |
||||
position: fixed; |
||||
left: 50%; |
||||
top: 36%; |
||||
transform: translate(-50%, -50%); |
||||
} |
||||
.tcSoInput { |
||||
:deep(.el-form-item) { |
||||
width: 28%; |
||||
.el-input-number { |
||||
width: 100%; |
||||
} |
||||
} |
||||
} |
||||
</style> |
Loading…
Reference in new issue