|
@@ -8,9 +8,9 @@
|
|
|
</view>
|
|
|
|
|
|
<view class="u-demo-block__content" style="margin-top: 15px;">
|
|
|
- <u-input placeholder="输入取货码" class="slot-ipt">
|
|
|
+ <u-input placeholder="输入取货码" class="slot-ipt" v-model="pickupCode">
|
|
|
<template slot="suffix">
|
|
|
- <u-button class="slot-btn" @tap="getCode" text="确认核销" type="success" size="mini"></u-button>
|
|
|
+ <u-button class="slot-btn" text="确认核销" type="success" size="mini" @click="confirmOrder"></u-button>
|
|
|
</template>
|
|
|
|
|
|
</u-input>
|
|
@@ -21,37 +21,19 @@
|
|
|
<view class="title">
|
|
|
核销记录
|
|
|
</view>
|
|
|
- <u-cell-group>
|
|
|
|
|
|
- <navigator url="/pages/groupbuying/pickupVerificationr_details/index" hover-class="none">
|
|
|
- <u-cell isLink>
|
|
|
-
|
|
|
- <view slot="title" class="u-slot-title">
|
|
|
- <image src="http://www.gzzzyd.com/groupon/home_slices/看车记录@2x.png" mode=""></image>
|
|
|
- <text class="u-cell-text">GUUIWU</text>
|
|
|
- </view>
|
|
|
-
|
|
|
- </u-cell>
|
|
|
- </navigator>
|
|
|
-
|
|
|
- <navigator url="/pages/groupbuying/pickupVerificationr_details/index" hover-class="none">
|
|
|
- <u-cell isLink>
|
|
|
-
|
|
|
- <view slot="title" class="u-slot-title">
|
|
|
- <image src="http://www.gzzzyd.com/groupon/home_slices/看车记录@2x.png" mode=""></image>
|
|
|
- <text class="u-cell-text">ZIA7DU</text>
|
|
|
- </view>
|
|
|
-
|
|
|
- </u-cell>
|
|
|
- </navigator>
|
|
|
-
|
|
|
- </u-cell-group>
|
|
|
+ <view>
|
|
|
+ <mescroll-item ref="MescrollItem" :i="0" :index="0" :height="height">
|
|
|
+ </mescroll-item>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+ import MescrollItem from "./module/mescrollUni-item.vue";
|
|
|
+ import { confirmOrder} from '@/api/groupon.js'
|
|
|
import {
|
|
|
getUserInfo,
|
|
|
userEdit,
|
|
@@ -73,6 +55,7 @@ import authorize from '@/components/Authorize';
|
|
|
import colors from '@/mixins/color.js';
|
|
|
export default {
|
|
|
components: {
|
|
|
+ MescrollItem,
|
|
|
// #ifdef APP-PLUS
|
|
|
appUpdate,
|
|
|
// #endif
|
|
@@ -83,6 +66,9 @@ export default {
|
|
|
mixins: [colors],
|
|
|
data () {
|
|
|
return {
|
|
|
+ height:'750rpx',
|
|
|
+ pickupCode:'',
|
|
|
+
|
|
|
};
|
|
|
},
|
|
|
computed: mapGetters(['isLogin']),
|
|
@@ -96,6 +82,11 @@ export default {
|
|
|
deep: true
|
|
|
}
|
|
|
},
|
|
|
+ onShow(){
|
|
|
+ let sysInfo = uni.getSystemInfoSync()
|
|
|
+ this.height= sysInfo.windowHeight -(sysInfo.screenWidth/750) * (530) +'px';
|
|
|
+ console.log(this.height)
|
|
|
+ },
|
|
|
onLoad () {
|
|
|
if (this.isLogin) {
|
|
|
this.getUserInfo();
|
|
@@ -106,13 +97,22 @@ export default {
|
|
|
console.log(inf.version)
|
|
|
this.version = inf.version;
|
|
|
});
|
|
|
- // #endif
|
|
|
+ // #endif
|
|
|
this.setLang();
|
|
|
} else {
|
|
|
toLogin();
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+
|
|
|
+ confirmOrder(){
|
|
|
+ confirmOrder(this.pickupCode).then(res =>{
|
|
|
+ uni.$u.toast(res.msg)
|
|
|
+ }).catch(err =>{
|
|
|
+ uni.$u.toast(err)
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
isNew () {
|
|
|
this.$util.Tips({
|
|
|
title: this.$t(`当前为最新版本`)
|
|
@@ -177,15 +177,15 @@ export default {
|
|
|
let files = plus.android.invoke(sdRoot, "listFiles");
|
|
|
let len = files.length;
|
|
|
for (let i = 0; i < len; i++) {
|
|
|
- let filePath = '' + files[i]; // 没有找到合适的方法获取路径,这样写可以转成文件路径
|
|
|
+ let filePath = '' + files[i]; // 没有找到合适的方法获取路径,这样写可以转成文件路径
|
|
|
plus.io.resolveLocalFileSystemURL(filePath, function (entry) {
|
|
|
if (entry.isDirectory) {
|
|
|
- entry.removeRecursively(function (entry) { //递归删除其下的所有文件及子目录
|
|
|
+ entry.removeRecursively(function (entry) { //递归删除其下的所有文件及子目录
|
|
|
uni.showToast({
|
|
|
title: that.$t(`缓存清理完成`),
|
|
|
duration: 2000
|
|
|
});
|
|
|
- that.formatSize(); // 重新计算缓存
|
|
|
+ that.formatSize(); // 重新计算缓存
|
|
|
}, function (e) {
|
|
|
console.log(e.message)
|
|
|
});
|
|
@@ -194,7 +194,7 @@ export default {
|
|
|
}
|
|
|
}, function (e) { });
|
|
|
}
|
|
|
- } else { // ios暂时未找到清理缓存的方法,以下是官方提供的方法,但是无效,会报错
|
|
|
+ } else { // ios暂时未找到清理缓存的方法,以下是官方提供的方法,但是无效,会报错
|
|
|
plus.cache.clear(function () {
|
|
|
uni.showToast({
|
|
|
title: that.$t(`缓存清理完成`),
|
|
@@ -258,7 +258,7 @@ export default {
|
|
|
},
|
|
|
/**
|
|
|
* 退出登录
|
|
|
- *
|
|
|
+ *
|
|
|
*/
|
|
|
outLogin: function () {
|
|
|
let that = this;
|
|
@@ -307,7 +307,7 @@ export default {
|
|
|
},
|
|
|
/**
|
|
|
* 上传文件
|
|
|
- *
|
|
|
+ *
|
|
|
*/
|
|
|
uploadpic: function () {
|
|
|
let that = this;
|
|
@@ -498,8 +498,8 @@ export default {
|
|
|
|
|
|
.tool_list {
|
|
|
.title {
|
|
|
- padding: 0 40rpx;
|
|
|
- padding-top: 20rpx;
|
|
|
+ /*padding: 0 40rpx;*/
|
|
|
+ /*padding-top: 20rpx;*/
|
|
|
height: 100rpx;
|
|
|
font-size: 36rpx;
|
|
|
font-weight: bolder;
|
|
@@ -539,4 +539,7 @@ export default {
|
|
|
background: white;
|
|
|
border-radius: 46rpx;
|
|
|
}
|
|
|
+ .bord{
|
|
|
+ border: 1px solid red;
|
|
|
+ }
|
|
|
</style>
|