This commit is contained in:
2023-10-13 11:07:08 +08:00
parent 008cd1cc43
commit 393c20492f

View File

@@ -74,7 +74,8 @@
size="medium" size="medium"
circle circle
@click="updateName" @click="updateName"
>保存</el-button >保存
</el-button
> >
</template> </template>
</el-input> </el-input>
@@ -285,6 +286,12 @@
align="center" align="center"
width="200" width="200"
/> />
<el-table-column
prop="frameTypeStr"
label="帧类型名称"
align="center"
width="200"
/>
<el-table-column <el-table-column
prop="description" prop="description"
label="描述" label="描述"
@@ -389,7 +396,8 @@ export default {
this.queryPileConnectorList(); this.queryPileConnectorList();
}, },
mounted() { mounted() {
setTimeout(() => {}, 300); setTimeout(() => {
}, 300);
}, },
methods: { methods: {
// 遥控地锁 // 遥控地锁
@@ -532,6 +540,7 @@ export default {
height: 80px; height: 80px;
width: 80px; width: 80px;
} }
::v-deep .el-input-group--append .el-input__inner { ::v-deep .el-input-group--append .el-input__inner {
// background-color: #fff; // background-color: #fff;
// border-color: #fff; // border-color: #fff;
@@ -539,16 +548,19 @@ export default {
border-top-right-radius: 5px; border-top-right-radius: 5px;
border-bottom-right-radius: 5px; border-bottom-right-radius: 5px;
} }
::v-deep .el-input-group__append, ::v-deep .el-input-group__append,
.el-input-group__prepend { .el-input-group__prepend {
background-color: #fff; background-color: #fff;
border-color: #fff; border-color: #fff;
color: #606266; color: #606266;
} }
::v-deep input::-webkit-outer-spin-button, ::v-deep input::-webkit-outer-spin-button,
::v-deep input::-webkit-inner-spin-button { ::v-deep input::-webkit-inner-spin-button {
-webkit-appearance: none !important; -webkit-appearance: none !important;
} }
::v-deep input[type="number"] { ::v-deep input[type="number"] {
-moz-appearance: textfield !important; -moz-appearance: textfield !important;
} }