|
@ -1,6 +1,6 @@ |
|
|
<template> |
|
|
<template> |
|
|
<view class="pay-type-select"> |
|
|
<view class="pay-type-select"> |
|
|
<view class="pts-header"> |
|
|
|
|
|
|
|
|
<view class="pts-header"> |
|
|
<view class="ph-stadium-info"> |
|
|
<view class="ph-stadium-info"> |
|
|
<image mode="aspectFill" :src="stadiumInfo.logo"></image> |
|
|
<image mode="aspectFill" :src="stadiumInfo.logo"></image> |
|
|
<view>{{ stadiumInfo.name || '-' }}</view> |
|
|
<view>{{ stadiumInfo.name || '-' }}</view> |
|
@ -22,7 +22,9 @@ |
|
|
<view class="pr-top"> |
|
|
<view class="pr-top"> |
|
|
<view class="pr-txt">{{ e.name || '-' }}</view> |
|
|
<view class="pr-txt">{{ e.name || '-' }}</view> |
|
|
<view class="pr-ipt" v-if="e.id == 4"> |
|
|
<view class="pr-ipt" v-if="e.id == 4"> |
|
|
<input v-model="otherTypeRemark" /> |
|
|
|
|
|
|
|
|
<!-- v-model="otherTypeRemark" 隐式编译时报错,改为显式--> |
|
|
|
|
|
<input :value="otherTypeRemark" |
|
|
|
|
|
@input="otherTypeRemark = $event.detail.value" /> |
|
|
</view> |
|
|
</view> |
|
|
<view :class="['pr-icon', e.id == payMethodsID? 'active': '']"> |
|
|
<view :class="['pr-icon', e.id == payMethodsID? 'active': '']"> |
|
|
<image mode="aspectFit" src="/subpackage/common/static/images/choose.png"></image> |
|
|
<image mode="aspectFit" src="/subpackage/common/static/images/choose.png"></image> |
|
|