|
|
|
@ -1,41 +1,66 @@
|
|
|
|
|
<template>
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="提示"
|
|
|
|
|
|
|
|
|
|
:visible.sync="addLabDialog"
|
|
|
|
|
width="30%">
|
|
|
|
|
width="48%">
|
|
|
|
|
<div style="width: 100%;height: 100% ;background-color:#0BFFFF">
|
|
|
|
|
<el-form :model="form">
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col style="width:45%">
|
|
|
|
|
<el-form-item label="位置">
|
|
|
|
|
<el-input v-model="form.position" placeholder="位置"></el-input>
|
|
|
|
|
<el-input v-model="form.position" placeholder="位置" class="position" style="width:70% "></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="地址">
|
|
|
|
|
<el-input v-model="form.address" placeholder="地址"></el-input>
|
|
|
|
|
</el-form-item> <el-form-item label="地址">
|
|
|
|
|
<el-input v-model="form.status" placeholder="地址id"></el-input>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col style="width:45% ;">
|
|
|
|
|
<el-form-item label="地址" >
|
|
|
|
|
<el-input v-model="form.status" placeholder="地址id" style="width:60% ;left:10%" ></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col style="width:45%">
|
|
|
|
|
<el-form-item label="实验室id">
|
|
|
|
|
<el-input v-model="form.labId" placeholder="请输入id"></el-input>
|
|
|
|
|
<el-input v-model="form.labId" placeholder="请输入id" style="width:70%;left: -5%"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col style="width:45%">
|
|
|
|
|
<el-form-item label="实验室名称">
|
|
|
|
|
<el-input v-model="form.name" placeholder="实验室名称"></el-input>
|
|
|
|
|
<el-input v-model="form.name" placeholder="实验室名称" style="width:60%;left: 2%"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col style="width:45%">
|
|
|
|
|
<el-form-item label="状态">
|
|
|
|
|
<el-input v-model="form.status" placeholder="状态"></el-input>
|
|
|
|
|
<el-input v-model="form.status" placeholder="状态"style="width:70% "></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col style="width:45%">
|
|
|
|
|
<el-form-item label="可容量认人数">
|
|
|
|
|
<el-input v-model="form.compacity" placeholder="输入数量"></el-input>
|
|
|
|
|
<el-input v-model="form.compacity" placeholder="输入数量" style="width:60%"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col style="width:45%">
|
|
|
|
|
<el-form-item label="管理员">
|
|
|
|
|
<el-input v-model="form.manager" placeholder="管理员"></el-input>
|
|
|
|
|
<el-input v-model="form.manager" placeholder="管理员" style="width:70%;left: -1%;"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col style="width:45%">
|
|
|
|
|
<el-form-item label="管理员id">
|
|
|
|
|
<el-input v-model="form.managerId" placeholder="管理员id"></el-input>
|
|
|
|
|
<el-input v-model="form.managerId" placeholder="管理员id" style="width:60%;left:6%"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-form-item label="可申请时间段">
|
|
|
|
|
<el-input v-model="form.managerId" placeholder="点击编辑" style="width:80%"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-button type="success" style="width: 120px;text-align: left" icon="el-icon-circle-plus-outline"
|
|
|
|
|
@click="showAddLab">新增
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|