| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <template>
- <div class="other">
- <fieldset :disabled="disabled" style="border: none; padding: 0; margin: 0;">
- <el-form label-width="100px" ref="form" :model="form">
- <div class="divider">
- <div class="title">
- <div class="ele-bg-primary"></div>
- <span>周转车信息</span>
- </div>
- <div class="ele-bg-primary ele-width"></div>
- </div>
- <el-row :gutter="24">
- <el-col :span="8">
- <el-form-item label="材质" prop="materialQuality">
- <DictSelection
- dictName="周转车材质"
- clearable
- v-model="form.materialQuality"
- :disabled="disabled"
- >
- </DictSelection>
- <!-- <el-input v-model="form.materialQuality"/> -->
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- </fieldset>
- </div>
- </template>
- <script>
- export default {
- props: {
- form: {
- type: Object,
- default: {}
- },
- disabled: {
- type: Boolean,
- default: false
- }
- },
- components: {},
- data () {
- return {};
- },
- methods: {}
- };
- </script>
- <style lang="scss" scoped>
- .other {
- background: #fff;
- padding: 1px 17px;
- }
- .divider {
- margin: 0px 0 20px;
- .title {
- display: flex;
- align-items: center;
- margin-bottom: 10px;
- div {
- width: 8px;
- height: 20px;
- margin-right: 10px;
- }
- span {
- font-size: 20px;
- }
- }
- .ele-width {
- width: 100%;
- height: 2px;
- }
- }
- .form-line {
- display: flex;
- align-items: center;
- justify-content: space-between;
- .line-select {
- margin-left: 15px;
- }
- }
- </style>
|