main
parent
e460f44d0d
commit
a0b796c6a7
|
@ -1,4 +1,11 @@
|
|||
<template>
|
||||
<el-container>
|
||||
<el-header>
|
||||
<el-card>
|
||||
项目编辑
|
||||
</el-card>
|
||||
</el-header>
|
||||
<el-main>
|
||||
<div class="room-div">
|
||||
<el-card>
|
||||
<div>
|
||||
|
@ -59,15 +66,18 @@
|
|||
<div class="flex-center bar">
|
||||
<div>盘管类型</div>
|
||||
<el-radio-group v-model="current_room_info.fcu_info.fcu_type">
|
||||
<el-radio :value="item.value" :key="item.value" v-for="item in radioGroup1">{{ item.label
|
||||
<el-radio :value="item.value" :key="item.value" v-for="item in radioGroup1">{{
|
||||
item.label
|
||||
}}</el-radio>
|
||||
</el-radio-group>
|
||||
<el-radio-group v-model="current_room_info.fcu_info.pipe_type">
|
||||
<el-radio :value="item.value" :key="item.value" v-for="item in radioGroup2">{{ item.label
|
||||
<el-radio :value="item.value" :key="item.value" v-for="item in radioGroup2">{{
|
||||
item.label
|
||||
}}</el-radio>
|
||||
</el-radio-group>
|
||||
<el-radio-group v-model="current_room_info.fcu_info.valve_type">
|
||||
<el-radio :value="item.value" :key="item.value" v-for="item in radioGroup3">{{ item.label
|
||||
<el-radio :value="item.value" :key="item.value" v-for="item in radioGroup3">{{
|
||||
item.label
|
||||
}}</el-radio>
|
||||
</el-radio-group>
|
||||
<div>
|
||||
|
@ -91,7 +101,8 @@
|
|||
<div class="flex-center bar">
|
||||
<div>面板类型</div>
|
||||
<el-radio-group v-model="current_room_info.panel_info.panel_type">
|
||||
<el-radio :value="item.value" :key="item.value" v-for="item in radioGroup4">{{ item.label
|
||||
<el-radio :value="item.value" :key="item.value" v-for="item in radioGroup4">{{
|
||||
item.label
|
||||
}}</el-radio>
|
||||
</el-radio-group>
|
||||
<div>
|
||||
|
@ -115,7 +126,8 @@
|
|||
<div class="flex-center bar">
|
||||
<div>窗帘类型</div>
|
||||
<el-radio-group v-model="current_room_info.curtain_info.curtain_type">
|
||||
<el-radio :value="item.value" :key="item.value" v-for="item in radioGroup5">{{ item.label
|
||||
<el-radio :value="item.value" :key="item.value" v-for="item in radioGroup5">{{
|
||||
item.label
|
||||
}}</el-radio>
|
||||
</el-radio-group>
|
||||
<div>
|
||||
|
@ -128,8 +140,8 @@
|
|||
<div>
|
||||
<p>窗纱数量</p>
|
||||
<p>
|
||||
<el-input-number v-model="current_room_info.curtain_info.sheer_curtain_count" :min="0"
|
||||
:max="999"></el-input-number>
|
||||
<el-input-number v-model="current_room_info.curtain_info.sheer_curtain_count"
|
||||
:min="0" :max="999"></el-input-number>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -158,6 +170,8 @@
|
|||
</div>
|
||||
</el-card>
|
||||
</div>
|
||||
</el-main>
|
||||
</el-container>
|
||||
</template>
|
||||
<script setup>
|
||||
import { Delete } from "@element-plus/icons-vue";
|
||||
|
|
Loading…
Reference in New Issue