合同小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

104 lines
2.6 KiB

  1. @import "../../uvue.wxss";
  2. :host{display:flex;flex-direction:column}
  3. /**
  4. * 这里是uni-app内置的常用样式变量
  5. *
  6. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  7. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  8. *
  9. */
  10. /**
  11. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  12. *
  13. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  14. */
  15. /* 颜色变量 */
  16. /* 行为相关颜色 */
  17. /* 文字基本颜色 */
  18. /* 背景颜色 */
  19. /* 边框颜色 */
  20. /* 尺寸变量 */
  21. /* 文字尺寸 */
  22. /* 图片尺寸 */
  23. /* Border Radius */
  24. /* 水平间距 */
  25. /* 垂直间距 */
  26. /* 透明度 */
  27. /* 文章场景相关 */
  28. .container.data-v-6e742b06 {
  29. padding: 20rpx;
  30. background-color: #f5f5f5;
  31. }
  32. .search-box.data-v-6e742b06 {
  33. display: flex;
  34. margin-bottom: 30rpx;
  35. }
  36. .search-box .search-input.data-v-6e742b06 {
  37. flex: 1;
  38. background: #fff;
  39. padding: 20rpx;
  40. border-radius: 8rpx;
  41. }
  42. .search-box .search-btn.data-v-6e742b06 {
  43. width: 140rpx;
  44. margin-left: 20rpx;
  45. background: #007AFF;
  46. color: white;
  47. }
  48. .filter-tabs.data-v-6e742b06 {
  49. display: flex;
  50. margin-bottom: 30rpx;
  51. }
  52. .filter-tabs .tab-item.data-v-6e742b06 {
  53. flex: 1;
  54. text-align: center;
  55. padding: 20rpx;
  56. color: #666;
  57. border-bottom: 4rpx solid transparent;
  58. }
  59. .filter-tabs .tab-item.active.data-v-6e742b06 {
  60. color: #007AFF;
  61. border-bottom-color: #007AFF;
  62. }
  63. .order-list.data-v-6e742b06 {
  64. width: 100%;
  65. height: 40%;
  66. height: calc(100vh - 300rpx);
  67. }
  68. .order-item.data-v-6e742b06 {
  69. background: white;
  70. border-radius: 12rpx;
  71. margin-bottom: 20rpx;
  72. padding: 20rpx;
  73. }
  74. .order-item .order-header.data-v-6e742b06 {
  75. display: flex;
  76. justify-content: space-between;
  77. align-items: center;
  78. padding-bottom: 20rpx;
  79. border-bottom: 1rpx solid #eee;
  80. }
  81. .order-item .order-header .order-no.data-v-6e742b06 {
  82. color: #333;
  83. font-size: 28rpx;
  84. }
  85. .order-item .order-header .copy-btn.data-v-6e742b06 {
  86. color: #007AFF;
  87. font-size: 24rpx;
  88. }
  89. .order-item .order-info.data-v-6e742b06 {
  90. padding: 20rpx 0;
  91. }
  92. .order-item .order-info text.data-v-6e742b06 {
  93. display: block;
  94. color: #666;
  95. font-size: 24rpx;
  96. line-height: 1.8;
  97. }
  98. .order-item .download-btn.data-v-6e742b06 {
  99. width: 100%;
  100. height: 100%;
  101. background-color: red;
  102. color: #333;
  103. font-size: 26rpx;
  104. margin-top: 20rpx;
  105. }