jiazhipeng 10 months ago
parent
commit
a901864fd1
  1. 1
      pages/daoyou/index.vue
  2. 8
      pages/index/index.vue
  3. 48
      subPackages/daoyou/detail.vue
  4. 2
      subPackages/daoyou/order.vue
  5. 24
      subPackages/line/orders.vue
  6. 7
      subPackages/order/orderDetail.vue
  7. 4
      subPackages/order/trades.vue
  8. 1
      subPackages/user/bindTel.vue
  9. 1
      subPackages/user/changeNickname.vue
  10. 1
      subPackages/user/logout.vue
  11. 1
      subPackages/user/myContactsAdd.vue
  12. 2
      subPackages/user/profile.vue
  13. 2
      subPackages/user/register.vue
  14. 2
      unpackage/dist/build/web/index.html
  15. 2
      unpackage/dist/build/web/static/js/index.62659eda.js
  16. 1
      unpackage/dist/build/web/static/js/pages-daoyou-index.b63e6e62.js
  17. 1
      unpackage/dist/build/web/static/js/pages-daoyou-index.e2b12204.js
  18. 1
      unpackage/dist/build/web/static/js/pages-index-index.03be80c5.js
  19. 1
      unpackage/dist/build/web/static/js/pages-index-index.87f20659.js
  20. 1
      unpackage/dist/build/web/static/js/subPackages-daoyou-detail.b880ed94.js
  21. 1
      unpackage/dist/build/web/static/js/subPackages-daoyou-detail.fa764448.js
  22. 1
      unpackage/dist/build/web/static/js/subPackages-daoyou-order.363de96d.js
  23. 1
      unpackage/dist/build/web/static/js/subPackages-daoyou-order.3f7b08d2.js
  24. 1
      unpackage/dist/build/web/static/js/subPackages-line-orders.521cc9bf.js
  25. 1
      unpackage/dist/build/web/static/js/subPackages-line-orders.69ea0091.js
  26. 1
      unpackage/dist/build/web/static/js/subPackages-order-orderDetail.61b41644.js
  27. 1
      unpackage/dist/build/web/static/js/subPackages-order-orderDetail.9ce54904.js
  28. 1
      unpackage/dist/build/web/static/js/subPackages-order-trades.29f56c93.js
  29. 1
      unpackage/dist/build/web/static/js/subPackages-order-trades.a4172615.js
  30. 3
      unpackage/dist/build/web/static/js/subPackages-user-infoFilling.2ab60e8e.js
  31. 3
      unpackage/dist/build/web/static/js/subPackages-user-infoFilling.609bee5f.js
  32. 1
      unpackage/dist/build/web/static/js/subPackages-user-logout.ccdec843.js
  33. 1
      unpackage/dist/build/web/static/js/subPackages-user-logout.d3530e0e.js
  34. 1
      unpackage/dist/build/web/static/js/subPackages-user-myContactsAdd.686d7452.js
  35. 1
      unpackage/dist/build/web/static/js/subPackages-user-myContactsAdd.8f018953.js
  36. 1
      unpackage/dist/build/web/static/js/subPackages-user-profile.3c00fb53.js
  37. 1
      unpackage/dist/build/web/static/js/subPackages-user-profile.ea8f196d.js
  38. 1
      unpackage/dist/build/web/static/js/subPackages-user-register.9504f4f5.js
  39. 1
      unpackage/dist/build/web/static/js/subPackages-user-register.d029ccae.js

1
pages/daoyou/index.vue

@ -377,7 +377,6 @@
height: 273rpx; height: 273rpx;
background: #FFFFFF; background: #FFFFFF;
border-radius: 7rpx; border-radius: 7rpx;
border: 1rpx solid #96684F;
background-image: url('https://static.ticket.sz-trip.com/tourist/daoyou/itemBg.png'); background-image: url('https://static.ticket.sz-trip.com/tourist/daoyou/itemBg.png');
background-size: 100% 100%; background-size: 100% 100%;
padding: 14rpx; padding: 14rpx;

8
pages/index/index.vue

@ -73,10 +73,10 @@
title: '品牌导游', title: '品牌导游',
id: '57' id: '57'
}, },
{ // {
title: '选项2', // title: '2',
id: '58' // id: '58'
} // }
], ],
typeIndex: 0, typeIndex: 0,
tourList: [], tourList: [],

48
subPackages/daoyou/detail.vue

@ -1,6 +1,6 @@
<template> <template>
<view class="bg"> <view class="bg">
<view class="kefu-box"> <view class="kefu-box" @click="gotoPath('/subPackages/onlineService/index')">
<image src="https://static.ticket.sz-trip.com/tourist/daoyou/kefu.png" class="kefu-img"></image> <image src="https://static.ticket.sz-trip.com/tourist/daoyou/kefu.png" class="kefu-img"></image>
客服 客服
</view> </view>
@ -112,6 +112,7 @@
</view> </view>
</view> </view>
</view> </view>
<view v-if="skuHeight == 0" class="empty-text">暂无场次</view>
</view> </view>
</template> </template>
@ -136,7 +137,8 @@
skus: [], skus: [],
type: '', type: '',
id: '' id: '',
skuHeight: 0
} }
}, },
onLoad(option) { onLoad(option) {
@ -216,6 +218,17 @@
this.selectDay = item this.selectDay = item
this.selectIndex = index - 1 this.selectIndex = index - 1
} }
this.getSkuHeight()
},
getSkuHeight() {
const query = uni.createSelectorQuery().in(this);
query
.select(".sku-box")
.boundingClientRect(res => {
this.skuHeight = res.height
})
.exec();
}, },
// //
getStoreByDate() { getStoreByDate() {
@ -225,6 +238,10 @@
end_date: this.everyDay[this.everyDay.length - 1].date end_date: this.everyDay[this.everyDay.length - 1].date
},'/api/goods/get_product_sku_price_by_date').then(res => { },'/api/goods/get_product_sku_price_by_date').then(res => {
this.skus = res.data this.skus = res.data
this.$nextTick(() => {
this.getSkuHeight()
})
}) })
}, },
// //
@ -317,7 +334,15 @@
}, },
// //
preNextDate(e) { preNextDate(e) {
let currentDate = new Date()
if (e) { if (e) {
//
let monthsToAdd = 3; //
let maxMonth = 0
currentDate.setMonth(currentDate.getMonth() + monthsToAdd);
maxMonth = Number(this.getNowTime(currentDate).slice(5, 7))
// if(this.month + 1 == maxMonth) return;
// //
this.month += 1; this.month += 1;
if (this.month > 12) { if (this.month > 12) {
@ -330,6 +355,9 @@
this.getEveryDay(this.year + '-' + this.month); this.getEveryDay(this.year + '-' + this.month);
} }
} else { } else {
currentDate.setMonth(currentDate.getMonth() - 1);
let minMonth = Number(this.getNowTime(currentDate).slice(5, 7))
if(this.month - 1 == minMonth) return;
// //
this.month -= 1; this.month -= 1;
if (this.month == 0) { if (this.month == 0) {
@ -475,7 +503,7 @@
} }
.calendar { .calendar {
height: 668rpx; height: auto;
background: #FFFFFF; background: #FFFFFF;
border-radius: 13rpx; border-radius: 13rpx;
margin-top: 28rpx; margin-top: 28rpx;
@ -589,7 +617,7 @@
.sku-box { .sku-box {
border-radius: 13rpx; border-radius: 13rpx;
background-color: #fff; background-color: #fff;
margin-top: 100rpx; margin-top: 30rpx;
.sku-item { .sku-item {
height: 132rpx; height: 132rpx;
@ -637,4 +665,16 @@
border-top: 1rpx solid #D8D8D8; border-top: 1rpx solid #D8D8D8;
} }
} }
.empty-text {
width: 697rpx;
line-height: 133rpx;
background: #FFFFFF;
border-radius: 13rpx 13rpx 0rpx 0rpx;
text-align: center;
margin-top: 30rpx;
font-weight: 500;
font-size: 28rpx;
color: #999999;
}
</style> </style>

2
subPackages/daoyou/order.vue

@ -58,7 +58,7 @@
</view> </view>
<view class="flex-between"> <view class="flex-between">
联系电话 联系电话
<input type="number" maxlength="11" v-model="phone" placeholder="请填写联系手机号"/> <input type="number" maxlength="11" v-model="phone" placeholder="请填写联系手机号" style="color: #000;"/>
<image src="https://static.ticket.sz-trip.com/tourist/daoyou/phoneClear.png" v-if="phone.length > 0" @click="phone = ''"></image> <image src="https://static.ticket.sz-trip.com/tourist/daoyou/phoneClear.png" v-if="phone.length > 0" @click="phone = ''"></image>
</view> </view>
</view> </view>

24
subPackages/line/orders.vue

@ -145,7 +145,6 @@
coupon: '', coupon: '',
reserve_name: '', reserve_name: '',
reserve_phone: '', reserve_phone: '',
reserve_mobile: '',
remark: '', remark: '',
peopleList: [], peopleList: [],
linkmanList: [], linkmanList: [],
@ -258,7 +257,6 @@
data: JSON.stringify(data), data: JSON.stringify(data),
method: 'POST', method: 'POST',
},'/api/order/place').then(res => { },'/api/order/place').then(res => {
console.log(res)
if(res.code == 1) { if(res.code == 1) {
let order_id = res.data.order_id let order_id = res.data.order_id
this.$store.commit("changeLineInfo", null); this.$store.commit("changeLineInfo", null);
@ -315,18 +313,29 @@
limit: 100 limit: 100
},'/api/user/contactList').then(res => { },'/api/user/contactList').then(res => {
this.peopleList = res.data this.peopleList = res.data
this.reserve_mobile = this.peopleList[0].tel
// //
if(this.linkmanList.length > 0){ if(this.linkmanList.length > 0){
//
for (let i = 0; i < this.linkmanList.length; i++) { for (let i = 0; i < this.linkmanList.length; i++) {
for (let j = 0; j < this.peopleList.length; j++) { for (let j = 0; j < this.peopleList.length; j++) {
if(this.peopleList[j].id == this.linkmanList[i].id){ if(this.peopleList[j].id == this.linkmanList[i].id){
this.linkmanList[i] = this.peopleList[j] this.linkmanList[i] = this.peopleList[j]
this.peopleList[j].is_seld = true this.peopleList[j].is_seld = true
this.linkmanList[i].is_seld = true
} }
} }
} }
// id
for (let i = 0; i < this.linkmans.length; i++) {
this.linkmans[i].forEach(item => {
for (let j = 0; j < this.peopleList.length; j++) {
if(this.peopleList[j].id == item.id){
this.peopleList[j].is_sku = item.is_sku
}
}
})
}
this.showLinkman(this.skuIndex)
this.$forceUpdate() this.$forceUpdate()
} }
}) })
@ -337,7 +346,6 @@
if (res && res.code == 1) { if (res && res.code == 1) {
this.getPeople(); this.getPeople();
this.changeContactAddPopup('close') this.changeContactAddPopup('close')
console.log('this.linkmanList3',this.linkmanList)
} }
}, },
// //
@ -348,8 +356,7 @@
} }
this.skuIndex = skuIndex this.skuIndex = skuIndex
this.peopleList.forEach(item => {
this.peopleList.map(item => {
if(item.is_seld && item.is_sku != this.sku[this.skuIndex].id) { if(item.is_seld && item.is_sku != this.sku[this.skuIndex].id) {
item.is_disable = true item.is_disable = true
}else { }else {
@ -393,7 +400,7 @@
return; return;
} }
this.linkmans[this.skuIndex] = [] this.linkmans[this.skuIndex] = []
this.peopleList.map(items => { this.peopleList.forEach(items => {
if(items.id == item.id) { if(items.id == item.id) {
items.is_seld = !items.is_seld items.is_seld = !items.is_seld
} }
@ -683,6 +690,7 @@
.popup-list { .popup-list {
height: 666rpx; height: 666rpx;
padding-bottom: 100rpx;
overflow: scroll; overflow: scroll;
.popup-item { .popup-item {

7
subPackages/order/orderDetail.vue

@ -45,7 +45,7 @@
</view> </view>
<!-- 提示语 --> <!-- 提示语 -->
<view class="swiper-prompt">左右滑动核销其他二维码</view> <view class="swiper-prompt">请到现场后给工作人员出示二维码核销</view>
</view> </view>
<view :style="{margin: isQrcode ? '0' : '-66rpx auto 0'}" v-if="info.order_child"> <view :style="{margin: isQrcode ? '0' : '-66rpx auto 0'}" v-if="info.order_child">
@ -269,6 +269,7 @@
uni.showModal({ uni.showModal({
title: '提示', title: '提示',
content: '是否申请退款?', content: '是否申请退款?',
confirmColor: '#000000',
success: successRes => { success: successRes => {
if (successRes.confirm) { if (successRes.confirm) {
that.Post({ that.Post({
@ -298,6 +299,7 @@
uni.showModal({ uni.showModal({
title: '提示', title: '提示',
content: '确认关闭订单?', content: '确认关闭订单?',
confirmColor: '#000000',
success: successRes => { success: successRes => {
if (successRes.confirm) { if (successRes.confirm) {
that.Post({ that.Post({
@ -471,7 +473,7 @@
.swiper-prompt { .swiper-prompt {
font-weight: 500; font-weight: 500;
font-size: 29rpx; font-size: 29rpx;
color: #EE3E3B; color: #888888;
text-align: center; text-align: center;
margin-bottom: 45rpx; margin-bottom: 45rpx;
} }
@ -549,6 +551,7 @@
font-weight: 500; font-weight: 500;
font-size: 27rpx; font-size: 27rpx;
color: #000000; color: #000000;
white-space: nowrap;
span { span {
display: inline-block; display: inline-block;

4
subPackages/order/trades.vue

@ -50,7 +50,7 @@
<view class="item-btns"> <view class="item-btns">
<view @click.stop="() => refund(item.order_id, key)" v-if="item.status == 'PAYMENT_SUCCESSFULLY'">申请退款</view> <view @click.stop="() => refund(item.order_id, key)" v-if="item.status == 'PAYMENT_SUCCESSFULLY'">申请退款</view>
<view @click.stop="() => closeOrder(item.order_id, item)" v-if="item.status == 'WAIT_PAYMENT'">关闭订单</view> <view @click.stop="() => closeOrder(item.order_id, item)" v-if="item.status == 'WAIT_PAYMENT'">关闭订单</view>
<view @click.stop="gotoDetailByTypeId(item.order_id[0].goods_id, item.order_id[0].type_id)" v-if="item.status == 'CLOSED'">再次购买</view> <view @click.stop="gotoDetailByTypeId(item.order_child[0].goods_id, item.order_child[0].type_id)" v-if="item.status == 'CLOSED'">再次购买</view>
<view class="pay-btn" @click.stop="setOrderId(item.order_id)" v-if="item.status == 'WAIT_PAYMENT'">立即支付</view> <view class="pay-btn" @click.stop="setOrderId(item.order_id)" v-if="item.status == 'WAIT_PAYMENT'">立即支付</view>
</view> </view>
</navigator> </navigator>
@ -113,6 +113,7 @@
uni.showModal({ uni.showModal({
title: '提示', title: '提示',
content: '是否申请退款?', content: '是否申请退款?',
confirmColor: '#000000',
success: successRes => { success: successRes => {
if (successRes.confirm) { if (successRes.confirm) {
that.Post( that.Post(
@ -139,6 +140,7 @@
uni.showModal({ uni.showModal({
title: '提示', title: '提示',
content: '是否关闭订单?', content: '是否关闭订单?',
confirmColor: '#000000',
success: successRes => { success: successRes => {
if (successRes.confirm) { if (successRes.confirm) {
that.Post( that.Post(

1
subPackages/user/bindTel.vue

@ -52,6 +52,7 @@
uni.showModal({ uni.showModal({
title: '提示', title: '提示',
content: '保存成功!', content: '保存成功!',
confirmColor: '#000000',
success: res => { success: res => {
if (res.confirm) { if (res.confirm) {
this.goBack() this.goBack()

1
subPackages/user/changeNickname.vue

@ -32,6 +32,7 @@
uni.showModal({ uni.showModal({
title: '提示', title: '提示',
content: '保存成功!', content: '保存成功!',
confirmColor: '#000000',
success: res => { success: res => {
if (res.confirm) { if (res.confirm) {
this.goBack() this.goBack()

1
subPackages/user/logout.vue

@ -50,6 +50,7 @@
uni.showModal({ uni.showModal({
title: '提示', title: '提示',
content: '确认注销账号?', content: '确认注销账号?',
confirmColor: '#000000',
success: successRes => { success: successRes => {
if (successRes.confirm) { if (successRes.confirm) {
this.Post({ this.Post({

1
subPackages/user/myContactsAdd.vue

@ -123,6 +123,7 @@
title: '提示', title: '提示',
content: '成功', content: '成功',
showCancel: false, showCancel: false,
confirmColor: '#000000',
success: res => { success: res => {
if (res.confirm) { if (res.confirm) {
uni.navigateBack({}) uni.navigateBack({})

2
subPackages/user/profile.vue

@ -222,6 +222,7 @@
uni.showModal({ uni.showModal({
title: '提示', title: '提示',
content: '确认修改您的信息?', content: '确认修改您的信息?',
confirmColor: '#000000',
success: res => { success: res => {
if (res.confirm) { if (res.confirm) {
this.Post({ this.Post({
@ -238,6 +239,7 @@
title: '提示', title: '提示',
content: res.msg || '修改成功', content: res.msg || '修改成功',
showCancel: false, showCancel: false,
confirmColor: '#000000',
success: res => { success: res => {
if (res.confirm) { if (res.confirm) {
this.getList() this.getList()

2
subPackages/user/register.vue

@ -413,6 +413,7 @@
uni.showModal({ uni.showModal({
title: '提示', title: '提示',
content: '确认修改您的信息?', content: '确认修改您的信息?',
confirmColor: '#000000',
success: res => { success: res => {
if (res.confirm) { if (res.confirm) {
this.Post(param, api).then(res => { this.Post(param, api).then(res => {
@ -422,6 +423,7 @@
title: '提示', title: '提示',
content: res.msg, content: res.msg,
showCancel: false, showCancel: false,
confirmColor: '#000000',
success: res => { success: res => {
if (res.confirm) { if (res.confirm) {
this.getUserInfo() this.getUserInfo()

2
unpackage/dist/build/web/index.html

@ -1,2 +1,2 @@
<!DOCTYPE html><html lang=zh-CN><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><title>daoyous</title><script>var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)')) <!DOCTYPE html><html lang=zh-CN><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><title>daoyous</title><script>var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')</script><link rel=stylesheet href=/static/index.2da1efab.css></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script src=/static/js/chunk-vendors.690d039f.js></script><script src=/static/js/index.0b9258b1.js></script></body></html> document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')</script><link rel=stylesheet href=/static/index.2da1efab.css></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script src=/static/js/chunk-vendors.690d039f.js></script><script src=/static/js/index.62659eda.js></script></body></html>

2
unpackage/dist/build/web/static/js/index.0b9258b1.js → unpackage/dist/build/web/static/js/index.62659eda.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/pages-daoyou-index.b63e6e62.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/pages-daoyou-index.e2b12204.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/pages-index-index.03be80c5.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/pages-index-index.87f20659.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-daoyou-detail.b880ed94.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-daoyou-detail.fa764448.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-daoyou-order.363de96d.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-daoyou-order.3f7b08d2.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-line-orders.521cc9bf.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-line-orders.69ea0091.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-order-orderDetail.61b41644.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-order-orderDetail.9ce54904.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-order-trades.29f56c93.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-order-trades.a4172615.js

File diff suppressed because one or more lines are too long

3
unpackage/dist/build/web/static/js/subPackages-user-infoFilling.2ab60e8e.js

File diff suppressed because one or more lines are too long

3
unpackage/dist/build/web/static/js/subPackages-user-infoFilling.609bee5f.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-user-logout.ccdec843.js

@ -0,0 +1 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["subPackages-user-logout"],{2371:function(t,n,i){"use strict";i.r(n);var e=i("dd81"),o=i.n(e);for(var a in e)["default"].indexOf(a)<0&&function(t){i.d(n,t,(function(){return e[t]}))}(a);n["default"]=o.a},"3e03":function(t,n,i){var e=i("c86c");n=e(!1),n.push([t.i,'@charset "UTF-8";\n/**\n * 这里是uni-app内置的常用样式变量\n *\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\n *\n */\n/**\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\n *\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\n */\n/* 颜色变量 */\n/* 行为相关颜色 */\n/* 文字基本颜色 */\n/* 背景颜色 */\n/* 边框颜色 */\n/* 尺寸变量 */\n/* 文字尺寸 */\n/* 图片尺寸 */\n/* Border Radius */\n/* 水平间距 */\n/* 垂直间距 */\n/* 透明度 */\n/* 文章场景相关 */*[data-v-31c8f537]{box-sizing:border-box}.bg[data-v-31c8f537]{min-height:100vh;background-color:#fff;padding:%?88?% 0 %?250?%}.logoutImg[data-v-31c8f537]{display:block;width:%?120?%;height:%?120?%;margin:0 auto}.title[data-v-31c8f537]{font-weight:700;font-size:%?40?%;color:#000;margin:%?60?% auto %?50?%;text-align:center}.text[data-v-31c8f537]{padding:0 %?40?%}footer[data-v-31c8f537]{position:absolute;bottom:0;left:0;padding:0 %?68?%;width:100%}footer .dui-box[data-v-31c8f537]{width:%?40?%;height:%?40?%;margin-right:%?19?%;background-size:100% 100%;border-radius:50%}footer > uni-view[data-v-31c8f537]:first-child{display:flex;align-items:center;font-weight:500;font-size:%?24?%;color:#000}footer > uni-view[data-v-31c8f537]:last-child{margin:%?53?% 0 %?67?%}footer > uni-view:last-child .btn[data-v-31c8f537]{width:%?267?%;height:%?80?%;background:#bfbfbf;border-radius:%?40?%;font-weight:500;font-size:%?36?%;color:#fff}footer > uni-view:last-child > uni-view[data-v-31c8f537]:nth-child(1){border:%?3?% solid #c3282e;font-weight:500;color:#c3282e;background:#fff}footer > uni-view:last-child .btns[data-v-31c8f537]{background:#c3282e;color:#fff}',""]),t.exports=n},93608:function(t,n,i){"use strict";i.d(n,"b",(function(){return e})),i.d(n,"c",(function(){return o})),i.d(n,"a",(function(){}));var e=function(){var t=this,n=t.$createElement,i=t._self._c||n;return i("v-uni-view",{staticClass:"bg"},[i("v-uni-image",{staticClass:"logoutImg",attrs:{src:"https://static.ticket.sz-trip.com/tongli/images/user/logout.png"}}),i("v-uni-view",{staticClass:"title"},[t._v("用户注销协议")]),i("v-uni-view",{staticClass:"text",domProps:{innerHTML:t._s(t.formateRichText(t.content))}}),i("footer",[i("v-uni-view"),i("v-uni-view",{staticClass:"flex-between"},[i("v-uni-view",{staticClass:"btn flex-center",on:{click:function(n){arguments[0]=n=t.$handleEvent(n),t.goBack.apply(void 0,arguments)}}},[t._v("取消")]),0!=t.time?i("v-uni-view",{staticClass:"btn flex-center"},[t._v("查看协议("+t._s(t.time)+"s)")]):i("v-uni-view",{staticClass:"btn btns flex-center",on:{click:function(n){arguments[0]=n=t.$handleEvent(n),t.confirmLogout.apply(void 0,arguments)}}},[t._v("确认注销")])],1)],1)],1)},o=[]},"99a7":function(t,n,i){"use strict";i.r(n);var e=i("93608"),o=i("2371");for(var a in o)["default"].indexOf(a)<0&&function(t){i.d(n,t,(function(){return o[t]}))}(a);i("f6e7");var c=i("828b"),s=Object(c["a"])(o["default"],e["b"],e["c"],!1,null,"31c8f537",null,!1,e["a"],void 0);n["default"]=s.exports},a3d7:function(t,n,i){var e=i("3e03");e.__esModule&&(e=e.default),"string"===typeof e&&(e=[[t.i,e,""]]),e.locals&&(t.exports=e.locals);var o=i("967d").default;o("774f4914",e,!0,{sourceMap:!1,shadowMode:!1})},dd81:function(t,n,i){"use strict";i("6a54"),Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={data:function(){return{content:"",isTrue:!1,time:8}},onShow:function(){var t=this;this.Post({id:2},"/api/article/getArticleById").then((function(n){if(1==n.code){t.content=n.data.content;var i=setInterval((function(){t.time--,0==t.time&&clearInterval(i)}),1e3)}}))},methods:{confirmLogout:function(){var t=this;uni.showModal({title:"提示",content:"确认注销账号?",confirmColor:"#000000",success:function(n){n.confirm&&t.Post({protocol:1},"/api/user/user_logout").then((function(n){1==n.code&&(uni.showToast({title:"注销成功",icon:"none"}),t.$store.commit("changeUserInfo",{}),setTimeout((function(){uni.switchTab({url:"/pages/index/index"})}),1e3))}))}})}}};n.default=e},f6e7:function(t,n,i){"use strict";var e=i("a3d7"),o=i.n(e);o.a}}]);

1
unpackage/dist/build/web/static/js/subPackages-user-logout.d3530e0e.js

@ -1 +0,0 @@
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["subPackages-user-logout"],{2371:function(t,n,i){"use strict";i.r(n);var e=i("dd81"),o=i.n(e);for(var a in e)["default"].indexOf(a)<0&&function(t){i.d(n,t,(function(){return e[t]}))}(a);n["default"]=o.a},"4dd8":function(t,n,i){"use strict";i.d(n,"b",(function(){return e})),i.d(n,"c",(function(){return o})),i.d(n,"a",(function(){}));var e=function(){var t=this,n=t.$createElement,i=t._self._c||n;return i("v-uni-view",{staticClass:"bg"},[i("v-uni-image",{staticClass:"logoutImg",attrs:{src:"https://static.ticket.sz-trip.com/tongli/images/user/logout.png"}}),i("v-uni-view",{staticClass:"title"},[t._v("用户注销协议")]),i("v-uni-view",{staticClass:"text",domProps:{innerHTML:t._s(t.formateRichText(t.content))}}),i("footer",[i("v-uni-view"),i("v-uni-view",{staticClass:"flex-between"},[i("v-uni-view",{staticClass:"btn flex-center",on:{click:function(n){arguments[0]=n=t.$handleEvent(n),t.goBack.apply(void 0,arguments)}}},[t._v("取消")]),0!=t.time?i("v-uni-view",{staticClass:"btn flex-center"},[t._v("查看协议("+t._s(t.time)+"s)")]):i("v-uni-view",{staticClass:"btn btns flex-center",on:{click:function(n){arguments[0]=n=t.$handleEvent(n),t.confirmLogout.apply(void 0,arguments)}}},[t._v("确认注销")])],1)],1)],1)},o=[]},"99a7":function(t,n,i){"use strict";i.r(n);var e=i("4dd8"),o=i("2371");for(var a in o)["default"].indexOf(a)<0&&function(t){i.d(n,t,(function(){return o[t]}))}(a);i("a0d3");var c=i("828b"),s=Object(c["a"])(o["default"],e["b"],e["c"],!1,null,"89c31200",null,!1,e["a"],void 0);n["default"]=s.exports},a0d3:function(t,n,i){"use strict";var e=i("ed96"),o=i.n(e);o.a},c3ba:function(t,n,i){var e=i("c86c");n=e(!1),n.push([t.i,'@charset "UTF-8";\n/**\n * 这里是uni-app内置的常用样式变量\n *\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\n *\n */\n/**\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\n *\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\n */\n/* 颜色变量 */\n/* 行为相关颜色 */\n/* 文字基本颜色 */\n/* 背景颜色 */\n/* 边框颜色 */\n/* 尺寸变量 */\n/* 文字尺寸 */\n/* 图片尺寸 */\n/* Border Radius */\n/* 水平间距 */\n/* 垂直间距 */\n/* 透明度 */\n/* 文章场景相关 */*[data-v-89c31200]{box-sizing:border-box}.bg[data-v-89c31200]{min-height:100vh;background-color:#fff;padding:%?88?% 0 %?250?%}.logoutImg[data-v-89c31200]{display:block;width:%?120?%;height:%?120?%;margin:0 auto}.title[data-v-89c31200]{font-weight:700;font-size:%?40?%;color:#000;margin:%?60?% auto %?50?%;text-align:center}.text[data-v-89c31200]{padding:0 %?40?%}footer[data-v-89c31200]{position:absolute;bottom:0;left:0;padding:0 %?68?%;width:100%}footer .dui-box[data-v-89c31200]{width:%?40?%;height:%?40?%;margin-right:%?19?%;background-size:100% 100%;border-radius:50%}footer > uni-view[data-v-89c31200]:first-child{display:flex;align-items:center;font-weight:500;font-size:%?24?%;color:#000}footer > uni-view[data-v-89c31200]:last-child{margin:%?53?% 0 %?67?%}footer > uni-view:last-child .btn[data-v-89c31200]{width:%?267?%;height:%?80?%;background:#bfbfbf;border-radius:%?40?%;font-weight:500;font-size:%?36?%;color:#fff}footer > uni-view:last-child > uni-view[data-v-89c31200]:nth-child(1){border:%?3?% solid #c3282e;font-weight:500;color:#c3282e;background:#fff}footer > uni-view:last-child .btns[data-v-89c31200]{background:#c3282e;color:#fff}',""]),t.exports=n},dd81:function(t,n,i){"use strict";i("6a54"),Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={data:function(){return{content:"",isTrue:!1,time:8}},onShow:function(){var t=this;this.Post({id:2},"/api/article/getArticleById").then((function(n){if(1==n.code){t.content=n.data.content;var i=setInterval((function(){t.time--,0==t.time&&clearInterval(i)}),1e3)}}))},methods:{confirmLogout:function(){var t=this;uni.showModal({title:"提示",content:"确认注销账号?",success:function(n){n.confirm&&t.Post({protocol:1},"/api/user/user_logout").then((function(n){1==n.code&&(uni.showToast({title:"注销成功",icon:"none"}),t.$store.commit("changeUserInfo",{}),setTimeout((function(){uni.switchTab({url:"/pages/index/index"})}),1e3))}))}})}}};n.default=e},ed96:function(t,n,i){var e=i("c3ba");e.__esModule&&(e=e.default),"string"===typeof e&&(e=[[t.i,e,""]]),e.locals&&(t.exports=e.locals);var o=i("967d").default;o("732d26a0",e,!0,{sourceMap:!1,shadowMode:!1})}}]);

1
unpackage/dist/build/web/static/js/subPackages-user-myContactsAdd.686d7452.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-user-myContactsAdd.8f018953.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-user-profile.3c00fb53.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-user-profile.ea8f196d.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-user-register.9504f4f5.js

File diff suppressed because one or more lines are too long

1
unpackage/dist/build/web/static/js/subPackages-user-register.d029ccae.js

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save