Browse Source

Merge remote-tracking branch 'origin/master'

master
longjieli 9 months ago
parent
commit
903c6ea095
3 changed files with 21 additions and 15 deletions
  1. +1
    -1
      App.vue
  2. +10
    -7
      pages/order/order.vue
  3. +10
    -7
      pages/signIn/signIn.vue

+ 1
- 1
App.vue View File

@ -41,7 +41,7 @@
// background-color: #000; // background-color: #000;
} }
.u-modal__title{ .u-modal__title{
color: #fff !important;
// color: #fff !important;
} }
@media screen and (min-width: 960px) { @media screen and (min-width: 960px) {


+ 10
- 7
pages/order/order.vue View File

@ -34,7 +34,7 @@
<view style="font-size: 28rpx;" class="time"> <view style="font-size: 28rpx;" class="time">
{{ item.createTime }} {{ item.createTime }}
</view> </view>
<view style="color: #fff;border: 1px solid #fff;
<view style="color: #333;border: 1px solid #333;
padding: 7rpx 15rpx;font-size: 24rpx;" padding: 7rpx 15rpx;font-size: 24rpx;"
v-if="item.state != 0"> v-if="item.state != 0">
{{ $t('page.order.Submit_New') }} {{ $t('page.order.Submit_New') }}
@ -46,12 +46,14 @@
</view> </view>
</view> </view>
<view class="con" <view class="con"
style="border-bottom: 1px solid #fff;
style="border-bottom: 1px solid #333;
padding: 20rpx 0;"> padding: 20rpx 0;">
<view class="img-box" style="width: 150rpx;height: 150rpx;overflow: hidden;border-radius: 10rpx;display: flex;align-items: center;">
<view class="img-box" style="width: 150rpx;height: 150rpx;
overflow: hidden;border-radius: 10rpx;display: flex;
align-items: center;">
<image :src="item.image" mode="widthFix" style="width: 150rpx;"></image> <image :src="item.image" mode="widthFix" style="width: 150rpx;"></image>
</view> </view>
<view style="font-weight: 900;margin-left: 20rpx;font-size: 28rpx;color: #fff;">
<view style="font-weight: 900;margin-left: 20rpx;font-size: 28rpx;color: #333;">
{{ item.subTitle }} {{ item.subTitle }}
</view> </view>
</view> </view>
@ -66,7 +68,7 @@
</view> </view>
<view class="con" <view class="con"
style="margin-top: 10rpx; style="margin-top: 10rpx;
color: #fff;font-weight: 900;font-size: 28rpx;">
color: #333;font-weight: 900;font-size: 28rpx;">
<view style="flex: 1;"> <view style="flex: 1;">
USDT {{ item.price }} USDT {{ item.price }}
</view> </view>
@ -203,7 +205,7 @@
<style lang="scss" scoped> <style lang="scss" scoped>
.order { .order {
padding-bottom: 200rpx; padding-bottom: 200rpx;
// background-color: black;
background-color: #f7f7f7;
// background-image: url('@/static/home/bg.png'); // background-image: url('@/static/home/bg.png');
background-size: 100%; background-size: 100%;
color: #000; color: #000;
@ -225,7 +227,8 @@
position: relative; position: relative;
padding: 20rpx; padding: 20rpx;
border-radius: 5px; border-radius: 5px;
background-color: $uni-bg-color-app;
background-color: $uni-bg-color;
box-shadow: 0px 0px 5rpx 5rpx #00000023;
margin: 0rpx 20rpx 20rpx 20rpx; margin: 0rpx 20rpx 20rpx 20rpx;
.top{ .top{
display: flex; display: flex;


+ 10
- 7
pages/signIn/signIn.vue View File

@ -227,9 +227,9 @@
<style lang="scss" scoped> <style lang="scss" scoped>
.sigin-in { .sigin-in {
// background: black;
background: #f7f7f7;
padding-bottom: 80rpx; padding-bottom: 80rpx;
.sigin-in-content { .sigin-in-content {
width: 96%; width: 96%;
margin: 0 auto; margin: 0 auto;
@ -252,8 +252,9 @@
margin-bottom: 20rpx; margin-bottom: 20rpx;
.month { .month {
background: $uni-bg-color-app;
color: $uni-text-color-inverse;
// background: $uni-bg-color;
color: $uni-text-color;
// box-shadow: 0px 0px 5rpx 5rpx #00000023;
padding: 10rpx; padding: 10rpx;
border-radius: 10rpx; border-radius: 10rpx;
margin: 0rpx 15rpx; margin: 0rpx 15rpx;
@ -276,8 +277,9 @@
flex-wrap: wrap; flex-wrap: wrap;
.day-item { .day-item {
background: $uni-bg-color-app;
color: $uni-text-color-inverse;
background: $uni-bg-color;
color: $uni-text-color;
box-shadow: 0px 0px 5rpx 5rpx #00000023;
position: relative; position: relative;
flex-shrink: 0; flex-shrink: 0;
width: calc(20% - 7px); width: calc(20% - 7px);
@ -314,7 +316,8 @@
.day { .day {
font-size: 20rpx; font-size: 20rpx;
border-radius: 20rpx; border-radius: 20rpx;
background: #66B53B;
background: $uni-bg-color-app;
color: $uni-text-color-inverse;
} }
view { view {


Loading…
Cancel
Save