123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <view class="zhaohu">
- <u-radio-group v-model="value" @change="radioGroupChange" active-color="#0C66C2" placement='column'>
- <view class="zhaohu-item" v-for="(item,index) in list" :key="index">
- <u-radio :name="index">
- <text class="text1">{{item.content}}</text>
- </u-radio>
- </view>
- </u-radio-group>
- </view>
- </template>
- <script>
- import { phraseList} from "@/units/inquire.js"
- export default {
- data() {
- return {
- value: '',
- list:[]
- }
- },
- onLoad() {
- this.phraseList()
- },
- methods: {
- phraseList(){
- phraseList().then(res=>{
- this.list = res.data
- })
- },
- radioGroupChange(e) {
- console.log(e);
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .zhaohu {
- padding: 0 32rpx;
- box-sizing: border-box;
- .zhaohu-item {
- box-sizing: border-box;
- padding: 40rpx 0;
- border-bottom: 2rpx solid #F0F0F0;
- overflow: hidden;
- .text1{
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #222222;
- margin-left: 10rpx;
- // display: inline-block;
- }
- }
- }
- </style>
|