3917f637 by cheliming
2 parents 4c0ed48f 4316288b
...@@ -316,7 +316,7 @@ export default { ...@@ -316,7 +316,7 @@ export default {
316 padding: 0 !important; 316 padding: 0 !important;
317 .header-top { 317 .header-top {
318 height: 60px; 318 height: 60px;
319 border-bottom: 1px solid rgba(242, 242, 242, 1); 319 border-bottom: 1px solid#EAEAEA;
320 box-sizing: border-box; 320 box-sizing: border-box;
321 .top-items { 321 .top-items {
322 cursor: pointer; 322 cursor: pointer;
...@@ -337,16 +337,20 @@ export default { ...@@ -337,16 +337,20 @@ export default {
337 } 337 }
338 } 338 }
339 .top-items:not(:last-child)::after { 339 .top-items:not(:last-child)::after {
340 content: ""; 340 // content: "";
341 width: 1px; 341 // width: 1px;
342 height: 14px; 342 // height: 14px;
343 background: #eaeaea; 343 // background: #eaeaea;
344 position: absolute; 344 // position: absolute;
345 right: -1px; 345 // right: -1px;
346 top: 24px; 346 // top: 24px;
347 } 347 }
348 .top-items.is-active { 348 .top-items.is-active {
349 color: #006cff; 349 color: #006cff;
350 border-left: 1px solid #EAEAEA;
351 border-right: 1px solid #EAEAEA;
352 height: 59px;
353 border-bottom: 1px solid #FFF;
350 } 354 }
351 } 355 }
352 .header-bottom { 356 .header-bottom {
......
...@@ -126,7 +126,7 @@ ...@@ -126,7 +126,7 @@
126 <input 126 <input
127 type="text" 127 type="text"
128 class="formInput percent78" 128 class="formInput percent78"
129 v-model="formData.dyhbsm" 129 v-model="formData.bdcdyh"
130 /> 130 />
131 <el-button type="primary" class="createBtn">生成</el-button> 131 <el-button type="primary" class="createBtn">生成</el-button>
132 </td> 132 </td>
...@@ -437,7 +437,7 @@ export default { ...@@ -437,7 +437,7 @@ export default {
437 .then((res) => { 437 .then((res) => {
438 console.log(res); 438 console.log(res);
439 this.formData.zddm = res.result.substring(0, 19); 439 this.formData.zddm = res.result.substring(0, 19);
440 this.formData.dyhbsm = res.result; 440 this.formData.bdcdyh = res.result;
441 }) 441 })
442 .catch((error) => {}); 442 .catch((error) => {});
443 }, 443 },
...@@ -510,7 +510,7 @@ export default { ...@@ -510,7 +510,7 @@ export default {
510 }, 510 },
511 //判断容密高是否为区间 511 //判断容密高是否为区间
512 isInterval(val){ 512 isInterval(val){
513 if(val == '>' || val == '<' || val == '=' || val == '>=' || val == '<='){ 513 if(val == '>' || val == '<' || val == '=' || val == '>=' || val == '<='|| val == null){
514 return false 514 return false
515 }else{ 515 }else{
516 return true; 516 return true;
......