wangfukang 2 days ago
parent
commit
123e53b4c7
  1. 6
      package1/group/groupBuyList.vue
  2. 12
      package1/myCenter/partTimeJobRegister.vue

6
package1/group/groupBuyList.vue

@ -64,7 +64,7 @@
</view>
<view class="shop-list">
<view class="shop-member" v-for="(item,index) in shopList" :key="index" @tap="goDetail('shop',item)">
<view @tap.stop="buyingye" v-if="item.shopTakeaway.status != 1"
<view @tap.stop="buyingye" v-if="item.status != 1"
style="width: 100%;height:100%;position: absolute;top: 0;background: rgba(0, 0, 0, 0.1);z-index: 999;border-radius: 20rpx;">
</view>
<view class="shop-top">
@ -418,9 +418,9 @@
judgeBusinessStatus() {
for (let i = 0; i < this.shopList.length; i++) {
if (this.shopList[i].shopTakeaway != '' && this.shopList[i].shopTakeaway != null) {
if (this.shopList[i].shopTakeaway.status == 0) {
if (this.shopList[i].status == 1) {
let isEndTime = this.isWithinBusinessHours(this.shopList[i].shopTakeaway.businessHourBegin,this.shopList[i].shopTakeaway.businessHourEnd)
this.shopList[i].shopTakeaway.status = isEndTime ? 0 : 1
this.shopList[i].status = isEndTime ? 1 : 0
}
}

12
package1/myCenter/partTimeJobRegister.vue

@ -40,6 +40,15 @@
style="background: #eee;height: 80rpx;line-height: 80rpx;padding: 18rpx 20rpx;border-radius: 20rpx;">
</view>
</view>
<view class="box1">
<view class="reg-name">
* 手机号
</view>
<view class="reg-value">
<input type="number" v-model="formData.mobile" placeholder="手机号"
style="background: #eee;height: 80rpx;line-height: 80rpx;padding: 18rpx 20rpx;border-radius: 20rpx;">
</view>
</view>
<view class="box1">
<view class="reg-name">
* 兼职类型
@ -209,6 +218,7 @@
highFloorFee: 0,
paotui: false,
waima: false,
mobile:'',
studentCard: '',
},
bigImg: '',
@ -239,6 +249,7 @@
let data = res.result;
if (data.workerName) that.formData.name = data.workerName;
if (data.cardPicture) that.formData.studentCard = data.cardPicture;
if (data.mobile) that.formData.mobile = data.mobile;
if (data.highFloorFee !== undefined && data.highFloorFee !== null) that.formData.highFloorFee = data.highFloorFee;
let list = data.workerRelaPriceList || [];
@ -396,6 +407,7 @@
workerName: this.formData.name,
cardPicture: this.formData.studentCard,
highFloorFee: this.formData.highFloorFee,
mobile: this.formData.mobile,
workerRelaPriceList: workerRelaPriceList
};

Loading…
Cancel
Save