123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- /* pages/orders/order-detail.wxss */
- page {
- height: 100vh;
- display: flex;
- flex-direction: column;
- background: #F5F6F7;
- }
- .container {
- display: flex;
- flex-direction: column;
- width: 100%;
- flex: 1;
- overflow-y: auto;
- }
- .record-list {
- flex: 1;
- overflow-y: scroll;
- box-sizing: border-box;
- }
- .scroll-container {
- padding-bottom: 180rpx;
- }
- .order-status {
- margin: 24rpx 26rpx 0;
- background-color: #FFFFFF;
- border-radius: 20rpx;
- padding: 24rpx 32rpx;
- .status {
- display: flex;
- image {
- width: 48rpx;
- height: 48rpx;
- margin-right: 16rpx;
- }
- text {
- font-weight: 600;
- font-size: 36rpx;
- color: #131415;
- line-height: 48rpx;
- }
- }
- .tips {
- padding-top: 24rpx;
- font-size: 28rpx;
- color: #777777;
- line-height: 40rpx;
- }
- }
- .order-content {
- margin: 24rpx 26rpx 0;
- border-radius: 20rpx;
- padding: 28rpx 24rpx;
- display: flex;
- flex-direction: column;
- background-color: #FFFFFF;
- }
- .item-content {
- display: flex;
- width: 100%;
- .goods-icon {
- width: 160rpx;
- height: 160rpx;
- margin-right: 24rpx;
- flex-shrink: 0;
- border-radius: 6px;
- overflow: hidden;
- }
- .goods-desc {
- flex: 1 auto;
- display: flex;
- flex-direction: column;
- }
- .goodsInfo {
- display: flex;
- justify-content: space-between;
- padding-top: 4rpx;
- .goods-name {
- flex: 1 auto;
- white-space: nowrap;
- overflow: hidden;
- font-weight: 600;
- font-size: 30rpx;
- text-overflow: ellipsis;
- max-width: 310rpx;
- }
- .goods-price {
- flex-shrink: 0;
- font-family: DINAlternate, DINAlternate;
- font-weight: bold;
- font-size: 30rpx;
- color: #131415;
- line-height: 48rpx;
- text {
- padding-right: 4rpx;
- }
- }
- }
- .goods-type {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-top: 12rpx;
- .goods-card {
- background: #FEEDF0;
- border-radius: 6rpx;
- font-size: 26rpx;
- color: #FE2451;
- line-height: 40rpx;
- padding: 0 12rpx;
- }
- .goods-num {
- font-size: 28rpx;
- color: #777777;
- line-height: 36rpx;
- }
- }
- }
- /* HTML: <div class="loader"></div> */
- .loader {
- position: absolute;
- top: 50%;
- left: 50%;
- right: 0;
- bottom: 0;
- margin-top: -50rpx;
- margin-left: -50rpx;
- z-index: 9;
- width: 100rpx;
- aspect-ratio: 1;
- border-radius: 50%;
- background:
- radial-gradient(farthest-side,#E8E8E8 94%,#0000) top/8px 8px no-repeat,
- conic-gradient(#0000 30%,#E8E8E8);
- -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
- animation: tempLoading 1s infinite linear;
- }
- @keyframes tempLoading{
- 100%{transform: rotate(1turn)}
- }
- .only_canvas {
- position: absolute;
- left: -300rpx;
- top: 0;
- width: 262rpx;
- height: 262rpx;
- }
- .qrcode-section {
- margin-top: 28rpx;
- border-top: 2rpx solid #F0F0F0;
- padding-top: 60rpx;
- padding-bottom: 32rpx;
- text-align: center;
- .qrcode-wrap {
- position: relative;
- margin: 0 auto;
- border: 3rpx solid #EDEDED;
- padding: 10rpx;
- display: inline-block;
- font-size: 0;
- }
- .my_draw_canvas {
- width: 262rpx;
- height: 262rpx;
- }
- .qrcode-text {
- margin-top: 32rpx;
- padding: 0 32rpx;
- font-weight: 500;
- font-size: 28rpx;
- color: #131415;
- line-height: 40rpx;
- &.used {
- color: #AAAAAA;
- }
- }
- .qrcode-btn--section {
- display: flex;
- align-items: center;
- justify-content: center;
- padding-top: 32rpx;
- button {
- border-radius: 78rpx;
- // line-height: 68rpx;
- padding: 14rpx 30rpx;
- width: auto;
- border-radius: 68rpx;
- font-weight: 500;
- font-size: 28rpx;
- margin: 0 16rpx;
- min-width: 200rpx;
- box-sizing: border-box;
- &[disabled] {
- opacity: 0.7;
- }
- }
- .submit {
- background: linear-gradient( 270deg, #FF7B57 0%, #FF3460 100%);
- color: #FFFFFF;
- }
- .download {
- background: #FEEDF0;
- color: #FE2451;
- }
- }
- }
- .order-time {
- margin: 24rpx 26rpx 0;
- border-radius: 20rpx;
- padding: 36rpx 24rpx;
- background-color: #FFFFFF;
- .order-item {
- display: flex;
- justify-content: space-between;
- padding-bottom: 36rpx;
- &:last-child {
- padding-bottom: 0;
- }
- .title {
- font-size: 28rpx;
- color: #131415;
- line-height: 40rpx;
- }
- .value {
- font-size: 30rpx;
- color: #777777;
- line-height: 42rpx;
- display: flex;
- &.red {
- color: #FE2451;
- }
- .copy {
- font-size: 30rpx;
- color: #FE2451;
- line-height: 42rpx;
- display: flex;
- align-items: center;
- padding-left: 16rpx;
- }
- }
- }
- }
- .btn-refound {
- padding-top: 40rpx;
- text-align: center;
- font-size: 28rpx;
- color: #A7ABAF;
- line-height: 40rpx;
- }
- .order-btn {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- background-color: #FFFFFF;
- padding: 20rpx 32rpx 58rpx 40rpx;
- display: flex;
- justify-content: space-between;
- box-sizing: border-box;
- .orders {
- display: flex;
- flex-direction: column;
- margin-right: 40rpx;
- image {
- width: 48rpx;
- height: 48rpx;
- }
- text {
- font-weight: 500;
- font-size: 22rpx;
- color: #131415;
- line-height: 32rpx;
- text-align: center;
- }
- }
- .price {
- display: flex;
- align-items: center;
- .desc {
- font-weight: 500;
- font-size: 28rpx;
- color: #131415;
- line-height: 40rpx;
- }
- .currentPrice {
- font-weight: bold;
- color: #FE2451;
- font-family: DINAlternate, DINAlternate;
- .stuff {
- font-size: 32rpx;
- }
- .priceZ {
- font-size: 56rpx;
- }
- .priceF {
- font-size: 32rpx;
- }
- }
- }
- button {
- margin: 0;
- width: 100%;
- background: linear-gradient( 270deg, #FF204B 0%, #FE5B71 100%);
- border-radius: 78rpx;
- padding: 22rpx 84rpx;
- font-weight: 500;
- font-size: 32rpx;
- color: #FFFFFF;
- line-height: 44rpx;
- &[disabled][type=primary] {
- color: #fff;
- background: linear-gradient( 270deg, #FF204B 0%, #FE5B71 100%);
- opacity: 0.7;
- }
- }
- }
|