|
|
@@ -5,7 +5,7 @@
|
|
|
<view class="top-row">
|
|
|
<view class="info-item">
|
|
|
<image class="logo" :src="customInfo.smallAvatar"/>
|
|
|
- <text class="name">{{ customInfo.name || "" }}{{device}} </text>
|
|
|
+ <text class="name">{{ customInfo.name || "" }}</text>
|
|
|
</view>
|
|
|
<DateSelect class="bar" top="0" @selectDateFn="selectDateFn" defaultShowName='时间' />
|
|
|
</view>
|
|
|
@@ -180,19 +180,15 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- confirmData(val) {
|
|
|
- if (val.index === 0) {
|
|
|
- this.isModel = false;
|
|
|
- } else {
|
|
|
- let ids = this.selectList.map(ele => {
|
|
|
- return {id:ele.id};
|
|
|
- });
|
|
|
- let parameter = {
|
|
|
- id:JSON.stringify(ids),
|
|
|
- customId:this.customInfo.id
|
|
|
- }
|
|
|
- this.paySuccess(parameter)
|
|
|
+ confirmData() {
|
|
|
+ let ids = this.selectList.map(ele => {
|
|
|
+ return {id:ele.id};
|
|
|
+ });
|
|
|
+ let parameter = {
|
|
|
+ id:JSON.stringify(ids),
|
|
|
+ customId:this.customInfo.id
|
|
|
}
|
|
|
+ this.paySuccess(parameter)
|
|
|
},
|
|
|
batchEvent() {
|
|
|
try {
|