chooseRole.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <view class="u-page">
  3. <navigation-bar title="选择角色" background-color="#fff" front-color="#000000" />
  4. <u-list :scrollable="false" height="500px">
  5. <u-list-item v-for="(item, index) in roles" :key="index" >
  6. <!-- <u-button class="custom-style" size="lager" type="primary" shape="circle" :text="`我是${item.roleName}`" @click="choose(item.id)"></u-button> -->
  7. <u-button :class="index==current?'active-custom-style':'custom-style'" size="lager" type="primary" shape="circle" @click="choose(item)">
  8. <text>我是{{item.roleName}}</text>
  9. </u-button>
  10. </u-list-item>
  11. </u-list>
  12. <!-- <u-button type="error" shape="circle" text="下一步" @click="next()"></u-button> -->
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. roles: [],
  20. current: 1,
  21. }
  22. },
  23. created() {
  24. this.getList()
  25. },
  26. methods: {
  27. choose(data) {
  28. for (let i = 1; i <= this.roles.length; i++) {
  29. if (this.roles[i].roleName == data.roleName) {
  30. this.current = i;
  31. }
  32. }
  33. this.isNext = true
  34. },
  35. getList(){
  36. this.$api.getIdentifyList().then(res => {
  37. console.log(res)
  38. this.roles = res.data
  39. })
  40. this.$common.to('/pages/login/register?type='+data.id);
  41. },
  42. next(){
  43. uni.navigateTo({
  44. url:"/pages/login/register?type="+this.current
  45. })
  46. }
  47. }
  48. }
  49. </script>
  50. <style lang="scss">
  51. page {
  52. padding: 30px;
  53. }
  54. .custom-style {
  55. margin-bottom: 20px;
  56. width: 80%;
  57. height: 70px;
  58. font-size: 26px;
  59. font-family: serif;
  60. background-color: #87CEFA;
  61. border: #87CEFA;
  62. }
  63. .active-custom-style {
  64. margin-bottom: 20px;
  65. width: 80%;
  66. height: 70px;
  67. font-size: 28px;
  68. background-color: #00BFFF;
  69. border: #00BFFF;
  70. }
  71. .r-role {
  72. font-size: 34px;
  73. display: flex;
  74. align-items: center;
  75. justify-content: center;
  76. }
  77. .l-role {
  78. // margin-left: 10px;
  79. // position: absolute;
  80. // right: 10px;
  81. // bottom: 10px;
  82. }
  83. </style>