Browse Source

after mac hbuilder 4.5.7 build project

devMac
MTing 2 days ago
parent
commit
5588c44e5d
  1. 6
      src/subpackage/common/pages/pay_type_select.vue
  2. 7
      src/subpackage/retail/pages/confirm_order/confirm_order.vue
  3. 982
      yarn.lock

6
src/subpackage/common/pages/pay_type_select.vue

@ -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>

7
src/subpackage/retail/pages/confirm_order/confirm_order.vue

@ -17,7 +17,12 @@
<view class="row1"> <view class="row1">
<image :class="[item.iconClassA, item.iconClassB]" mode="aspectFit" :src="item.icon"></image> <image :class="[item.iconClassA, item.iconClassB]" mode="aspectFit" :src="item.icon"></image>
<text>{{ item.name }}</text> <text>{{ item.name }}</text>
<input v-if="item.inputShow&&!storeCardSelectShow" v-model="item.inputValue" :placeholder="item.placeholderLabel" placeholder-style="win-way-item-input-placeholder">
<!-- v-model="item.inputValue" 隐式编译时报错改为显式-->
<input v-if="item.inputShow&&!storeCardSelectShow"
:value="item.inputValue"
@input="item.inputValue = $event.detail.value"
:placeholder="item.placeholderLabel"
placeholder-style="win-way-item-input-placeholder">
<image :class="[item.markClassA, item.markClassB]" mode="aspectFit" :src="item.mark"></image> <image :class="[item.markClassA, item.markClassB]" mode="aspectFit" :src="item.mark"></image>
</view> </view>
<view class="row2"> <view class="row2">

982
yarn.lock
File diff suppressed because it is too large
View File

Loading…
Cancel
Save