1df66444 by 杨威

全局表单下拉框和时间选择框居左显示

1 parent d833fb37
...@@ -265,3 +265,11 @@ ol, ul { list-style:none; } ...@@ -265,3 +265,11 @@ ol, ul { list-style:none; }
265 .iconfontEdit:hover{ 265 .iconfontEdit:hover{
266 color: rgb(0, 108, 255); 266 color: rgb(0, 108, 255);
267 } 267 }
268 .el-select,.el-select-tree,.el-date-editor{
269 /deep/ .el-input__inner{
270 text-align: left!important;
271 }
272 }
273 .el-input__prefix, .el-input__suffix{
274 top: -2px;
275 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -44,6 +44,7 @@ ...@@ -44,6 +44,7 @@
44 <td colspan="2" align="center" >竣工日期</td> 44 <td colspan="2" align="center" >竣工日期</td>
45 <td colspan="4" > 45 <td colspan="4" >
46 <el-date-picker 46 <el-date-picker
47 style="width:100%"
47 v-model="form.jgrq" 48 v-model="form.jgrq"
48 type="date" 49 type="date"
49 placeholder="选择日期"> 50 placeholder="选择日期">
......
...@@ -55,6 +55,7 @@ ...@@ -55,6 +55,7 @@
55 <td colspan="2" class="tdright">竣工日期</td> 55 <td colspan="2" class="tdright">竣工日期</td>
56 <td colspan="4" > 56 <td colspan="4" >
57 <el-date-picker 57 <el-date-picker
58 style="width:100%"
58 :disabled="form.qszt!='0'" 59 :disabled="form.qszt!='0'"
59 v-model="form.jgrq" 60 v-model="form.jgrq"
60 type="date" 61 type="date"
......