|
@@ -5,12 +5,12 @@
|
|
|
<view class='list'>
|
|
|
<view class='item acea-row row-between-wrapper'>
|
|
|
<view class='name'>主标题</view>
|
|
|
- <input type='text' placeholder='请填写主标题' name='realName' :value="userAddress.realName"
|
|
|
+ <input type='text' placeholder='请填写主标题' name='mainTitle' :value="grouponReqData.mainTitle"
|
|
|
placeholder-class='placeholder'></input>
|
|
|
</view>
|
|
|
<view class='item acea-row row-between-wrapper'>
|
|
|
<view class='name'>副标题</view>
|
|
|
- <input type='number' placeholder='请填写副标题' name="phone" :value='userAddress.phone'
|
|
|
+ <input type='number' placeholder='请填写副标题' name="subTitle" :value='grouponReqData.subTitle'
|
|
|
placeholder-class='placeholder' pattern="\d*" maxlength="11"></input>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -21,28 +21,27 @@
|
|
|
<view class='item acea-row row-between-wrapper'>
|
|
|
<view class='name'>团购时间</view>
|
|
|
<view @click="show1 = true">
|
|
|
- <input type='number' placeholder='请选择团购时间' name="phone" disabled :value='userAddress.date'
|
|
|
+ <input placeholder='请选择团购时间' name="phone" disabled :value='userAddress.date'
|
|
|
placeholder-class='placeholder' maxlength="11"></input>
|
|
|
</view>
|
|
|
-
|
|
|
- <u-datetime-picker @confirm="dateConfirm" :show="show1" v-model="value1" mode="datetime"></u-datetime-picker>
|
|
|
+ <u-datetime-picker @confirm="dateConfirm" :show="show1" v-model="value1" mode="datetimerange"></u-datetime-picker>
|
|
|
</view>
|
|
|
<view class='item acea-row row-between-wrapper'>
|
|
|
<view class='name'>提货时间</view>
|
|
|
<view @click="show2 = true">
|
|
|
- <input type='number' placeholder='请选择提货时间' name="phone" disabled :value='userAddress.date2'
|
|
|
+ <input placeholder='请选择提货时间' name="phone" disabled :value='userAddress.date2'
|
|
|
placeholder-class='placeholder' maxlength="11"></input>
|
|
|
</view>
|
|
|
|
|
|
<u-datetime-picker @confirm="dateConfirmDate2()" :show="show2" v-model="value1"
|
|
|
- mode="datetime"></u-datetime-picker>
|
|
|
+ mode="datetimerange"></u-datetime-picker>
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<view class='item acea-row row-between-wrapper'>
|
|
|
<view class='name'>自提点</view>
|
|
|
- <view @click="showZTD = true">
|
|
|
+ <view @click="openSelfTakeTable()">
|
|
|
<input type='number' placeholder='请选择提自提点' name="phone" disabled :value='userAddress.ZTD'
|
|
|
placeholder-class='placeholder' maxlength="11"></input>
|
|
|
</view>
|
|
@@ -109,6 +108,7 @@
|
|
|
|
|
|
<script>
|
|
|
const city_res = require('@/mock/json/city_res.json')
|
|
|
+import {publishGroupon, getAllSelfTake} from '@/api/groupon.js';
|
|
|
import {
|
|
|
postUserAddressSave,
|
|
|
postUserAddressUpdate,
|
|
@@ -145,6 +145,18 @@ export default {
|
|
|
mixins: [colors],
|
|
|
data () {
|
|
|
return {
|
|
|
+ grouponReqData: {
|
|
|
+ mainTitle: '',
|
|
|
+ subTitle: '',
|
|
|
+ grouponStartTime:'2023-06-09 00:00:00',
|
|
|
+ grouponEndTime:'2023-06-11 00:00:00',
|
|
|
+ takeStartTime:'2023-06-13 00:00:00',
|
|
|
+ takeEndTime:'2023-06-16 00:00:00',
|
|
|
+ selfTakeIds: ['1664554394738343938'],
|
|
|
+ goodsIds: ['1666726817158090753']
|
|
|
+ },
|
|
|
+ grouponTimeRange: [],
|
|
|
+ takeTimeRange: [],
|
|
|
columns: [
|
|
|
['中国', '美国', '日本']
|
|
|
],
|
|
@@ -177,7 +189,8 @@ export default {
|
|
|
defaultRegionCode: '110101',
|
|
|
news: '',
|
|
|
noCoupon: 0,
|
|
|
- selectGoodList: []
|
|
|
+ selectGoodList: [],
|
|
|
+ selfTakeList: []
|
|
|
};
|
|
|
},
|
|
|
computed: mapGetters(['isLogin']),
|
|
@@ -209,6 +222,15 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ openSelfTakeTable() {
|
|
|
+ this.showZTD = true;
|
|
|
+ getAllSelfTake({
|
|
|
+ current: 1,
|
|
|
+ size: 20
|
|
|
+ }).then(res => {
|
|
|
+ this.selfTakeList = res.data.recoreds;
|
|
|
+ })
|
|
|
+ },
|
|
|
delItem (index) {
|
|
|
this.selectGoodList.splice(index, 1)
|
|
|
},
|
|
@@ -343,7 +365,7 @@ export default {
|
|
|
this.$set(this.multiArray, 1, multiArray[1]);
|
|
|
this.$set(this.multiArray, 2, multiArray[2]);
|
|
|
// #endif
|
|
|
- // #ifdef H5
|
|
|
+ // #ifdef H5
|
|
|
this.multiArray = multiArray;
|
|
|
// #endif
|
|
|
|
|
@@ -529,97 +551,66 @@ export default {
|
|
|
}).catch(err => { });
|
|
|
},
|
|
|
/**
|
|
|
- * 提交用户添加地址
|
|
|
- *
|
|
|
+ * 发布团购
|
|
|
*/
|
|
|
formSubmit: function (e) {
|
|
|
let that = this,
|
|
|
- value = e.detail.value;
|
|
|
- if (!value.realName.trim()) return that.$util.Tips({
|
|
|
- title: that.$t(`请填写收货人姓名`)
|
|
|
- });
|
|
|
- if (!value.phone) return that.$util.Tips({
|
|
|
- title: that.$t(`请填写联系电话`)
|
|
|
- });
|
|
|
- if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(value.phone)) return that.$util.Tips({
|
|
|
- title: that.$t(`请输入正确的手机号码`)
|
|
|
- });
|
|
|
- if (that.region[0] == that.$t(`省`)) return that.$util.Tips({
|
|
|
- title: that.$t(`请选择所在地区`)
|
|
|
+ value = e.detail.value;
|
|
|
+ console.log(value);
|
|
|
+ console.log(that.grouponReqData);
|
|
|
+
|
|
|
+ if (!value.mainTitle.trim()) return that.$util.Tips({
|
|
|
+ title: that.$t(`请填写主标题`)
|
|
|
});
|
|
|
- if (!value.detail.trim()) return that.$util.Tips({
|
|
|
- title: that.$t(`请填写详细地址`)
|
|
|
+ if (!value.subTitle.trim()) return that.$util.Tips({
|
|
|
+ title: that.$t(`请填写副标题`)
|
|
|
});
|
|
|
- value.id = that.id;
|
|
|
- let regionArray = that.region;
|
|
|
- value.province = regionArray[0],
|
|
|
- value.city = regionArray[1],
|
|
|
- value.district = regionArray[2],
|
|
|
- // value.city_id = that.cityId,
|
|
|
- value.isDeleted = 0
|
|
|
- value.userId = this.$store.state.app.uid
|
|
|
- value.defaultState = that.userAddress.defaultState ? 2 : 1
|
|
|
+
|
|
|
uni.showLoading({
|
|
|
- title: that.$t(`保存中`),
|
|
|
+ title: that.$t(`发布中`),
|
|
|
mask: true
|
|
|
})
|
|
|
let resSuccess = false;
|
|
|
- console.log(that.userAddress.defaultState);
|
|
|
- if (that.id) {
|
|
|
- postUserAddressUpdate(value).then(res => {
|
|
|
- that.$util.Tips({
|
|
|
- title: that.$t(`修改成功`),
|
|
|
- icon: 'success'
|
|
|
- });
|
|
|
- }).catch(err => {
|
|
|
- return that.$util.Tips({
|
|
|
- title: err
|
|
|
- });
|
|
|
- })
|
|
|
+ publishGroupon(that.grouponReqData).then(res => {
|
|
|
+ that.$util.Tips({
|
|
|
+ title: that.$t(`提交成功`),
|
|
|
+ icon: 'success'
|
|
|
+ });
|
|
|
resSuccess = true
|
|
|
- }
|
|
|
- else {
|
|
|
- postUserAddressSave(value).then(res => {
|
|
|
- that.$util.Tips({
|
|
|
- title: that.$t(`添加成功`),
|
|
|
- icon: 'success'
|
|
|
- });
|
|
|
+ }).catch(err => {
|
|
|
+ return that.$util.Tips({
|
|
|
+ title: err
|
|
|
+ });
|
|
|
+ })
|
|
|
|
|
|
- }).catch(err => {
|
|
|
- return that.$util.Tips({
|
|
|
- title: err
|
|
|
- });
|
|
|
- })
|
|
|
- resSuccess = true
|
|
|
- }
|
|
|
if (resSuccess) {
|
|
|
- setTimeout(function () {
|
|
|
- if (that.cartId) {
|
|
|
- let cartId = that.cartId;
|
|
|
- let pinkId = that.pinkId;
|
|
|
- let couponId = that.couponId;
|
|
|
- that.cartId = '';
|
|
|
- that.pinkId = '';
|
|
|
- that.couponId = '';
|
|
|
- uni.navigateTo({
|
|
|
- url: '/pages/goods/order_confirm/index?new=' + that.news +
|
|
|
- '&cartId=' + cartId + '&addressId=' + (that.id ? that.id :
|
|
|
- res.data.id) + '&pinkId=' + pinkId + '&couponId=' +
|
|
|
- couponId +
|
|
|
- '&noCoupon=' + that
|
|
|
- .noCoupon
|
|
|
- });
|
|
|
- } else {
|
|
|
- // #ifdef H5
|
|
|
- return history.back();
|
|
|
- // #endif
|
|
|
- // #ifndef H5
|
|
|
- return uni.navigateBack({
|
|
|
- delta: 1,
|
|
|
- })
|
|
|
- // #endif
|
|
|
- }
|
|
|
- }, 1000);
|
|
|
+ // setTimeout(function () {
|
|
|
+ // if (that.cartId) {
|
|
|
+ // let cartId = that.cartId;
|
|
|
+ // let pinkId = that.pinkId;
|
|
|
+ // let couponId = that.couponId;
|
|
|
+ // that.cartId = '';
|
|
|
+ // that.pinkId = '';
|
|
|
+ // that.couponId = '';
|
|
|
+ // uni.navigateTo({
|
|
|
+ // url: '/pages/goods/order_confirm/index?new=' + that.news +
|
|
|
+ // '&cartId=' + cartId + '&addressId=' + (that.id ? that.id :
|
|
|
+ // res.data.id) + '&pinkId=' + pinkId + '&couponId=' +
|
|
|
+ // couponId +
|
|
|
+ // '&noCoupon=' + that
|
|
|
+ // .noCoupon
|
|
|
+ // });
|
|
|
+ // } else {
|
|
|
+ // // #ifdef H5
|
|
|
+ // return history.back();
|
|
|
+ // // #endif
|
|
|
+ // // #ifndef H5
|
|
|
+ // return uni.navigateBack({
|
|
|
+ // delta: 1,
|
|
|
+ // })
|
|
|
+ // // #endif
|
|
|
+ // }
|
|
|
+ // }, 1000);
|
|
|
}
|
|
|
},
|
|
|
ChangeIsDefault: function (e) {
|