8afb66b2 by 焦泽平

权属状态

1 parent 68406e82
...@@ -58,14 +58,14 @@ ...@@ -58,14 +58,14 @@
58 <span class="qsztFont"></span> 58 <span class="qsztFont"></span>
59 </span> 59 </span>
60 <template v-else> 60 <template v-else>
61 <span class="qsztImg" v-if="item.qszt=='0'" style="background: #f79700; "> 61 <span class="qsztImg" v-if="item.qszt=='0'" >
62 <span class="qsztFont"></span> 62 <span class="qsztFont" style="color: red; "></span>
63 </span> 63 </span>
64 <span class="qsztImg" v-if="item.qszt=='1'" style="background:#00dd00; "> 64 <span class="qsztImg" v-if="item.qszt=='1'" >
65 <span class="qsztFont"></span> 65 <span class="qsztFont" style="color: #00FF00; "></span>
66 </span> 66 </span>
67 <span class="qsztImg" v-if="item.qszt=='2'" style="background: #238ff9; "> 67 <span class="qsztImg" v-if="item.qszt=='2'" >
68 <span class="qsztFont"></span> 68 <span class="qsztFont" style="color: blue; "></span>
69 </span> 69 </span>
70 </template> 70 </template>
71 71
...@@ -482,12 +482,15 @@ export default { ...@@ -482,12 +482,15 @@ export default {
482 color: orange; 482 color: orange;
483 } 483 }
484 .qsztFont{ 484 .qsztFont{
485 display: block;
486 color: #FFFFFF;
487 height: 20px;
488 line-height: 20px;
489 font-size: 14px;
490 text-align: center; 485 text-align: center;
486
487 display: inline-block;
488 width: 16px;
489 height: 16px;
490 font-size: 12px;
491 line-height: 16px;
492 border: 1px solid;
493 border-radius: 8px;
491 } 494 }
492 495
493 </style> 496 </style>
......