test
This commit is contained in:
parent
5584a47575
commit
d448280782
85
src/views/report/productionDayR/index.vue
Normal file
85
src/views/report/productionDayR/index.vue
Normal file
@ -0,0 +1,85 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<div>开发中</div>
|
||||
<!-- 搜索工作栏 -->
|
||||
<!-- <search-bar
|
||||
:formConfigs="formConfig"
|
||||
ref="searchBarForm"
|
||||
@headBtnClick="buttonClick" />
|
||||
<div class="report-box">
|
||||
<div class="top-box">
|
||||
<div class="left-top">
|
||||
<base-table
|
||||
:table-props="tableProp1"
|
||||
:table-data="tableData"
|
||||
:span-method="spanMethod"
|
||||
:max-height="tableH" />
|
||||
</div>
|
||||
<div class="right-top"></div>
|
||||
</div>
|
||||
<div class="bottom-box">
|
||||
<div class="left-bottom"></div>
|
||||
<div class="right-bottom"></div>
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
const tableProp1 = [
|
||||
{
|
||||
prop: 'col1',
|
||||
label: '生产线',
|
||||
fixed: true,
|
||||
},
|
||||
];
|
||||
export default {
|
||||
name: 'productionDayR',
|
||||
data() {
|
||||
return {
|
||||
formConfig: [
|
||||
{
|
||||
type: 'datePicker',
|
||||
label: '日',
|
||||
dateType: 'date',
|
||||
format: 'yyyy-MM-dd',
|
||||
valueFormat: 'yyyy-MM-dd',
|
||||
placeholder: '日',
|
||||
param: 'searchTime',
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
type: 'button',
|
||||
btnName: '查询',
|
||||
name: 'search',
|
||||
color: 'primary',
|
||||
},
|
||||
{
|
||||
type: 'separate',
|
||||
},
|
||||
{
|
||||
type: this.$auth.hasPermi('base:group-classes:create')
|
||||
? 'button'
|
||||
: '',
|
||||
btnName: '导出',
|
||||
name: 'add',
|
||||
color: 'primary',
|
||||
plain: true,
|
||||
},
|
||||
],
|
||||
};
|
||||
},
|
||||
mounted() {},
|
||||
methods: {},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.report-box {
|
||||
.left-top,
|
||||
.right-top,
|
||||
.left-bottom,
|
||||
.right-bottom {
|
||||
display: inline-block;
|
||||
border: 1px solid red;
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue
Block a user