|
@@ -139,17 +139,17 @@
|
|
|
<!---添加空间结构弹窗 -->
|
|
|
|
|
|
<!---快速创建结构弹窗 -->
|
|
|
- <el-dialog :title="this.$t('frameManage.quickCreateFrame')" :visible.sync="frameQuickCreateVisible" width="600px">
|
|
|
+ <el-dialog :title="this.$t('frameManage.quickCreateFrame')" :visible.sync="frameQuickCreateVisible" width="620px">
|
|
|
<el-form ref="createFrameForm" :model="createFrameModel" :rules="createFrameRules" label-width="200px">
|
|
|
<el-row>
|
|
|
- <el-col :span="16">
|
|
|
+ <el-col :span="17">
|
|
|
<!--前缀-->
|
|
|
<el-form-item :label="this.$t('frameManage.prefix')" prop="prefix">
|
|
|
<el-input v-model="createFrameModel.prefix" :placeholder="$t('frameManage.prefixExample')" maxlength="10" show-word-limit />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
- <div class="el-form-item__label">
|
|
|
+ <div class="el-form-item__label" style="margin-left: 20px">
|
|
|
{{ this.$t('frameManage.example') }}:{{ $t('frameManage.prefixExample') }}
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -207,6 +207,34 @@
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="17">
|
|
|
+ <!--需要跳过的房间号-->
|
|
|
+ <el-form-item :label="this.$t('frameManage.skipRoomNo')" prop="skip_room_no">
|
|
|
+ <el-input v-model="createFrameModel.skip_room_no" :placeholder="$t('frameManage.skipMsg1')" clearable :maxlength="20"/>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <div class="el-form-item__label" style="margin-left: 20px">
|
|
|
+ {{ this.$t('frameManage.example') }}:{{ $t('frameManage.skipMsg2') }}
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="17">
|
|
|
+ <!--需要跳过的床位号-->
|
|
|
+ <el-form-item :label="this.$t('frameManage.skipBedNo')" prop="skip_bed_no">
|
|
|
+ <el-input v-model="createFrameModel.skip_bed_no" :placeholder="$t('frameManage.skipMsg1')" clearable :maxlength="20"/>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <div class="el-form-item__label" style="margin-left: 20px">
|
|
|
+ {{ this.$t('frameManage.example') }}:{{ $t('frameManage.skipMsg2') }}
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" class="save" @click="quickCreateSubmit()">{{ this.$t('action.yes') }}</el-button>
|
|
|
</el-form-item>
|
|
@@ -267,7 +295,9 @@ export default {
|
|
|
room_end_no: 2,
|
|
|
beds_per_room: 4,
|
|
|
room_num_bits: 2,
|
|
|
- bed_num_bits: 2
|
|
|
+ bed_num_bits: 2,
|
|
|
+ skip_room_no: '',
|
|
|
+ skip_bed_no: ''
|
|
|
},
|
|
|
bed_num_demo: '01',
|
|
|
room_num_demo: '01',
|