|
|
@ -19,7 +19,9 @@ |
|
|
|
<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" |
|
|
|
|
|
|
|
><el-icon><Plus /></el-icon>导出</el-button |
|
|
|
|
|
|
|
> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
<div class="avue-crud__right"> |
|
|
|
<div class="avue-crud__right"> |
|
|
@ -82,22 +84,22 @@ |
|
|
|
:columnList="details.columnList" |
|
|
|
:columnList="details.columnList" |
|
|
|
v-model="details.columnList" |
|
|
|
v-model="details.columnList" |
|
|
|
></edittablehead> |
|
|
|
></edittablehead> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<script setup> |
|
|
|
<script setup> |
|
|
|
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
|
|
|
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
|
|
|
import { columnList } from '@/option/storagecost/Traincostbreakdown.js'; |
|
|
|
import { columnList } from '@/option/storagecost/Traincostbreakdown.js'; |
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
|
|
|
import { processRowProperty,setNodeHeight } from '@/utils/util'; |
|
|
|
import { processRowProperty, setNodeHeight } from '@/utils/util'; |
|
|
|
import functions from '@/utils/functions.js'; |
|
|
|
import { $_getMyWarehouseList,$_Traincostbreakdown ,$_expenseDispatchTrainDetail} from '@/api/storagecost/index.js'; |
|
|
|
import { ElMessageBox,ElMessage } from 'element-plus'; |
|
|
|
import { ElMessageBox, ElMessage } from 'element-plus'; |
|
|
|
import { downloadXls } from '@/utils/util'; |
|
|
|
import { downloadXls } from '@/utils/util'; |
|
|
|
import { useStore } from 'vuex'; |
|
|
|
import { useStore } from 'vuex'; |
|
|
|
import dayjs from 'dayjs'; |
|
|
|
import dayjs from 'dayjs'; |
|
|
|
const $router = useRouter();//跳转 |
|
|
|
const $router = useRouter(); //跳转 |
|
|
|
const $useStore = useStore();//权限 |
|
|
|
const $useStore = useStore(); //权限 |
|
|
|
const $route = useRoute();//获取地址栏参数 |
|
|
|
const $route = useRoute(); //获取地址栏参数 |
|
|
|
const details = reactive({ |
|
|
|
const details = reactive({ |
|
|
|
/** 是否开启搜索 */ |
|
|
|
/** 是否开启搜索 */ |
|
|
|
search: false, |
|
|
|
search: false, |
|
|
|
/** 表格搜索条件 */ |
|
|
|
/** 表格搜索条件 */ |
|
|
@ -173,9 +175,9 @@ |
|
|
|
/** 包明细 */ |
|
|
|
/** 包明细 */ |
|
|
|
packageOrderListlVisited: false, |
|
|
|
packageOrderListlVisited: false, |
|
|
|
}, |
|
|
|
}, |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
const { |
|
|
|
const { |
|
|
|
search, |
|
|
|
search, |
|
|
|
query, |
|
|
|
query, |
|
|
|
shortcuts, |
|
|
|
shortcuts, |
|
|
@ -189,25 +191,22 @@ |
|
|
|
zeroAdditionalRecordingInfo, |
|
|
|
zeroAdditionalRecordingInfo, |
|
|
|
popUpShow, |
|
|
|
popUpShow, |
|
|
|
recorddata, |
|
|
|
recorddata, |
|
|
|
} = toRefs(details); |
|
|
|
} = toRefs(details); |
|
|
|
|
|
|
|
|
|
|
|
/** 展开列表控件 */ |
|
|
|
/** 展开列表控件 */ |
|
|
|
const showdrawer = _flag => { |
|
|
|
const showdrawer = _flag => { |
|
|
|
details.drawerShow = _flag; |
|
|
|
details.drawerShow = _flag; |
|
|
|
}; |
|
|
|
}; |
|
|
|
/** 表格表头输入框搜索 */ |
|
|
|
/** 表格表头输入框搜索 */ |
|
|
|
const inputsc = (index, row) => { |
|
|
|
const inputsc = (index, row) => { |
|
|
|
details.query[row.prop] = index; |
|
|
|
details.query[row.prop] = index; |
|
|
|
processRowProperty(index, row, details); |
|
|
|
processRowProperty(index, row, details); |
|
|
|
test(details.query); |
|
|
|
test(details.query); |
|
|
|
|
|
|
|
}; |
|
|
|
}; |
|
|
|
// 实例函数 |
|
|
|
// 实例函数 |
|
|
|
const test = val => {}; |
|
|
|
const test=(val)=>{ |
|
|
|
/** 表格表头时间选择 */ |
|
|
|
|
|
|
|
const timesc = (index, row) => { |
|
|
|
} |
|
|
|
|
|
|
|
/** 表格表头时间选择 */ |
|
|
|
|
|
|
|
const timesc = (index, row) => { |
|
|
|
|
|
|
|
console.log(index, row); |
|
|
|
console.log(index, row); |
|
|
|
if (!!index) { |
|
|
|
if (!!index) { |
|
|
|
index = dayjs(index).format('YYYY-MM-DD'); |
|
|
|
index = dayjs(index).format('YYYY-MM-DD'); |
|
|
@ -216,46 +215,46 @@ |
|
|
|
if (!index) { |
|
|
|
if (!index) { |
|
|
|
delete details.query[row.prop]; |
|
|
|
delete details.query[row.prop]; |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
/** 表格表头输入框搜索 */ |
|
|
|
/** 表格表头输入框搜索 */ |
|
|
|
const btnsc = val => { |
|
|
|
const btnsc = val => { |
|
|
|
console.log(val); |
|
|
|
console.log(val); |
|
|
|
}; |
|
|
|
}; |
|
|
|
/** 表格表头下拉框选择 */ |
|
|
|
/** 表格表头下拉框选择 */ |
|
|
|
const selectsc = (index, row) => { |
|
|
|
const selectsc = (index, row) => { |
|
|
|
processRowProperty(index, row, details); |
|
|
|
processRowProperty(index, row, details); |
|
|
|
}; |
|
|
|
}; |
|
|
|
/** 表格表头复选框选择 */ |
|
|
|
/** 表格表头复选框选择 */ |
|
|
|
const selectionChange = list => { |
|
|
|
const selectionChange = list => { |
|
|
|
console.log(list); |
|
|
|
console.log(list); |
|
|
|
details.selectionList = list; |
|
|
|
details.selectionList = list; |
|
|
|
}; |
|
|
|
}; |
|
|
|
// 网页顶部搜索按钮 |
|
|
|
// 网页顶部搜索按钮 |
|
|
|
const searchChange = () => { |
|
|
|
const searchChange = () => { |
|
|
|
details.search = false; //关闭搜索 |
|
|
|
details.search = false; //关闭搜索 |
|
|
|
}; |
|
|
|
}; |
|
|
|
// 每页多少条 |
|
|
|
// 每页多少条 |
|
|
|
const sizeChange = val => { |
|
|
|
const sizeChange = val => { |
|
|
|
page.value.pageSize = val; |
|
|
|
page.value.pageSize = val; |
|
|
|
}; |
|
|
|
}; |
|
|
|
/** 页码改变执行的回调 */ |
|
|
|
/** 页码改变执行的回调 */ |
|
|
|
const currentChange = val => { |
|
|
|
const currentChange = val => { |
|
|
|
page.value.currentPage = val; |
|
|
|
page.value.currentPage = val; |
|
|
|
}; |
|
|
|
}; |
|
|
|
// 刷新按钮 |
|
|
|
// 刷新按钮 |
|
|
|
const searchChangeS = () => { |
|
|
|
const searchChangeS = () => { |
|
|
|
details.search = false; //关闭搜索 |
|
|
|
details.search = false; //关闭搜索 |
|
|
|
}; |
|
|
|
}; |
|
|
|
// 顶部搜索 |
|
|
|
// 顶部搜索 |
|
|
|
const searchHide = () => { |
|
|
|
const searchHide = () => { |
|
|
|
console.log(details); |
|
|
|
console.log(details); |
|
|
|
details.search = !details.search; |
|
|
|
details.search = !details.search; |
|
|
|
const _node = document.querySelector('.tableNode'); |
|
|
|
const _node = document.querySelector('.tableNode'); |
|
|
|
setNodeHeight(_node, '', true); |
|
|
|
setNodeHeight(_node, '', true); |
|
|
|
}; |
|
|
|
}; |
|
|
|
// 字典公共函数 |
|
|
|
// 字典公共函数 |
|
|
|
function updateDictionary(targetArray, dictionaryType) { |
|
|
|
function updateDictionary(targetArray, dictionaryType) { |
|
|
|
getDictionaryBiz(dictionaryType).then(res => { |
|
|
|
getDictionaryBiz(dictionaryType).then(res => { |
|
|
|
console.log(res, '字典'); |
|
|
|
console.log(res, '字典'); |
|
|
|
res.data.data.forEach(item => { |
|
|
|
res.data.data.forEach(item => { |
|
|
@ -265,39 +264,85 @@ |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
// 页面初始化 |
|
|
|
|
|
|
|
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; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
// 页面初始化方法 |
|
|
|
// 页面初始化方法 |
|
|
|
</script> |
|
|
|
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"> |
|
|
|
<style scoped lang="scss"> |
|
|
|
.ElBtnClass button { |
|
|
|
.ElBtnClass button { |
|
|
|
border: none; |
|
|
|
border: none; |
|
|
|
padding: 0; |
|
|
|
padding: 0; |
|
|
|
background-color: transparent; |
|
|
|
background-color: transparent; |
|
|
|
} |
|
|
|
} |
|
|
|
:deep(.el-card) { |
|
|
|
:deep(.el-card) { |
|
|
|
height: 100%; |
|
|
|
height: 100%; |
|
|
|
} |
|
|
|
} |
|
|
|
:deep(.el-card__body) { |
|
|
|
:deep(.el-card__body) { |
|
|
|
height: 100%; |
|
|
|
height: 100%; |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
flex-direction: column; |
|
|
|
} |
|
|
|
} |
|
|
|
.el-fy { |
|
|
|
.el-fy { |
|
|
|
flex: 1; |
|
|
|
flex: 1; |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
align-items: flex-end; |
|
|
|
align-items: flex-end; |
|
|
|
margin-bottom: 10px; |
|
|
|
margin-bottom: 10px; |
|
|
|
} |
|
|
|
} |
|
|
|
.avue-crud { |
|
|
|
.avue-crud { |
|
|
|
height: 100%; |
|
|
|
height: 100%; |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
flex-direction: column; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |
|
|
|
</style> |
|
|
|
|
|
|
|
|
|
|
|