| | |
| | | </div> |
| | | <div class="form-group"> |
| | | <label>所在城市</label> |
| | | 省<select id="province" v-model="selectProv" @change="chooseProvince($event); removeError('province')"> |
| | | 省<select id="province" name="projectAddressProvince" v-model="selectProv" @change="chooseProvince($event); removeError('province')"> |
| | | <option value="">请选择省</option> |
| | | </select> |
| | | 市<select id="city" v-model="selectCity" @change="chooseCity($event); removeError('city')"> |
| | | 市<select id="city" name="projectAddressCity" v-model="selectCity" @change="chooseCity($event); removeError('city')"> |
| | | <option value="">请选择市</option> |
| | | </select> |
| | | 区<select id="area" v-model="selectArea" @change="chooseArea($event); removeError('area')"> |
| | | 区<select id="area" name="projectAddressDistrict" v-model="selectArea" @change="chooseArea($event); removeError('area')"> |
| | | <option value="">请选择区</option> |
| | | </select> |
| | | <label>详细地址</label> |
| | |
| | | |
| | | <div class="radio-group" style="width: 153px; margin-right: 90px;"> |
| | | <label>是否有固定的装修垃圾堆放点</label> |
| | | <label style="margin-left: -40px;"><input type="radio" name="garbage" value=true v-model="formData.hasDecorationRubbishPoint"> 有</label> |
| | | <label style="margin-left: -40px;"><input type="radio" name="garbage" value=false v-model="formData.hasDecorationRubbishPoint"> 无</label> |
| | | <!-- 使用“是 / 否”,与接口字段保持一致 --> |
| | | <label> |
| | | <input type="radio" name="garbage" value="是" v-model="formData.hasDecorationRubbishPoint"> 有 |
| | | </label> |
| | | <label> |
| | | <input type="radio" name="garbage" value="否" v-model="formData.hasDecorationRubbishPoint"> 无 |
| | | </label> |
| | | </div> |
| | | <label>需保安值守出入口(个)</label> |
| | | <label style="margin-left: 100px;">需保安值守出入口(个)</label> |
| | | <input type="text" placeholder="请输入" style="width: 153px;" v-model.number="formData.securityEntranceCount"> |
| | | </div> |
| | | </div> |