Compare commits
No commits in common. "d448280782065835b76c2fa41d8d80e4284bb16e" and "b0078cb099be275f97a4c7a48a9cb9235af15a14" have entirely different histories.
d448280782
...
b0078cb099
@ -1,85 +0,0 @@
|
|||||||
<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