zhaohu.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <view class="zhaohu">
  3. <u-radio-group v-model="value" @change="radioGroupChange" active-color="#0C66C2" placement='column'>
  4. <view class="zhaohu-item" v-for="(item,index) in list" :key="index">
  5. <u-radio :name="index">
  6. <text class="text1">{{item.content}}</text>
  7. </u-radio>
  8. </view>
  9. </u-radio-group>
  10. </view>
  11. </template>
  12. <script>
  13. import { phraseList} from "@/units/inquire.js"
  14. export default {
  15. data() {
  16. return {
  17. value: '',
  18. list:[]
  19. }
  20. },
  21. onLoad() {
  22. this.phraseList()
  23. },
  24. methods: {
  25. phraseList(){
  26. phraseList().then(res=>{
  27. this.list = res.data
  28. })
  29. },
  30. radioGroupChange(e) {
  31. console.log(e);
  32. }
  33. }
  34. }
  35. </script>
  36. <style lang="scss" scoped>
  37. .zhaohu {
  38. padding: 0 32rpx;
  39. box-sizing: border-box;
  40. .zhaohu-item {
  41. box-sizing: border-box;
  42. padding: 40rpx 0;
  43. border-bottom: 2rpx solid #F0F0F0;
  44. overflow: hidden;
  45. .text1{
  46. font-size: 30rpx;
  47. font-family: PingFangSC-Regular, PingFang SC;
  48. font-weight: 400;
  49. color: #222222;
  50. margin-left: 10rpx;
  51. // display: inline-block;
  52. }
  53. }
  54. }
  55. </style>