11 changed files with 652 additions and 371 deletions
@ -1,303 +1,348 @@ |
|||||||
<template> |
<template> |
||||||
<basic-container> |
<basic-container> |
||||||
<!-- 首页表格 --> |
<!-- 首页表格 --> |
||||||
<div class="avue-crud"> |
<div class="avue-crud"> |
||||||
<!-- 搜索模块 --> |
<!-- 搜索模块 --> |
||||||
<el-row v-if="search"> |
<el-row v-if="search"> |
||||||
<!-- 查询模块 --> |
<!-- 查询模块 --> |
||||||
<el-form :inline="true" :model="query" class="el-fr-d"> |
<el-form :inline="true" :model="query" class="el-fr-d"> |
||||||
<!-- 查询按钮 --> |
<!-- 查询按钮 --> |
||||||
<el-form-item class="el-btn"> |
<el-form-item class="el-btn"> |
||||||
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
||||||
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
||||||
</el-form-item> |
</el-form-item> |
||||||
</el-form> |
</el-form> |
||||||
</el-row> |
</el-row> |
||||||
|
|
||||||
<!-- 控件模块 --> |
<!-- 控件模块 --> |
||||||
<el-row> |
<el-row> |
||||||
<div class="avue-crud__header"> |
<div class="avue-crud__header"> |
||||||
<!-- 头部左侧按钮模块 --> |
<!-- 头部左侧按钮模块 --> |
||||||
<div class="avue-crud__left"> |
<div class="avue-crud__left"> |
||||||
<el-button type="primary" @click="AddInfo"><el-icon><Plus /></el-icon>导出</el-button> |
<el-button type="primary" @click="exportExcel" |
||||||
</div> |
><el-icon><Plus /></el-icon>导出</el-button |
||||||
<!-- 头部右侧按钮模块 --> |
|
||||||
<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 type="primary">编辑</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> |
</div> |
||||||
</el-row> |
<!-- 头部右侧按钮模块 --> |
||||||
</div> |
<div class="avue-crud__right"> |
||||||
</basic-container> |
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> |
||||||
<!-- 列表配置显示 --> |
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> |
||||||
<edittablehead |
<el-button icon="Search" @click="searchHide" circle></el-button> |
||||||
@setcolum="setnewcolum" |
</div> |
||||||
@closce="showdrawer" |
</div> |
||||||
:drawerShow="drawerShow" |
</el-row> |
||||||
:columnList="details.columnList" |
|
||||||
v-model="details.columnList" |
<!-- 首页表格 --> |
||||||
></edittablehead> |
<el-row> |
||||||
</template> |
<!-- 列表模块 --> |
||||||
|
<tablecmt |
||||||
<script setup> |
class="tableNode" |
||||||
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
:columnList="details.columnList" |
||||||
import { columnList } from '@/option/storagecost/Traincostbreakdown.js'; |
:tableData="data" |
||||||
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
:loading="loadingObj.list" |
||||||
import { processRowProperty,setNodeHeight } from '@/utils/util'; |
@inputTxt="inputsc" |
||||||
import functions from '@/utils/functions.js'; |
@timeCheck="timesc" |
||||||
import { ElMessageBox,ElMessage } from 'element-plus'; |
@btnCheck="btnsc" |
||||||
import { downloadXls } from '@/utils/util'; |
@selectCheck="selectsc" |
||||||
import { useStore } from 'vuex'; |
@selection="selectionChange" |
||||||
import dayjs from 'dayjs'; |
> |
||||||
const $router = useRouter();//跳转 |
<template #default="slotProps"> |
||||||
const $useStore = useStore();//权限 |
<template v-if="slotProps.scope.column.label === '操作'"> |
||||||
const $route = useRoute();//获取地址栏参数 |
<div class="ElBtnClass"> |
||||||
const details = reactive({ |
<el-button type="primary">编辑</el-button> |
||||||
/** 是否开启搜索 */ |
</div> |
||||||
search: false, |
</template> |
||||||
/** 表格搜索条件 */ |
</template> |
||||||
query: {}, |
</tablecmt> |
||||||
/** 时间快捷选择设置 */ |
</el-row> |
||||||
shortcuts: [ |
|
||||||
{ |
<!-- 分页模块 --> |
||||||
text: '最近一周', |
<el-row class="el-fy"> |
||||||
value: () => { |
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
||||||
const end = new Date(); |
<div></div> |
||||||
const start = new Date(); |
<el-pagination |
||||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); |
align="right" |
||||||
return [start, end]; |
background |
||||||
}, |
@size-change="sizeChange" |
||||||
}, |
@current-change="currentChange" |
||||||
{ |
:current-page="page.currentPage" |
||||||
text: '最近一个月', |
:page-sizes="[30, 50, 80, 120]" |
||||||
value: () => { |
:page-size="page.pageSize" |
||||||
const end = new Date(); |
layout="total, sizes, prev, pager, next, jumper" |
||||||
const start = new Date(); |
:total="page.total" |
||||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); |
> |
||||||
return [start, end]; |
</el-pagination> |
||||||
}, |
</div> |
||||||
}, |
</el-row> |
||||||
{ |
</div> |
||||||
text: '最近三个月', |
</basic-container> |
||||||
value: () => { |
<!-- 列表配置显示 --> |
||||||
const end = new Date(); |
<edittablehead |
||||||
const start = new Date(); |
@setcolum="setnewcolum" |
||||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); |
@closce="showdrawer" |
||||||
return [start, end]; |
: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/Traincostbreakdown.js'; |
||||||
|
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
||||||
|
import { processRowProperty, setNodeHeight } from '@/utils/util'; |
||||||
|
import { $_getMyWarehouseList,$_Traincostbreakdown ,$_expenseDispatchTrainDetail} from '@/api/storagecost/index.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]; |
||||||
}, |
}, |
||||||
], |
|
||||||
/** 时间选择器数据 */ |
|
||||||
stockupDate: [], |
|
||||||
/** 列表 */ |
|
||||||
columnList, |
|
||||||
|
|
||||||
/** 列表数据 */ |
|
||||||
data: [{}], |
|
||||||
/** 页面loading */ |
|
||||||
loadingObj: { |
|
||||||
/** 列表加载loading */ |
|
||||||
list: false, |
|
||||||
packageListLoading: false, |
|
||||||
}, |
}, |
||||||
/** 列表复选框选中的数据 */ |
{ |
||||||
selectionList: [], |
text: '最近一个月', |
||||||
/** 是否显示设置表格 */ |
value: () => { |
||||||
drawerShow: false, |
const end = new Date(); |
||||||
/** 分页参数 */ |
const start = new Date(); |
||||||
page: { |
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); |
||||||
currentPage: 1, |
return [start, end]; |
||||||
pageSize: 50, |
}, |
||||||
total: 0, |
|
||||||
}, |
|
||||||
|
|
||||||
/** 弹出层显示 */ |
|
||||||
popUpShow: { |
|
||||||
/** 包件明细 */ |
|
||||||
packageOrderListlVisited: false, |
|
||||||
/** 二维码 */ |
|
||||||
QRCodeVisible: false, |
|
||||||
/** 修改客户信息 */ |
|
||||||
editClientInfoVisible: false, |
|
||||||
}, |
}, |
||||||
/** 列表Dom节点 */ |
{ |
||||||
listNode: '', |
text: '最近三个月', |
||||||
form: {}, |
value: () => { |
||||||
/** 全屏 */ |
const end = new Date(); |
||||||
fullscreenObj: { |
const start = new Date(); |
||||||
/** 包明细 */ |
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); |
||||||
packageOrderListlVisited: false, |
return [start, end]; |
||||||
|
}, |
||||||
}, |
}, |
||||||
}); |
], |
||||||
|
/** 时间选择器数据 */ |
||||||
const { |
stockupDate: [], |
||||||
search, |
/** 列表 */ |
||||||
query, |
columnList, |
||||||
shortcuts, |
|
||||||
stockupDate, |
|
||||||
data, |
|
||||||
loadingObj, |
|
||||||
selectionList, |
|
||||||
drawerShow, |
|
||||||
page, |
|
||||||
trickleLoadingPage, |
|
||||||
zeroAdditionalRecordingInfo, |
|
||||||
popUpShow, |
|
||||||
recorddata, |
|
||||||
} = toRefs(details); |
|
||||||
|
|
||||||
/** 展开列表控件 */ |
/** 列表数据 */ |
||||||
const showdrawer = _flag => { |
data: [{}], |
||||||
details.drawerShow = _flag; |
/** 页面loading */ |
||||||
}; |
loadingObj: { |
||||||
/** 表格表头输入框搜索 */ |
/** 列表加载loading */ |
||||||
const inputsc = (index, row) => { |
list: false, |
||||||
details.query[row.prop] = index; |
packageListLoading: false, |
||||||
processRowProperty(index, row, details); |
}, |
||||||
test(details.query); |
/** 列表复选框选中的数据 */ |
||||||
|
selectionList: [], |
||||||
}; |
/** 是否显示设置表格 */ |
||||||
// 实例函数 |
drawerShow: false, |
||||||
const test=(val)=>{ |
/** 分页参数 */ |
||||||
|
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); |
||||||
|
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; |
||||||
const timesc = (index, row) => { |
if (!index) { |
||||||
console.log(index, row); |
delete details.query[row.prop]; |
||||||
if (!!index) { |
} |
||||||
index = dayjs(index).format('YYYY-MM-DD'); |
}; |
||||||
} |
|
||||||
details.query[row.prop] = index; |
/** 表格表头输入框搜索 */ |
||||||
if (!index) { |
const btnsc = val => { |
||||||
delete details.query[row.prop]; |
console.log(val); |
||||||
} |
}; |
||||||
}; |
/** 表格表头下拉框选择 */ |
||||||
|
const selectsc = (index, row) => { |
||||||
/** 表格表头输入框搜索 */ |
processRowProperty(index, row, details); |
||||||
const btnsc = val => { |
}; |
||||||
console.log(val); |
/** 表格表头复选框选择 */ |
||||||
}; |
const selectionChange = list => { |
||||||
/** 表格表头下拉框选择 */ |
console.log(list); |
||||||
const selectsc = (index, row) => { |
details.selectionList = list; |
||||||
processRowProperty(index, row, details); |
}; |
||||||
}; |
// 网页顶部搜索按钮 |
||||||
/** 表格表头复选框选择 */ |
const searchChange = () => { |
||||||
const selectionChange = list => { |
details.search = false; //关闭搜索 |
||||||
console.log(list); |
}; |
||||||
details.selectionList = list; |
// 每页多少条 |
||||||
}; |
const sizeChange = val => { |
||||||
// 网页顶部搜索按钮 |
page.value.pageSize = val; |
||||||
const searchChange = () => { |
}; |
||||||
details.search = false; //关闭搜索 |
/** 页码改变执行的回调 */ |
||||||
}; |
const currentChange = val => { |
||||||
// 每页多少条 |
page.value.currentPage = val; |
||||||
const sizeChange = val => { |
}; |
||||||
page.value.pageSize = val; |
// 刷新按钮 |
||||||
}; |
const searchChangeS = () => { |
||||||
/** 页码改变执行的回调 */ |
details.search = false; //关闭搜索 |
||||||
const currentChange = val => { |
}; |
||||||
page.value.currentPage = val; |
// 顶部搜索 |
||||||
}; |
const searchHide = () => { |
||||||
// 刷新按钮 |
console.log(details); |
||||||
const searchChangeS = () => { |
details.search = !details.search; |
||||||
details.search = false; //关闭搜索 |
const _node = document.querySelector('.tableNode'); |
||||||
}; |
setNodeHeight(_node, '', true); |
||||||
// 顶部搜索 |
}; |
||||||
const searchHide = () => { |
// 字典公共函数 |
||||||
console.log(details); |
function updateDictionary(targetArray, dictionaryType) { |
||||||
details.search = !details.search; |
getDictionaryBiz(dictionaryType).then(res => { |
||||||
const _node = document.querySelector('.tableNode'); |
console.log(res, '字典'); |
||||||
setNodeHeight(_node, '', true); |
res.data.data.forEach(item => { |
||||||
}; |
targetArray.push({ |
||||||
// 字典公共函数 |
value: item.dictKey, |
||||||
function updateDictionary(targetArray, dictionaryType) { |
label: item.dictValue, |
||||||
getDictionaryBiz(dictionaryType).then(res => { |
|
||||||
console.log(res, '字典'); |
|
||||||
res.data.data.forEach(item => { |
|
||||||
targetArray.push({ |
|
||||||
value: item.dictKey, |
|
||||||
label: item.dictValue, |
|
||||||
}); |
|
||||||
}); |
}); |
||||||
}); |
}); |
||||||
} |
}); |
||||||
|
} |
||||||
// 页面初始化 |
// 页面初始化 |
||||||
const onLoad=()=>{ |
const onLoad = value => { |
||||||
|
let data = { |
||||||
|
current: details.page.currentPage, |
||||||
|
size: details.page.pageSize, |
||||||
|
...details.query, |
||||||
|
...value, |
||||||
|
}; |
||||||
|
details.loadingObj.list=true; |
||||||
|
$_Traincostbreakdown(data).then(res => { |
||||||
|
console.log(res,'初始化数据'); |
||||||
|
if (res.data.code == 200) { |
||||||
|
details.data = res.data.data.records || []; |
||||||
|
details.page.total = res.data.data.total; //页码 |
||||||
|
} |
||||||
|
}).catch((error)=>{ |
||||||
|
console.log(error); |
||||||
|
}).finally(()=>{ |
||||||
|
details.loadingObj.list=false; |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
} |
// 页面初始化方法 |
||||||
|
const PageOnload = () => { |
||||||
|
onLoad(); //获取列表参数 |
||||||
|
}; |
||||||
|
// 页面初始化方法 |
||||||
|
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, '要提交的数据'); |
||||||
|
$_expenseDispatchTrainDetail(data).then(res => { |
||||||
|
details.loadingObj.list = false; |
||||||
|
downloadXls(res.data, `车次成本明细.xlsx`); |
||||||
|
ElMessage({ |
||||||
|
message: '导出成功', |
||||||
|
type: 'success', |
||||||
|
}); |
||||||
|
}); |
||||||
|
}) |
||||||
|
.catch(() => {}); |
||||||
|
}; |
||||||
|
</script> |
||||||
|
|
||||||
// 页面初始化方法 |
<style scoped lang="scss"> |
||||||
</script> |
.ElBtnClass button { |
||||||
|
border: none; |
||||||
<style scoped lang="scss"> |
padding: 0; |
||||||
.ElBtnClass button { |
background-color: transparent; |
||||||
border: none; |
} |
||||||
padding: 0; |
:deep(.el-card) { |
||||||
background-color: transparent; |
height: 100%; |
||||||
} |
} |
||||||
:deep(.el-card) { |
:deep(.el-card__body) { |
||||||
height: 100%; |
height: 100%; |
||||||
} |
display: flex; |
||||||
:deep(.el-card__body) { |
flex-direction: column; |
||||||
height: 100%; |
} |
||||||
display: flex; |
.el-fy { |
||||||
flex-direction: column; |
flex: 1; |
||||||
} |
display: flex; |
||||||
.el-fy { |
align-items: flex-end; |
||||||
flex: 1; |
margin-bottom: 10px; |
||||||
display: flex; |
} |
||||||
align-items: flex-end; |
.avue-crud { |
||||||
margin-bottom: 10px; |
height: 100%; |
||||||
} |
display: flex; |
||||||
.avue-crud { |
flex-direction: column; |
||||||
height: 100%; |
} |
||||||
display: flex; |
</style> |
||||||
flex-direction: column; |
|
||||||
} |
|
||||||
</style> |
|
||||||
|
|
||||||
|
Loading…
Reference in new issue