chooseRole.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.$api.getIdentifyList().then(res => {
  29. this.roles = res.data;
  30. });
  31. },
  32. next() {
  33. uni.navigateTo({
  34. url: '/pages/login/register?type=' + this.roles[this.current].id
  35. });
  36. }
  37. }
  38. };
  39. </script>
  40. <style lang="scss">
  41. .list {
  42. padding: 20px;
  43. .item {
  44. margin-top: 15px;
  45. background-color: #fff7f7;
  46. height: 100px;
  47. position: relative;
  48. border-radius: 8px;
  49. &.active {
  50. border: 2px solid $main-color;
  51. }
  52. .title {
  53. float: left;
  54. line-height: 96px;
  55. padding-left: 20px;
  56. font-weight: bold;
  57. color: $font-c;
  58. font-size: 20px;
  59. }
  60. image {
  61. position: absolute;
  62. right: 23px;
  63. top: 15px;
  64. width: 50px;
  65. }
  66. }
  67. .btn {
  68. margin-top: 30px;
  69. }
  70. }
  71. </style>