You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
928 B
56 lines
928 B
4 years ago
|
<template>
|
||
|
<div class="app-container">
|
||
4 years ago
|
<baseInfo :from-type="type" />
|
||
4 years ago
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
4 years ago
|
import baseInfo from '@/views/ysjl/3000/common/index'
|
||
|
|
||
4 years ago
|
export default {
|
||
|
name: 'ElevatorYeyin',
|
||
|
components: { baseInfo },
|
||
|
data() {
|
||
|
return {
|
||
4 years ago
|
type: '1'
|
||
4 years ago
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
|
||
|
},
|
||
|
created() {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
.el-input__inner {
|
||
|
border: 1px solid #00000075;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
.el-textarea__inner {
|
||
|
border: 1px solid #91393975;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
.el-form-item__error {
|
||
|
padding-top: 0;
|
||
|
position: absolute;
|
||
|
}
|
||
|
.el-input.is-disabled .el-input__inner {
|
||
|
color: #606266;
|
||
|
}
|
||
|
.el-textarea.is-disabled .el-textarea__inner {
|
||
|
color: #606266;
|
||
|
}
|
||
|
.el-dialog__body {
|
||
|
padding-top: 10px;
|
||
|
}
|
||
|
.myTable .el-input__inner{
|
||
|
padding: 0 5px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
</style>
|