Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/components/property/sellRoomOther/sellRoomOther.html
2025-12-09 20:22:03 +08:00

34 lines
1.8 KiB
HTML

<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5><span><vc:i18n name="其他信息" namespace="sellRoomOther"></vc:i18n></span></h5>
</div>
<div class="ibox-content">
<div>
<div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><span><vc:i18n name="出售状态" namespace="sellRoomOther"></vc:i18n></span></label>
<div class="col-sm-10">
<select class="custom-select" v-model="otherInfo.otherState">
<option selected disabled value="">{{vc.i18n('必填','sellRoomOther')}},请选择状态</option>
<option value="2001">{{vc.i18n('业主未迁入','sellRoomOther')}}</option>
<option value="2001">{{vc.i18n('业主迁入','sellRoomOther')}}</option>
<option value="2001">{{vc.i18n('业主迁出','sellRoomOther')}}</option>
</select>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><span><vc:i18n name="备注" namespace="sellRoomOther"></vc:i18n></span></label>
<div class="col-sm-10">
<textarea v-model="otherInfo.otherRemark" type="text" :placeholder="vc.i18n('请填写备注信息','sellRoomOther')" rows="3" class="form-control"></textarea>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>