|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="formContent">
|
|
|
+ <div>
|
|
|
<el-form
|
|
|
ref="formData"
|
|
|
:model="formData"
|
|
@@ -25,8 +25,9 @@
|
|
|
key="0"
|
|
|
>
|
|
|
<el-input
|
|
|
+ class="aaaa"
|
|
|
v-model="formData.measureArea"
|
|
|
- :disabled="true"
|
|
|
+ type="number"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item
|
|
@@ -162,4 +163,11 @@ export default {
|
|
|
.el-textarea__inner {
|
|
|
height: 150px !important;
|
|
|
}
|
|
|
+.aaaa input::-webkit-outer-spin-button,
|
|
|
+.aaaa input::-webkit-inner-spin-button {
|
|
|
+ -webkit-appearance: none;
|
|
|
+}
|
|
|
+.aaaa input[type='number'] {
|
|
|
+ -moz-appearance: textfield;
|
|
|
+}
|
|
|
</style>
|