|
|
@@ -43,7 +43,7 @@ export default {
|
|
|
headerBGC: '#0f1325', //表头
|
|
|
oddRowBGC: '#0f1325', //奇数行
|
|
|
evenRowBGC: '#171c33', //偶数行
|
|
|
- columnWidth: [130,190, 180, 100, 120, 150, 260],
|
|
|
+ columnWidth: [130,190, 180, 120, 140, 180, 260],
|
|
|
align: ['center','left','left','left','left','center','center','center','center']
|
|
|
},
|
|
|
timing: null,
|
|
|
@@ -77,17 +77,17 @@ export default {
|
|
|
for (let index = 0; index < dataList.length; index++) {
|
|
|
const element = dataList[index];
|
|
|
let item = new Array();
|
|
|
- item.push("<span class='colorGrass fs-lg'>" + element.v_licode + "</span>");
|
|
|
- item.push("<span class='colorGrass fs-lg'>" + element.v_macode + "</span>");
|
|
|
- item.push("<span class='colorGrass fs-lg'>" + element.v_jitype + "</span>");
|
|
|
- item.push("<span class='colorGrass fs-lg'>" + element.v_qty + "</span>");
|
|
|
+ item.push("<span class='colorGrass fs-xxl'>" + element.v_licode + "</span>");
|
|
|
+ item.push("<span class='colorGrass fs-xxl'>" + element.v_macode + "</span>");
|
|
|
+ item.push("<span class='colorGrass fs-xxl'>" + element.v_jitype + "</span>");
|
|
|
+ item.push("<span class='colorGrass fs-xxl'>" + element.v_qty + "</span>");
|
|
|
if (element.v_blstatus == '未领料') { //98%
|
|
|
- item.push("<span class='colorRemind fs-lgmd'>" + element.v_blstatus + "</span>");
|
|
|
+ item.push("<span class='colorRemind fs-xxl'>" + element.v_blstatus + "</span>");
|
|
|
} else {
|
|
|
- item.push("<span class='colorGrass fs-lg'>" + element.v_blstatus + "</span>");
|
|
|
+ item.push("<span class='colorGrass fs-xxl'>" + element.v_blstatus + "</span>");
|
|
|
}
|
|
|
- item.push("<span class='colorGrass fs-lg'>" + element.v_planoutqty + "</span>");
|
|
|
- item.push("<span class='colorRemind fs-lg'>" + element.v_remark + "</span>");
|
|
|
+ item.push("<span class='colorGrass fs-xxl'>" + element.v_planoutqty + "</span>");
|
|
|
+ item.push("<span class='colorRemind fs-xxl'>" + element.v_remark + "</span>");
|
|
|
resultList.push(item);
|
|
|
}
|
|
|
const scrollBoard = this.$refs['scroll-board'];
|
|
|
@@ -120,18 +120,19 @@ $box-width: 100%;
|
|
|
|
|
|
.text {
|
|
|
color: #c3cbde;
|
|
|
- //font-size: 15px;
|
|
|
+ font-size: 25px;
|
|
|
}
|
|
|
|
|
|
.body-box {
|
|
|
width: $box-width;
|
|
|
|
|
|
.dv-scroll-board .header {
|
|
|
- font-size: 20px;
|
|
|
+ font-size: 25px;
|
|
|
}
|
|
|
|
|
|
.dv-scroll-board {
|
|
|
height: 470px;
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
}
|