order.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. <template>
  2. <view class="container">
  3. <view class="header-box">
  4. <view class="search-box">
  5. <u-search
  6. v-model="searchForm.keyword"
  7. :clearabled="true"
  8. bg-color="#E5E5E5"
  9. :input-style="searchInputStyle"
  10. placeholder="搜索您想要的内容"
  11. ></u-search>
  12. </view>
  13. <view class="tab-box">
  14. <u-tabs
  15. name="label"
  16. :list="searchType"
  17. :is-scroll="true"
  18. v-model="searchForm.type"
  19. @change="onSearchTypeChange"
  20. font-size="24"
  21. :bold="false"
  22. inactive-color="#000000"
  23. active-color="#000000"
  24. :bar-style="{'background-color': '#2979ff'}"
  25. :gutter="25"
  26. height="45"
  27. ></u-tabs>
  28. </view>
  29. </view>
  30. <view class="list-box">
  31. <view class="list-item-box" v-for="item in list" :key="item.id">
  32. <view class="title-box">
  33. {{item.title}}
  34. </view>
  35. <view class="main-box">
  36. <view class="info-box">
  37. <view class="info-item-box">
  38. <view class="label">
  39. 订单编号:
  40. </view>
  41. <view class="text">
  42. {{item.number}}
  43. </view>
  44. </view>
  45. <view class="info-item-box">
  46. <view class="label">
  47. 订单时间:
  48. </view>
  49. <view class="text">
  50. {{item.time}}
  51. </view>
  52. </view>
  53. </view>
  54. <view class="price-box">
  55. <view class="text" v-if="item.status === 1">
  56. 实付款:&nbsp;¥{{item.price}}元
  57. </view>
  58. <view class="button" v-if="item.status === 0">
  59. 已关闭
  60. </view>
  61. </view>
  62. </view>
  63. </view>
  64. </view>
  65. <view class="buttom-block"></view>
  66. <view class="bottom-box">
  67. <view class="button" @click="onToInvoiceApplication">
  68. 发票申请
  69. </view>
  70. </view>
  71. </view>
  72. </template>
  73. <script setup>
  74. import { ref } from 'vue'
  75. import { onLoad } from '@dcloudio/uni-app'
  76. const searchInputStyle = {
  77. backgroundColor: '#E5E5E5'
  78. }
  79. const searchType = [
  80. {
  81. label: '全部',
  82. value: 0
  83. },
  84. {
  85. label: '市场研究',
  86. value: 1
  87. },
  88. {
  89. label: '继续教育',
  90. value: 2
  91. },
  92. {
  93. label: '会费',
  94. value: 3
  95. },
  96. {
  97. label: '业务水平认证考试',
  98. value: 4
  99. },
  100. ]
  101. const searchForm = ref({
  102. keyword: '',
  103. type: 0
  104. })
  105. function onSearchTypeChange(val) {
  106. console.log('搜索表单', searchForm.value)
  107. }
  108. const list = ref([
  109. {
  110. id: '01',
  111. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  112. number: '123456789987654321',
  113. time: '2023年8月8日',
  114. price: '9.9',
  115. status: 1
  116. },
  117. {
  118. id: '02',
  119. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  120. number: '123456789987654321',
  121. time: '2023年8月8日',
  122. price: '9.9',
  123. status: 0
  124. },
  125. {
  126. id: '03',
  127. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  128. number: '123456789987654321',
  129. time: '2023年8月8日',
  130. price: '9.9',
  131. status: 1
  132. },
  133. {
  134. id: '04',
  135. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  136. number: '123456789987654321',
  137. time: '2023年8月8日',
  138. price: '9.9',
  139. status: 1
  140. },
  141. {
  142. id: '05',
  143. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  144. number: '123456789987654321',
  145. time: '2023年8月8日',
  146. price: '9.9',
  147. status: 1
  148. },
  149. {
  150. id: '06',
  151. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  152. number: '123456789987654321',
  153. time: '2023年8月8日',
  154. price: '9.9',
  155. status: 1
  156. },
  157. {
  158. id: '07',
  159. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  160. number: '123456789987654321',
  161. time: '2023年8月8日',
  162. price: '9.9',
  163. status: 1
  164. },
  165. {
  166. id: '08',
  167. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  168. number: '123456789987654321',
  169. time: '2023年8月8日',
  170. price: '9.9',
  171. status: 1
  172. },
  173. {
  174. id: '09',
  175. title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
  176. number: '123456789987654321',
  177. time: '2023年8月8日',
  178. price: '9.9',
  179. status: 1
  180. },
  181. {
  182. id: '10',
  183. title: '【市场研究】2024年10月广州市中介促成二手住宅市场交易简报',
  184. number: '123456789987654321',
  185. time: '2023年8月8日',
  186. price: '9.9',
  187. status: 1
  188. },
  189. ])
  190. // 前往发票申请
  191. function onToInvoiceApplication() {
  192. uni.navigateTo({
  193. url: '/pages/InvoiceApplication/InvoiceApplication'
  194. })
  195. }
  196. onLoad(() => {
  197. })
  198. </script>
  199. <style lang="scss" scoped>
  200. .container {
  201. height: 100vh;
  202. width: 100vw;
  203. background-color: $uni-text-color-inverse;
  204. .header-box {
  205. padding: 0 20rpx;
  206. background-color: $uni-text-color-inverse;
  207. @include topMagnet();
  208. }
  209. .search-box {
  210. margin-bottom: 20rpx;
  211. ::v-deep(.u-search) {
  212. background-color: #e5e5e5;
  213. border-radius: 50rpx;
  214. .u-action {
  215. width: 18%;
  216. background-color: $uni-color-primary;
  217. border-radius: 50rpx;
  218. color: $uni-text-color-inverse;
  219. margin-right: 8rpx;
  220. font-size: 28rpx;
  221. line-height: 50rpx;
  222. letter-spacing: 3rpx;
  223. text-align: center;
  224. }
  225. }
  226. }
  227. .list-box {
  228. padding: 0 20rpx;
  229. .list-item-box {
  230. padding: 20rpx;
  231. border-bottom: 5rpx solid #E6E6E6;
  232. &:active {
  233. background-color: $uni-bg-color-hover;
  234. }
  235. .title-box {
  236. font-size: $uni-title-font-size-3;
  237. font-weight: bold;
  238. margin-bottom: 20rpx;
  239. @include text-overflow()
  240. }
  241. .main-box {
  242. display: flex;
  243. justify-content: space-between;
  244. padding-left: 20rpx;
  245. .info-box {
  246. width: 50%;
  247. .info-item-box {
  248. display: flex;
  249. font-size: $uni-font-size-3;
  250. color: $uni-text-color-grey;
  251. line-height: 30rpx;
  252. .label {
  253. width: 80rpx;
  254. }
  255. }
  256. }
  257. .price-box {
  258. display: flex;
  259. align-items: flex-end;
  260. text-align: right;
  261. color: $uni-color-error;
  262. font-size: $uni-title-font-size-3;
  263. font-weight: bold;
  264. .button {
  265. background-color: #CCCCCC;
  266. color: $uni-text-color-inverse;
  267. padding: 6rpx 25rpx;
  268. border-radius: $uni-card-border-radius;
  269. }
  270. }
  271. }
  272. }
  273. }
  274. .buttom-block {
  275. height: 100rpx;
  276. }
  277. .bottom-box {
  278. text-align: center;
  279. font-size: $uni-title-font-size-2;
  280. background-color: $uni-bg-color-grey;
  281. position: fixed;
  282. bottom: 0;
  283. width: 100%;
  284. .button {
  285. width: 100%;
  286. height: 100rpx;
  287. line-height: 100rpx;
  288. color: $uni-color-primary;
  289. letter-spacing: 2rpx;
  290. border: 1rpx solid #E9E9E9;
  291. &:active {
  292. background-color: $uni-bg-color-hover;
  293. }
  294. }
  295. }
  296. }
  297. </style>