Commit 9e8a39cd by 刘泽奇

123

parent 213e607f
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -117,4 +117,8 @@ ...@@ -117,4 +117,8 @@
.bycnoticeindex .el-table th>.cell{ .bycnoticeindex .el-table th>.cell{
font-weight: 500; font-weight: 500;
}
.bycnoticetm-table-header {
background:#f7f8fc;
} }
\ No newline at end of file
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<div class="content1"></div> <div class="content1"></div>
<div class="content2">商标公告查询</div> <div class="content2">商标公告查询</div>
</div> </div>
<div style="width:1200px;text-align:left;background:#f7f8fc;border:1px solid #eff1f9;"> <div style="width:1200px;text-align:left;background:#f7f8fc;border:1px solid #eff1f9;">
<el-form style="width:100%;" :inline="true"> <el-form style="width:100%;" :inline="true">
<el-form-item style="width:400px;" label="公告类型:" label-width="100px"> <el-form-item style="width:400px;" label="公告类型:" label-width="100px">
<el-select v-model="noticetype" size="small" style="width:300px" @change="getRole($event)"> <el-select v-model="noticetype" size="small" style="width:300px" @change="getRole($event)">
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
</el-button> </el-button>
</div> </div>
<div class="bycnoticetm-result-warp" style="text-align: center;margin-bottom:100px;"> <div class="bycnoticetm-result-warp" style="text-align: center;margin-bottom:100px;">
<el-table :data="chushendata" style="width:100%;" > <el-table :data="chushendata" style="width:100%;" header-row-class-name="bycnoticetm-table-header" >
<el-table-column prop="notice_issue" label="公告期" width="240" align="center"></el-table-column> <el-table-column prop="notice_issue" label="公告期" width="240" align="center"></el-table-column>
<el-table-column prop="date" label="初审公告日期" width="240" align="center"></el-table-column> <el-table-column prop="date" label="初审公告日期" width="240" align="center"></el-table-column>
<el-table-column prop="enddate" label="异议申请截止日期" width="240" align="center"></el-table-column> <el-table-column prop="enddate" label="异议申请截止日期" width="240" align="center"></el-table-column>
......
...@@ -454,16 +454,16 @@ ...@@ -454,16 +454,16 @@
} else if (i == parseInt(this.step)) { } else if (i == parseInt(this.step)) {
return 'color: #FFFFFF;' return 'color: #FFFFFF;'
} else if (i > parseInt(this.step)) { } else if (i > parseInt(this.step)) {
return 'color: #666666;' return 'color: #FFFFFF;'
} }
}, },
pointsRuleBackColor(i) { pointsRuleBackColor(i) {
if (i < parseInt(this.step)) { if (i < parseInt(this.step)) {
return 'background: #0989C5; z-index: ' + Math.abs(i - 5) return 'background: #51d2b7; z-index: ' + Math.abs(i - 5)
} else if (i == parseInt(this.step)) { } else if (i == parseInt(this.step)) {
return 'background: #0989C5;z-index: ' + Math.abs(i - 5) return 'background: #51d2b7;z-index: ' + Math.abs(i - 5)
} else if (i > parseInt(this.step)) { } else if (i > parseInt(this.step)) {
return 'background: #EFF1F9;z-index: ' + Math.abs(i - 5) return 'background: #eee;z-index: ' + Math.abs(i - 5)
} }
}, },
toViewImg(src) { toViewImg(src) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment