jiazhipeng 12 months ago
parent
commit
ac89d10390
  1. 4
      pages/index/index.vue
  2. 2
      pages/login/login.vue
  3. 4
      static/css/base.css
  4. 2
      subPackages/hotelHomestay/hotelHomestay.vue
  5. 5
      subPackages/order/trades.vue
  6. 2
      subPackages/ticketBooking/ticketBooking.vue
  7. 2
      subPackages/travelGuide/travelGuide.vue
  8. 4
      subPackages/user/coupon.vue
  9. 4
      subPackages/user/profile.vue
  10. 2
      subPackages/user/travelerList.vue

4
pages/index/index.vue

@ -765,12 +765,12 @@
width: 200rpx; width: 200rpx;
line-height: 53rpx; line-height: 53rpx;
border-radius: 33rpx; border-radius: 33rpx;
border: 1rpx solid #248BAA; border: 1rpx solid #525251;
margin: 44rpx auto 0; margin: 44rpx auto 0;
text-align: center; text-align: center;
font-weight: 500; font-weight: 500;
font-size: 27rpx; font-size: 27rpx;
color: #248BAA; color: #525251;
} }
.couponImg { .couponImg {

2
pages/login/login.vue

@ -155,7 +155,7 @@
} }
span { span {
color: rgba(113, 181, 128, 1); color: #C3282E;
} }
} }
</style> </style>

4
static/css/base.css

@ -151,10 +151,10 @@ view {
height: 60rpx; height: 60rpx;
background: rgba(0, 0, 0, .4); background: rgba(0, 0, 0, .4);
border-radius: 50%; border-radius: 50%;
position: absolute; position: fixed;
left: 26rpx; left: 26rpx;
top: 98rpx; top: 98rpx;
z-index: 2; z-index: 200;
} }
.topLeft .iconfont { .topLeft .iconfont {
font-size: 40rpx; font-size: 40rpx;

2
subPackages/hotelHomestay/hotelHomestay.vue

@ -191,7 +191,7 @@
width: 100%; width: 100%;
height: 440rpx; height: 440rpx;
.icon-back{ .icon-back{
position: absolute; position: fixed;
display: flex; display: flex;
align-items: center; align-items: center;
z-index: 50; z-index: 50;

5
subPackages/order/trades.vue

@ -113,10 +113,11 @@
onLoad(options) { onLoad(options) {
console.log(options); console.log(options);
if (options.type) this.typeIndex = this.typeList.findIndex(vm => vm.name === options.type); if (options.type) this.typeIndex = this.typeList.findIndex(vm => vm.name === options.type);
this.getList();
uni.$on("updateDataByConnect", this.getDataByConnect) uni.$on("updateDataByConnect", this.getDataByConnect)
}, },
onShow() {
this.getList();
},
onUnload() { onUnload() {
uni.$off("updateDataByConnect", this.getDataByConnect) uni.$off("updateDataByConnect", this.getDataByConnect)
}, },

2
subPackages/ticketBooking/ticketBooking.vue

@ -115,7 +115,7 @@
width: 100%; width: 100%;
height: 440rpx; height: 440rpx;
.icon-back{ .icon-back{
position: absolute; position: fixed;
display: flex; display: flex;
align-items: center; align-items: center;
z-index: 50; z-index: 50;

2
subPackages/travelGuide/travelGuide.vue

@ -146,7 +146,7 @@
width: 100%; width: 100%;
height: 440rpx; height: 440rpx;
.icon-back{ .icon-back{
position: absolute; position: fixed;
display: flex; display: flex;
align-items: center; align-items: center;
z-index: 50; z-index: 50;

4
subPackages/user/coupon.vue

@ -259,7 +259,7 @@
.coupon-item .item-top .price { .coupon-item .item-top .price {
font-size: 25rpx; font-size: 25rpx;
font-weight: bold; font-weight: bold;
color: #FC5209; color: #C3282E;
display: flex; display: flex;
align-items: baseline; align-items: baseline;
justify-content: center; justify-content: center;
@ -273,7 +273,7 @@
.top-left .subtitle { .top-left .subtitle {
width: 100%; width: 100%;
font-size: 24rpx; font-size: 24rpx;
color: #FC5209; color: #C3282E;
padding-left: 6rpx; padding-left: 6rpx;
overflow: hidden; overflow: hidden;
white-space: nowrap; white-space: nowrap;

4
subPackages/user/profile.vue

@ -16,10 +16,10 @@
<span>性别</span> <span>性别</span>
<view @click="$refs.popup.open()">{{gender == 1 ? '' : (gender == 2 ? '' : '保密')}}</view> <view @click="$refs.popup.open()">{{gender == 1 ? '' : (gender == 2 ? '' : '保密')}}</view>
</view> </view>
<navigator url="/subPackages/user/bindTel" class="userinfo-item"> <view class="userinfo-item">
<span>手机号</span> <span>手机号</span>
<view>{{info.mobile}}</view> <view>{{info.mobile}}</view>
</navigator> </view>
<view class="userinfo-item"> <view class="userinfo-item">
<span>生日</span> <span>生日</span>
<picker mode="date" :value="date" :start="startDate" :end="endDate" @change="bindDateChange"> <picker mode="date" :value="date" :start="startDate" :end="endDate" @change="bindDateChange">

2
subPackages/user/travelerList.vue

@ -90,7 +90,7 @@
<view class="btn-box"> <view class="btn-box">
<navigator :url="showType ? '/subPackages/user/myAddressAdd' : '/subPackages/user/myContactsAdd'" class="btn"> <navigator :url="showType ? '/subPackages/user/myAddressAdd' : '/subPackages/user/myContactsAdd'" class="btn">
{{showType ? '添加联系人' : '添加收货地址'}} {{showType ? '添加收货地址' : '添加联系人'}}
</navigator> </navigator>
</view> </view>
</view> </view>

Loading…
Cancel
Save