chooseRole.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <template>
  2. <view class="list">
  3. <view class="item" :class="{ active: current == index }" v-for="(item, index) in roles" :key="index" @click="current = index">
  4. <view class="title">我是{{ item.roleName }}</view>
  5. <image src="../../static/images/role/bm.png" mode="widthFix" v-if="index == 0"></image>
  6. <image src="../../static/images/role/sj.png" mode="widthFix" v-if="index == 1"></image>
  7. <image src="../../static/images/role/wjsh.png" mode="widthFix" v-if="index == 2"></image>
  8. <image src="../../static/images/role/jxs.png" mode="widthFix" v-if="index == 3"></image>
  9. <image src="../../static/images/role/bm.png" mode="widthFix" v-if="index == 4"></image>
  10. <view class="clear"></view>
  11. </view>
  12. <button class="btn" @click="next()" :disabled="current==-1">下一步</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. getList() {
  28. this.http.request({
  29. url: '/sp-admin/app/AppRole/getList',
  30. success: res => {
  31. this.roles = res.data.data;
  32. }
  33. });
  34. },
  35. next() {
  36. uni.navigateTo({
  37. url: '/pages/login/register?type=' + this.roles[this.current].id
  38. });
  39. }
  40. }
  41. };
  42. </script>
  43. <style lang="scss">
  44. .list {
  45. padding: 20px;
  46. .item {
  47. margin-top: 15px;
  48. background-color: #fff7f7;
  49. height: 100px;
  50. position: relative;
  51. border-radius: 8px;
  52. &.active {
  53. border: 2px solid $main-color;
  54. }
  55. .title {
  56. float: left;
  57. line-height: 96px;
  58. padding-left: 20px;
  59. font-weight: bold;
  60. color: $font-c;
  61. font-size: 20px;
  62. }
  63. image {
  64. position: absolute;
  65. right: 23px;
  66. top: 15px;
  67. width: 50px;
  68. }
  69. }
  70. .btn {
  71. margin-top: 30px;
  72. }
  73. }
  74. </style>