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