Commit 8c2dc8658ca3c6f1e74e44a312a8bcff89b22f92
1 parent
eb117b73
超哥牛批
Showing
1 changed file
with
9 additions
and
40 deletions
src/views/user/userlist.vue
| ... | ... | @@ -493,7 +493,7 @@ |
| 493 | 493 | |
| 494 | 494 | <el-dialog title="邀请线下面试" :visible.sync="dialogCompany"> |
| 495 | 495 | <el-form ref="dynamicValidateForm" :rules="rules" label-width="100px" class="demo-dynamic"> |
| 496 | - <div v-for="(user, index) in sendUserList"> | |
| 496 | + <div v-for="(user, index) in sendUserList" :key="index" style="margin-bottom:20px;padding:10px;border:1px solid #f1f1f1;border-radius: 10rpx;box-shadow: 0 0 10px rgba(0,0,0,.1);"> | |
| 497 | 497 | |
| 498 | 498 | <el-descriptions class="margin-top" :title="(index+1)" :column="2" border> |
| 499 | 499 | <template slot="extra"> |
| ... | ... | @@ -506,43 +506,12 @@ |
| 506 | 506 | <i class="el-icon-user"></i> |
| 507 | 507 | 姓名 |
| 508 | 508 | </template> |
| 509 | - {{user.fullName || ''}} | |
| 510 | - | |
| 511 | - <el-rate v-model="user.stars || 0" disabled show-score text-color="#ff9900"> | |
| 509 | + <div style="display:flex;align-items:center;margin-bottom: 10px;"> | |
| 510 | + <span>{{user.fullName || ''}}</span> | |
| 511 | + <span>(手机号:{{user.phone}})</span> | |
| 512 | + <el-rate v-model="user.stars || 0" disabled show-score text-color="#ff9900"> | |
| 512 | 513 | </el-rate> |
| 513 | - </el-descriptions-item> | |
| 514 | - <el-descriptions-item> | |
| 515 | - <template slot="label"> | |
| 516 | - <i class="el-icon-tickets"></i> | |
| 517 | - 标签 | |
| 518 | - </template> | |
| 519 | - <el-tag v-for="item in user.taglist" size="mini" style="margin-right:5px" | |
| 520 | - :disable-transitions="false"> | |
| 521 | - {{item}} | |
| 522 | - </el-tag> | |
| 523 | - </el-descriptions-item> | |
| 524 | - <el-descriptions-item> | |
| 525 | - <template slot="label"> | |
| 526 | - <i class="el-icon-location-outline"></i> | |
| 527 | - 城市 | |
| 528 | - </template> | |
| 529 | - - | |
| 530 | - </el-descriptions-item> | |
| 531 | - | |
| 532 | - | |
| 533 | - <el-descriptions-item> | |
| 534 | - <template slot="label"> | |
| 535 | - <i class="el-icon-office-building"></i> | |
| 536 | - 联系地址 | |
| 537 | - </template> | |
| 538 | - {{user.address || ''}} | |
| 539 | - </el-descriptions-item> | |
| 540 | - <el-descriptions-item> | |
| 541 | - <template slot="label"> | |
| 542 | - <i class="el-icon-mobile-phone"></i> | |
| 543 | - 手机号 | |
| 544 | - </template> | |
| 545 | - {{user.phone || ''}} | |
| 514 | + </div> | |
| 546 | 515 | </el-descriptions-item> |
| 547 | 516 | <el-descriptions-item> |
| 548 | 517 | <template slot="label"> |
| ... | ... | @@ -557,12 +526,12 @@ |
| 557 | 526 | <template slot="label"> |
| 558 | 527 | 消息内容 |
| 559 | 528 | </template> |
| 560 | - <el-input v-model="user.msgBody"> | |
| 529 | + <el-input v-model="user.msgBody" placeholder="请输入公司地址" style="margin-top:10px;"> | |
| 561 | 530 | |
| 562 | 531 | </el-input> |
| 563 | 532 | |
| 564 | 533 | </el-descriptions-item> |
| 565 | - <el-descriptions-item> | |
| 534 | + <!-- <el-descriptions-item> | |
| 566 | 535 | <template slot="label"> |
| 567 | 536 | |
| 568 | 537 | 备注 |
| ... | ... | @@ -571,7 +540,7 @@ |
| 571 | 540 | |
| 572 | 541 | </el-input> |
| 573 | 542 | |
| 574 | - </el-descriptions-item> | |
| 543 | + </el-descriptions-item> --> | |
| 575 | 544 | </el-descriptions> |
| 576 | 545 | </div> |
| 577 | 546 | ... | ... |