Commit 37690a49 authored by 吴冠's avatar 吴冠

/

parent 96907cf9
...@@ -56,9 +56,9 @@ import inDex from '@/pages/index.vue' ...@@ -56,9 +56,9 @@ import inDex from '@/pages/index.vue'
this.nav = "4"; this.nav = "4";
} */ } */
switch (path) { switch (path) {
case '/': /* case '/':
this.nav = "0"; this.nav = "0";
break; break; */
case '/notice/inquiry': case '/notice/inquiry':
this.nav = "1"; this.nav = "1";
break; break;
......
...@@ -41,10 +41,10 @@ ...@@ -41,10 +41,10 @@
</tr> </tr>
<tr> <tr>
<td>报价开始时间</td> <td>报价开始时间</td>
<td>{{ getTimer1(formdata.startTime) }}</td> <td>{{formdata.startTime}}</td>
<td>报价截止时间</td> <td>报价截止时间</td>
<td :time="endtime" @change="gettimer"> <td :time="endtime" @change="gettimer">
{{ getTimer1(formdata.endTime) }} {{formdata.endTime}}
</td> </td>
<td>采购单位</td> <td>采购单位</td>
<td>{{ formdata.Purchasing }}</td> <td>{{ formdata.Purchasing }}</td>
...@@ -264,15 +264,6 @@ export default { ...@@ -264,15 +264,6 @@ export default {
this.PdialogVisible = true this.PdialogVisible = true
} }
}, },
getTimer1(dateStr) {
var date = new Date(dateStr);
var Month = date.getMonth() + 1;
var Day = date.getDate();
var Y = date.getFullYear() + "-";
var M = Month < 10 ? "0" + Month + "-" : Month + "-";
var D = Day + 1 < 10 ? "0" + Day : Day;
return Y + M + D;
},
}, },
}; };
</script> </script>
...@@ -280,7 +271,7 @@ export default { ...@@ -280,7 +271,7 @@ export default {
.details { .details {
width: 9.3rem; width: 9.3rem;
} }
.details .t1{ .details .t1 {
width:9.3rem width:9.3rem
} }
.details > div text { .details > div text {
...@@ -325,9 +316,9 @@ h1 { ...@@ -325,9 +316,9 @@ h1 {
margin-bottom: 20px; margin-bottom: 20px;
font-weight: bold; font-weight: bold;
} }
/* table>tr{ .form td{
text-align: center; font-size:10px
} */ }
table { table {
border-collapse: collapse; border-collapse: collapse;
...@@ -359,7 +350,7 @@ table > tr > td:nth-child(odd) { ...@@ -359,7 +350,7 @@ table > tr > td:nth-child(odd) {
background: #f0f0f0; background: #f0f0f0;
} }
.appendix > div { .appendix > div {
font-size: 16px; font-size: 10px;
line-height: 40px; line-height: 40px;
} }
.list > :first-child { .list > :first-child {
......
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