|
|
|
|
@ -118,15 +118,23 @@
|
|
|
|
|
@click.stop="isspecialboxshowclick"
|
|
|
|
|
:style="isspecialboxshow ? 'color:#ff6a00' : ''"
|
|
|
|
|
>
|
|
|
|
|
<ul class="showspecial" v-if="specialvalue.length !== 0">
|
|
|
|
|
<li v-for="(item, index) in specialactive" :key="index">
|
|
|
|
|
{{ item }}<i></i>
|
|
|
|
|
<ul class="showspecial" v-if="specialactive.length !== 0">
|
|
|
|
|
<li
|
|
|
|
|
v-for="(item, index) in specialactive"
|
|
|
|
|
:key="index"
|
|
|
|
|
@click.stop
|
|
|
|
|
>
|
|
|
|
|
{{ item
|
|
|
|
|
}}<i
|
|
|
|
|
class="iconfont icon-guanbi"
|
|
|
|
|
@click.stop="delmark(index)"
|
|
|
|
|
></i>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<span v-if="specialvalue.length >= 3">...</span>
|
|
|
|
|
<span v-if="specialactive.length > 3">...</span>
|
|
|
|
|
<span
|
|
|
|
|
:style="specialactive.length != 0 ? 'color:#ff6a00' : ''"
|
|
|
|
|
v-if="specialvalue.length === 0"
|
|
|
|
|
v-if="specialactive.length === 0"
|
|
|
|
|
>特色</span
|
|
|
|
|
><i
|
|
|
|
|
class="iconfont icon-xiala"
|
|
|
|
|
@ -730,6 +738,12 @@ export default {
|
|
|
|
|
this.dateinfo.day = "0" + date.getDate();
|
|
|
|
|
this.dateinfo.date = date.getFullYear() + "." + (date.getMonth() + 1);
|
|
|
|
|
},
|
|
|
|
|
delmark(index) {
|
|
|
|
|
console.log(index);
|
|
|
|
|
this.specialactive.splice(index, 1);
|
|
|
|
|
this.specialvalue.splice(index, 1);
|
|
|
|
|
this.getJobList();
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
@ -775,11 +789,21 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
/deep/ .ant-modal-footer {
|
|
|
|
|
padding: 10px 24px;
|
|
|
|
|
.ant-btn-primary {
|
|
|
|
|
.ant-btn {
|
|
|
|
|
&:hover {
|
|
|
|
|
color: #ff6a00;
|
|
|
|
|
border-color: #ff6a00;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.ant-btn.ant-btn-primary {
|
|
|
|
|
background-color: #ff6a00 !important;
|
|
|
|
|
border: none;
|
|
|
|
|
line-height: 32px;
|
|
|
|
|
margin-left: 12px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: #ff8025 !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/deep/ .ant-modal-header {
|
|
|
|
|
@ -917,7 +941,7 @@ export default {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
min-width: 595px;
|
|
|
|
|
li {
|
|
|
|
|
> li {
|
|
|
|
|
margin-top: 24px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #4d575e;
|
|
|
|
|
@ -962,7 +986,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
li:first-child {
|
|
|
|
|
> li:first-child {
|
|
|
|
|
> i {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
@ -1019,11 +1043,21 @@ export default {
|
|
|
|
|
margin: 6px 5px 0 0;
|
|
|
|
|
float: left;
|
|
|
|
|
height: 20px;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
padding: 0 6px;
|
|
|
|
|
line-height: 19px;
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #ff6a00;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
i {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
|
|
|
|
|
transform: scale(0.8);
|
|
|
|
|
// vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
&:nth-child(n + 4) {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
@ -1226,6 +1260,7 @@ export default {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
&:hover {
|
|
|
|
|
color: #ff7614;
|
|
|
|
|
border-color: #ff7614;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@ -1237,7 +1272,9 @@ export default {
|
|
|
|
|
color: rgba(255, 106, 0, 1);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: rgba(255, 121, 26, 0.1);
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
|
|
background-color: rgba(255, 121, 26);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|