|
@@ -51,11 +51,16 @@
|
|
|
<view class="more" @click="goEdit(item.ID)">
|
|
|
<image src="../../static/img/icon_bianji.png" mode="" class="btnImg"></image>
|
|
|
<view class="btn2">编辑</view>
|
|
|
+ </view>
|
|
|
+ <view class="more" @click="open(item)" v-if="item.state=='未启用'">
|
|
|
+ <image src="../../static/img/icon_tingyong.png" mode="" class="btnImg"></image>
|
|
|
+ <view class="btn2">启用</view>
|
|
|
</view>
|
|
|
- <view class="more" @click="stop(item)">
|
|
|
+ <view class="more" @click="stop(item)" v-else>
|
|
|
<image src="../../static/img/icon_tingyong.png" mode="" class="btnImg"></image>
|
|
|
<view class="btn2">停用</view>
|
|
|
- </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
@@ -96,7 +101,29 @@
|
|
|
this.myOrderCoupon()
|
|
|
},
|
|
|
|
|
|
- methods: {
|
|
|
+ methods: {
|
|
|
+ open(item) {
|
|
|
+ var that = this;
|
|
|
+ uni.showLoading({
|
|
|
+ title: '加载中'
|
|
|
+ });
|
|
|
+ that.$http('openH5SetTheGuest/updateAtivitySate', {
|
|
|
+ id: item.ID,
|
|
|
+ clState: 2
|
|
|
+ }, 'POST').then(res => {
|
|
|
+ uni.showToast({
|
|
|
+ title: '成功',
|
|
|
+ icon: 'none',
|
|
|
+ duration: 3000
|
|
|
+ });
|
|
|
+
|
|
|
+ that.page = 1;
|
|
|
+ that.myOrderCoupon()
|
|
|
+ })
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ },
|
|
|
stop(item) {
|
|
|
|
|
|
var that = this;
|
|
@@ -147,17 +174,17 @@
|
|
|
goEdit(id) {
|
|
|
uni.navigateTo({
|
|
|
url: 'eadit?id=' + id
|
|
|
- })
|
|
|
+ })
|
|
|
},
|
|
|
goSign(item) {
|
|
|
uni.navigateTo({
|
|
|
url: 'signJkDetail?activity=' + JSON.stringify(item)
|
|
|
})
|
|
|
- },
|
|
|
- goStatis(item){
|
|
|
- uni.navigateTo({
|
|
|
- url: 'statistics?activity=' + JSON.stringify(item)
|
|
|
- })
|
|
|
+ },
|
|
|
+ goStatis(item) {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: 'statistics?activity=' + JSON.stringify(item)
|
|
|
+ })
|
|
|
},
|
|
|
myOrderCoupon() {
|
|
|
uni.showLoading({
|
|
@@ -320,6 +347,8 @@
|
|
|
height: 280rpx;
|
|
|
width: 702rpx;
|
|
|
border-radius: 10rpx 10rpx 0px 0px;
|
|
|
+ display: block;
|
|
|
+
|
|
|
}
|
|
|
|
|
|
.timeBox {
|
|
@@ -330,16 +359,18 @@
|
|
|
}
|
|
|
|
|
|
.state {
|
|
|
- width: 102rpx;
|
|
|
- height: 53rpx;
|
|
|
+ width: 102rpx;
|
|
|
+ height: 53rpx;
|
|
|
+ position: relative;
|
|
|
+
|
|
|
}
|
|
|
|
|
|
.time {
|
|
|
- padding: 5rpx 10rpx;
|
|
|
- color: #FFFFFF;
|
|
|
- font-size: 24rpx;
|
|
|
- background: #000000;
|
|
|
-
|
|
|
+ padding: 5rpx 10rpx;
|
|
|
+ color: #FFFFFF;
|
|
|
+ font-size: 24rpx;
|
|
|
+ background: rgba(0, 0, 0, 0.5);
|
|
|
+ margin-left: -8rpx;
|
|
|
border-radius: 0 10rpx 0 0;
|
|
|
}
|
|
|
|