Showing
2 changed files
with
26 additions
and
0 deletions
| ... | @@ -319,3 +319,28 @@ body { | ... | @@ -319,3 +319,28 @@ body { |
| 319 | .btn-mb-4 { | 319 | .btn-mb-4 { |
| 320 | margin-bottom: 4px; | 320 | margin-bottom: 4px; |
| 321 | } | 321 | } |
| 322 | + | ||
| 323 | +textarea::-webkit-input-placeholder { | ||
| 324 | + /* WebKit browsers */ | ||
| 325 | + color: #C0C4CC !important; | ||
| 326 | + font-size: 13px !important; | ||
| 327 | + font-family: 'Helvetica Neue',Helvetica,'PingFang SC','Hiragino Sans GB','Microsoft YaHei',SimSun,sans-serif; | ||
| 328 | + } | ||
| 329 | + textarea:-moz-placeholder { | ||
| 330 | + /* Mozilla Firefox 4 to 18 */ | ||
| 331 | + color: #c0c4cc !important; | ||
| 332 | + font-size: 13px !important; | ||
| 333 | + font-family: 'Helvetica Neue',Helvetica,'PingFang SC','Hiragino Sans GB','Microsoft YaHei',SimSun,sans-serif; | ||
| 334 | + } | ||
| 335 | + textarea::-moz-placeholder { | ||
| 336 | + /* Mozilla Firefox 19+ */ | ||
| 337 | + color: #c0c4cc !important; | ||
| 338 | + font-size: 13px !important; | ||
| 339 | + font-family: 'Helvetica Neue',Helvetica,'PingFang SC','Hiragino Sans GB','Microsoft YaHei',SimSun,sans-serif; | ||
| 340 | + } | ||
| 341 | + textarea::-ms-input-placeholder { | ||
| 342 | + /* Internet Explorer 10+ */ | ||
| 343 | + color: #c0c4cc !important; | ||
| 344 | + font-size: 13px !important; | ||
| 345 | + font-family: 'Helvetica Neue',Helvetica,'PingFang SC','Hiragino Sans GB','Microsoft YaHei',SimSun,sans-serif; | ||
| 346 | + } | ... | ... |
| ... | @@ -199,6 +199,7 @@ export default { | ... | @@ -199,6 +199,7 @@ export default { |
| 199 | close() { | 199 | close() { |
| 200 | this.dialogVisible = false | 200 | this.dialogVisible = false |
| 201 | this.newPre.addFlitNo = '' | 201 | this.newPre.addFlitNo = '' |
| 202 | + this.$refs.addForm.clearValidate() | ||
| 202 | }, | 203 | }, |
| 203 | //翻页 | 204 | //翻页 |
| 204 | currentChange(val) { | 205 | currentChange(val) { | ... | ... |
-
Please register or login to post a comment