|
@@ -85,7 +85,7 @@
|
|
|
>
|
|
|
<div class="percent">{{ item.text }}</div>
|
|
|
<div class="nums">
|
|
|
- {{ matrixOther[item.code] }}
|
|
|
+ {{ matrixOther[item.code] ? matrixOther[item.code] : "0.00" }}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -99,6 +99,7 @@
|
|
|
padding: 5px;
|
|
|
border-radius: 0 0 5px 5px;
|
|
|
"
|
|
|
+ v-if="Object.keys(showMatrixList).length"
|
|
|
>
|
|
|
<div
|
|
|
class="matrixs"
|
|
@@ -215,6 +216,31 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div
|
|
|
+ v-else
|
|
|
+ style="
|
|
|
+ height: calc(100% - 78px);
|
|
|
+ overflow-y: auto;
|
|
|
+ background-color: rgba(0, 0, 0, 0.45);
|
|
|
+ padding: 5px;
|
|
|
+ border-radius: 0 0 5px 5px;
|
|
|
+ position: relative;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <el-empty
|
|
|
+ description="暂无数据"
|
|
|
+ style="
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <template #image>
|
|
|
+ <span></span>
|
|
|
+ </template>
|
|
|
+ </el-empty>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<el-dialog
|
|
|
class="dialogs"
|
|
@@ -553,10 +579,11 @@ export default {
|
|
|
deepClone,
|
|
|
findUpColor,
|
|
|
renderData(company, wpid, name, tab) {
|
|
|
+ this.BASE.showLoading();
|
|
|
this.tab = tab;
|
|
|
if (wpid) {
|
|
|
this.stationCode = wpid;
|
|
|
- this.getSingleMatrix();
|
|
|
+ this.getSingleMatrix(true);
|
|
|
} else {
|
|
|
clearInterval(this.timer);
|
|
|
this.timer = null;
|
|
@@ -565,17 +592,28 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
// 获取单场站矩阵数据
|
|
|
- getSingleMatrix() {
|
|
|
+ getSingleMatrix(first) {
|
|
|
+ if (first) {
|
|
|
+ this.BASE.showLoading();
|
|
|
+ }
|
|
|
if (this.stationCode) {
|
|
|
api
|
|
|
.matrixSinglePushFL({ wpid: this.stationCode, type: this.tab })
|
|
|
.then(({ data }) => {
|
|
|
- this.matrixState = data.mxzt;
|
|
|
- this.matrixOther = data.qtsj;
|
|
|
- this.singleMatrixInfo = data.ZQ;
|
|
|
- if (this.current) {
|
|
|
- this.handleClick(this.current);
|
|
|
+ if (
|
|
|
+ Object.keys(data).indexOf(`${this.tab.toLowerCase()}zqsl`) !=
|
|
|
+ -1 &&
|
|
|
+ data.qtsj.czid == this.stationCode
|
|
|
+ ) {
|
|
|
+ this.BASE.closeLoading();
|
|
|
+ this.matrixState = data.mxzt;
|
|
|
+ this.matrixOther = data.qtsj;
|
|
|
+ this.singleMatrixInfo = data.ZQ;
|
|
|
+ if (this.current) {
|
|
|
+ this.handleClick(this.current);
|
|
|
+ }
|
|
|
}
|
|
|
+ // this.BASE.closeLoading();
|
|
|
});
|
|
|
}
|
|
|
},
|
|
@@ -1322,7 +1360,7 @@ p {
|
|
|
.line-namebox {
|
|
|
padding: 0 10px;
|
|
|
min-height: 66px;
|
|
|
- flex: 0 0 auto;
|
|
|
+ width: 72px;
|
|
|
font-size: 12px;
|
|
|
color: #b3b3b3;
|
|
|
border: 1px solid #fff;
|
|
@@ -1342,9 +1380,11 @@ p {
|
|
|
}
|
|
|
|
|
|
.line-list {
|
|
|
- display: flex;
|
|
|
+ width: calc(100% - 72px);
|
|
|
+ display: grid;
|
|
|
+ grid-template-columns: repeat(auto-fill, 124px);
|
|
|
margin: 0 10px;
|
|
|
- flex-wrap: wrap;
|
|
|
+ justify-content: space-between;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1354,12 +1394,13 @@ p {
|
|
|
align-items: center;
|
|
|
flex-wrap: wrap;
|
|
|
margin-top: 5px;
|
|
|
-
|
|
|
+ width: 124px;
|
|
|
+ height: 59px;
|
|
|
.matrix-card {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
- width: 114px;
|
|
|
- height: 59px;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
margin-right: 2px;
|
|
|
margin-bottom: 2px;
|
|
|
|
|
@@ -1371,7 +1412,7 @@ p {
|
|
|
height: 100%;
|
|
|
|
|
|
.card-left {
|
|
|
- width: 45px;
|
|
|
+ width: 50px;
|
|
|
height: 100%;
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
@@ -1399,8 +1440,9 @@ p {
|
|
|
.card-right {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
- padding: 0px 4px;
|
|
|
+ padding-left: 12px;
|
|
|
position: relative;
|
|
|
+ width: calc(100% - 1px - 50px);
|
|
|
.right-item {
|
|
|
display: flex;
|
|
|
flex-direction: row;
|