|
|
|
@ -278,7 +278,7 @@
|
|
|
|
|
<a-date-picker class="date-picker" format="YYYY-MM-DD" v-model="details.etd" @change="changeEtd">
|
|
|
|
|
<a-icon slot="suffixIcon" type="time" style="display: none" />
|
|
|
|
|
</a-date-picker>
|
|
|
|
|
<span class="week" v-if="etdWeek">W{{ etdWeek || '--' }}</span>
|
|
|
|
|
<span class="week" v-if="etdWeek !== 'NaN'">W{{ etdWeek || '--' }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</a-form-model-item>
|
|
|
|
|
</a-col>
|
|
|
|
@ -606,12 +606,12 @@ export default {
|
|
|
|
|
labelCol: {
|
|
|
|
|
xs: { span: 24 },
|
|
|
|
|
sm: { span: 8 },
|
|
|
|
|
md: { span: 10 }
|
|
|
|
|
md: { span: 9 }
|
|
|
|
|
},
|
|
|
|
|
wrapperCol: {
|
|
|
|
|
xs: { span: 24 },
|
|
|
|
|
sm: { span: 15 },
|
|
|
|
|
md: { span: 13 }
|
|
|
|
|
md: { span: 15 }
|
|
|
|
|
},
|
|
|
|
|
labelCol2: {
|
|
|
|
|
xs: { span: 24 },
|
|
|
|
@ -1469,17 +1469,17 @@ export default {
|
|
|
|
|
|
|
|
|
|
.week {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0 6px;
|
|
|
|
|
padding: 0 0px;
|
|
|
|
|
background: #f6c806;
|
|
|
|
|
color: #fff;
|
|
|
|
|
height: 28px;
|
|
|
|
|
line-height: 28px;
|
|
|
|
|
border: 4px;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
width: 40px;
|
|
|
|
|
width: 32px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -1551,6 +1551,82 @@ export default {
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/deep/ .ant-form-item-children-icon{
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
/deep/ .ant-input-suffix{
|
|
|
|
|
right:0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-error{
|
|
|
|
|
.ant-input{
|
|
|
|
|
margin-right: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
.ant-input-suffix{
|
|
|
|
|
padding-right: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
.ant-select-selection__rendered{
|
|
|
|
|
margin-right: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
.ant-select-arrow{
|
|
|
|
|
right: 8px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.has-success{
|
|
|
|
|
.ant-input{
|
|
|
|
|
margin-right: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
.ant-input-suffix{
|
|
|
|
|
padding-right: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
.ant-select-selection__rendered{
|
|
|
|
|
margin-right: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
.ant-select-arrow{
|
|
|
|
|
right: 8px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/deep/ .has-success .ant-select-selection-selected-value{
|
|
|
|
|
padding-right: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
/deep/ .has-error .ant-select-selection-selected-value{
|
|
|
|
|
padding-right: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/deep/ .has-success .ant-select-arrow{
|
|
|
|
|
right: 8px !important;
|
|
|
|
|
}
|
|
|
|
|
/deep/ .has-error .ant-select-arrow{
|
|
|
|
|
right: 8px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/deep/ .has-success .ant-input{
|
|
|
|
|
padding-right: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
/deep/ .has-error .ant-input{
|
|
|
|
|
padding-right: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/deep/ form .has-success .ant-input{
|
|
|
|
|
padding-right: 0 !important;
|
|
|
|
|
background: #f99 !important;
|
|
|
|
|
}
|
|
|
|
|
/deep/ form .has-error .ant-input{
|
|
|
|
|
padding-right: 0 !important;
|
|
|
|
|
background: #f99 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/deep/ form .has-success .ant-calendar-picker-input{
|
|
|
|
|
padding-right: 0 !important;
|
|
|
|
|
background: #f99 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/deep/ form .has-feedback input{
|
|
|
|
|
padding-right: 10px !important;
|
|
|
|
|
background: #f99 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// .ant-calendar-picker-input{
|
|
|
|
|
// padding: 0 4px;
|
|
|
|
|