Commit ac41bb34 authored by zhengke's avatar zhengke

增加字段

parent 5cd72874
...@@ -235,10 +235,10 @@ ...@@ -235,10 +235,10 @@
<el-input class="w300" type="textarea" v-model="addMsg.Description"></el-input> <el-input class="w300" type="textarea" v-model="addMsg.Description"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="房间大小"> <el-form-item label="房间大小">
<el-input class="w300" type="text" v-model="addMsg.RoomSize"></el-input> <el-input class="w300" type="text" placeholder="请填写房间大小:180平" v-model="addMsg.RoomSize"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="楼层"> <el-form-item label="楼层">
<el-input class="w300" type="text" @keyup.native="checkInteger(addMsg,'Floor')" v-model="addMsg.Floor"></el-input> <el-input class="w300" type="text" placeholder="请填写楼层:21楼" v-model="addMsg.Floor"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="是否禁烟"> <el-form-item label="是否禁烟">
<el-switch v-model="addMsg.IsSmoking" :active-value="1" :inactive-value="0"> <el-switch v-model="addMsg.IsSmoking" :active-value="1" :inactive-value="0">
...@@ -290,6 +290,7 @@ ...@@ -290,6 +290,7 @@
<th>名称</th> <th>名称</th>
<th>入住人数</th> <th>入住人数</th>
<th>床型/早餐</th> <th>床型/早餐</th>
<th>房间信息</th>
<th>是否可取消</th> <th>是否可取消</th>
<th>{{$t('scen.sc_bjts')}}</th> <th>{{$t('scen.sc_bjts')}}</th>
<th>{{$t('scen.sc_dj')}}</th> <th>{{$t('scen.sc_dj')}}</th>
...@@ -311,9 +312,19 @@ ...@@ -311,9 +312,19 @@
<br /> <br />
{{item.HasWindowStr}} {{item.HasWindowStr}}
</td> </td>
<td> <td style="text-align:left;padding-left:20px;">
{{item.IsCancelStr}} 房间大小 {{item.RoomSize}}
<template v-if="item.IsCancel"> <br/>
楼层 {{item.Floor}}
<br/>
{{item.IsSmokingStr}}
<br/>
{{item.IsWifiStr}}
</td>
<td style="text-align:left;padding-left:20px;">
<span v-if="item.IsCancel==1" style="color:red">{{item.IsCancelStr}}</span>
<span v-if="item.IsCancel==2" style="color:green">{{item.IsCancelStr}}</span>
<template v-if="item.IsCancel&&item.IsCancel==2">
<br /> {{item.CancelTime}} <br /> {{item.CancelTime}}
</template> </template>
</td> </td>
...@@ -440,7 +451,7 @@ ...@@ -440,7 +451,7 @@
ServiceNumber: [{ ServiceNumber: [{
required: true, required: true,
pattern: this.$commonUtils.Regex.el_isInteger, pattern: this.$commonUtils.Regex.el_isInteger,
message: "请填写正确的入住人数" message: "请输入入住人数"
}] }]
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment