浏览代码

@zengqiao@物业样式修改

zengqiao 5 年之前
父节点
当前提交
99429450b7
共有 3 个文件被更改,包括 25 次插入6 次删除
  1. 4 4
      2019/bj-zqzt/add-edit-property.html
  2. 15 0
      2019/bj-zqzt/biz/css/base-hbt.css
  3. 6 2
      2019/bj-zqzt/biz/css/base.css

+ 4 - 4
2019/bj-zqzt/add-edit-property.html

@ -44,9 +44,9 @@
44 44
            <div class="range-edit ipu-flex ipu-flex-justify-end ipu-flex-align-center">
45 45
              <div class="add-range">添加范围</div>
46 46
              <div class="delete-range ipu-fn-hide">删除</div>
47
              <input class="low-floor" type="number" value="12"/>
47
              <input class="low-floor" type="text" value="" oninput="this.value = this.value.replace(/[^0-9-]/g, '');if(this.value.length>3){this.value =this.value.substring(0,3)}"/>
48 48
              <span>-</span>
49
              <input class="high-floor" type="number" value="15"/>
49
              <input class="high-floor" type="text" value="" oninput="this.value = this.value.replace(/[^0-9-]/g, '');if(this.value.length>3){this.value =this.value.substring(0,3)}"/>
50 50
              <span>层</span>
51 51
            </div>
52 52
@ -256,9 +256,9 @@
256 256
  <div class="range-edit ipu-flex ipu-flex-justify-end ipu-flex-align-center">
257 257
    <div class="add-range ipu-fn-hide">添加范围</div>
258 258
    <div class="delete-range">删除</div>
259
    <input class="low-floor" type="number" value=""/>
259
    <input class="low-floor" type="text" value="" oninput="this.value = this.value.replace(/[^0-9-]/g, '');if(this.value.length>3){this.value =this.value.substring(0,3)}"/>
260 260
    <span>-</span>
261
    <input class="high-floor" type="number" value=""/>
261
    <input class="high-floor" type="text" value="" oninput="this.value = this.value.replace(/[^0-9-]/g, '');if(this.value.length>3){this.value =this.value.substring(0,3)}"/>
262 262
    <span>层</span>
263 263
  </div>
264 264
</script>

+ 15 - 0
2019/bj-zqzt/biz/css/base-hbt.css

@ -163,3 +163,18 @@
163 163
  margin-top: .16rem;
164 164
  margin-left: .16rem;
165 165
}
166
167
.tab-month-block {
168
  box-shadow: 0px 8px 16px 0px rgba(87, 94, 102, 0.07);
169
  border: 1px solid rgba(237, 237, 237, 1);
170
  display: flex;flex-direction:column;align-items:center;
171
  justify-content:center;width: 1.3rem;
172
  height: 0.7rem;font-size: .13rem}
173
.tab-month {
174
  margin-bottom:0.2rem;display: flex;align-items: center;justify-content: center
175
}
176
177
.choice-tab-month{
178
  background: #409EFF;
179
  color: #fff;
180
}

+ 6 - 2
2019/bj-zqzt/biz/css/base.css

@ -3129,7 +3129,7 @@ button.add-others {
3129 3129
}
3130 3130
3131 3131
/* 物业详情 */
3132
.ipu-form-item input[type="number"].low-floor {
3132
.ipu-form-item input.low-floor {
3133 3133
  display: block;
3134 3134
  width: .29rem;
3135 3135
  height: .32rem;
@ -3138,7 +3138,7 @@ button.add-others {
3138 3138
  margin-right: .05rem;
3139 3139
  line-height: .32rem;
3140 3140
}
3141
.ipu-form-item input[type="number"].high-floor {
3141
.ipu-form-item input.high-floor {
3142 3142
  display: block;
3143 3143
  width: .29rem;
3144 3144
  height: .32rem;
@ -6975,3 +6975,7 @@ ul li .details-info {
6975 6975
  white-space: nowrap;
6976 6976
  text-overflow: ellipsis;
6977 6977
}
6978
.pages-fulfill-product-info .right-arrow{
6979
  width: .13rem;
6980
  height: .13rem;
6981
}