chooseRole.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. // console.log("选择角色");
  29. // console.log(data);
  30. for (let i = 1; i <= this.roles.length; i++) {
  31. if (this.roles[i].roleName == data.roleName) {
  32. this.current = i;
  33. }
  34. }
  35. this.isNext = true
  36. },
  37. getList(){
  38. this.$api.getIdentifyList().then(res => {
  39. console.log(res)
  40. this.roles = res.data
  41. })
  42. },
  43. next(){
  44. uni.navigateTo({
  45. url:"/pages/login/register?type="+this.current
  46. })
  47. }
  48. }
  49. }
  50. </script>
  51. <style lang="scss">
  52. page {
  53. padding: 30px;
  54. }
  55. .custom-style {
  56. margin-bottom: 20px;
  57. width: 80%;
  58. height: 70px;
  59. font-size: 26px;
  60. font-family: serif;
  61. background-color: #87CEFA;
  62. border: #87CEFA;
  63. }
  64. .active-custom-style {
  65. margin-bottom: 20px;
  66. width: 80%;
  67. height: 70px;
  68. font-size: 28px;
  69. background-color: #00BFFF;
  70. border: #00BFFF;
  71. }
  72. .r-role {
  73. font-size: 34px;
  74. display: flex;
  75. align-items: center;
  76. justify-content: center;
  77. }
  78. .l-role {
  79. // margin-left: 10px;
  80. // position: absolute;
  81. // right: 10px;
  82. // bottom: 10px;
  83. }
  84. </style>