首页完善以及bug修复
This commit is contained in:
parent
de01771e8b
commit
0cd1273e59
|
|
@ -223,17 +223,12 @@ export default {
|
|||
|
||||
.file-box {
|
||||
padding: 10px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
box-sizing: border-box;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(12, 1fr);
|
||||
grid-gap: 10px;
|
||||
div {
|
||||
width: calc((100% - 110px) / 12);
|
||||
height: 60px;
|
||||
margin-right: 10px;
|
||||
margin-top: 10px;
|
||||
height: 80px;
|
||||
text-align: center;
|
||||
line-height: 60px;
|
||||
background-color: #19a4a0;
|
||||
}
|
||||
|
||||
& div:nth-child(12n) {
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@
|
|||
<el-table-column prop="num" label="减免数量" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="maName" label="机具名称" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="maModel" label="规格型号" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="reduceNum" label="领料数量" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="num" label="领料数量" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="startTime" label="领料日期" align="center" show-overflow-tooltip />
|
||||
<el-table-column prop="endTime" label="退料日期" align="center" show-overflow-tooltip />
|
||||
<el-table-column
|
||||
|
|
@ -246,17 +246,12 @@ export default {
|
|||
|
||||
.file-box {
|
||||
padding: 10px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
box-sizing: border-box;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(12, 1fr);
|
||||
grid-gap: 10px;
|
||||
div {
|
||||
width: calc((100% - 110px) / 12);
|
||||
height: 60px;
|
||||
margin-right: 10px;
|
||||
margin-top: 10px;
|
||||
height: 80px;
|
||||
text-align: center;
|
||||
line-height: 60px;
|
||||
background-color: #19a4a0;
|
||||
}
|
||||
|
||||
& div:nth-child(12n) {
|
||||
|
|
|
|||
|
|
@ -8,11 +8,12 @@
|
|||
<el-form-item>
|
||||
<el-date-picker
|
||||
v-model="queryDate"
|
||||
type="monthrange"
|
||||
type="daterange"
|
||||
range-separator="至"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
value-format="yyyy-MM-DD"
|
||||
value-format="yyyy-MM-dd"
|
||||
format="yyyy-MM-dd"
|
||||
style="width: 95%"
|
||||
/>
|
||||
</el-form-item>
|
||||
|
|
@ -302,6 +303,7 @@ export default {
|
|||
onHandleReset() {
|
||||
this.queryDate = []
|
||||
this.$refs.queryFormRef.resetFields()
|
||||
this.getCardListFun()
|
||||
},
|
||||
// 自定义事件 打开二级页面
|
||||
onOpenLevelTwoPages(title) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue