adDetail.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <template>
  2. <!-- 广告服务 -->
  3. <div>
  4. <!-- 广告页面头部 -->
  5. <AdvertisingHead></AdvertisingHead>
  6. <div class="adDetail">
  7. <div class="inner">
  8. <!-- 标题 -->
  9. <h3>广告基本信息</h3>
  10. <!-- 工单头部 -->
  11. <div class="order">
  12. <div class="title">
  13. <span class="status left">已通过</span>
  14. <span class="code left">
  15. 工单编号:
  16. <span>34211345632</span>
  17. </span>
  18. <span class="createTime right">2024-09-01 13:21:23</span>
  19. </div>
  20. <!-- 工单内容 -->
  21. <div class="text">
  22. <span>开始时间:2024-11-01</span>
  23. <span>结束时间:2024-11-11</span>
  24. <span>
  25. <span class="money">243,210,900</span>
  26. </span>
  27. <button>再次申请</button>
  28. </div>
  29. </div>
  30. <div class="detail">
  31. <el-table :data="tableData" style="width: 100%">
  32. <el-table-column prop="图片信息" label="图片信息">
  33. <template #default="scope">
  34. <div class="content">
  35. <img src="" alt="" class="left">
  36. <div class="left">
  37. <!-- <h5>{{ scope.row.date?.title }}</h5> -->
  38. <h5>一号广告位</h5>
  39. <p>习近平关于“三农”工作的 重要概述</p>
  40. </div>
  41. </div>
  42. </template>
  43. </el-table-column>
  44. <el-table-column prop="网址" label="网址" width="200px" align="center" />
  45. <el-table-column prop="天数" label="天数" width="200px" align="center" />
  46. <el-table-column prop="审核状态" label="审核状态" width="200px" align="center" />
  47. <el-table-column prop="广告状态" label="广告状态" width="200px" align="center" />
  48. </el-table>
  49. </div>
  50. <div class="pagination">
  51. <HomePagination></HomePagination>
  52. </div>
  53. </div>
  54. </div>
  55. <!-- 广告页面底部 -->
  56. <AdvertisingFoot></AdvertisingFoot>
  57. </div>
  58. </template>
  59. <script lang="ts" setup>
  60. import { ElTable, ElTableColumn } from 'element-plus'
  61. const tableData = [
  62. {
  63. 图片信息: {
  64. img: "",
  65. title: "一号广告位",
  66. desc: "习近平关于“三农”工作的 重要概述"
  67. },
  68. 网址: '三农资讯网',
  69. 天数: '11天',
  70. 审核状态: '已通过',
  71. 广告状态: '已失效',
  72. },
  73. {
  74. 图片信息: {
  75. img: "",
  76. title: "一号广告位",
  77. desc: "习近平关于“三农”工作的 重要概述"
  78. },
  79. 网址: '三农资讯网',
  80. 天数: '11天',
  81. 审核状态: '已通过',
  82. 广告状态: '已失效',
  83. },
  84. {
  85. 图片信息: {
  86. img: "",
  87. title: "一号广告位",
  88. desc: "习近平关于“三农”工作的 重要概述"
  89. },
  90. 网址: '三农资讯网',
  91. 天数: '11天',
  92. 审核状态: '已通过',
  93. 广告状态: '已失效',
  94. },
  95. {
  96. 图片信息: {
  97. img: "",
  98. title: "一号广告位",
  99. desc: "习近平关于“三农”工作的 重要概述"
  100. },
  101. 网址: '三农资讯网',
  102. 天数: '11天',
  103. 审核状态: '已通过',
  104. 广告状态: '已失效',
  105. },
  106. ]
  107. </script>
  108. <style lang="less" scoped>
  109. .adDetail {
  110. width: 100%;
  111. overflow: hidden;
  112. .inner {
  113. width: 1200px;
  114. // height: 900px;
  115. overflow: hidden;
  116. h3 {
  117. font-family: Microsoft YaHei, Microsoft YaHei;
  118. font-weight: 400;
  119. font-size: 20px;
  120. color: #333333;
  121. margin: 40px 0;
  122. }
  123. .order {
  124. width: 1200px;
  125. height: 160px;
  126. border: 1px solid #e1e1e1;
  127. .title {
  128. height: 60px;
  129. line-height: 30px;
  130. border-bottom: 1px solid #e1e1e1;
  131. padding: 15px 24px 15px 50px;
  132. box-sizing: border-box;
  133. background-color: #fafafa;
  134. >span {
  135. display: inline-block;
  136. text-align: center;
  137. font-family: Microsoft YaHei, Microsoft YaHei;
  138. }
  139. .status {
  140. width: 70px;
  141. height: 32px;
  142. line-height: 32px;
  143. margin-right: 50px;
  144. background: #d5ecd2;
  145. color: #33B023;
  146. font-weight: 400;
  147. font-size: 16px;
  148. }
  149. .code {
  150. font-weight: 400;
  151. font-size: 16px;
  152. color: #333333;
  153. }
  154. .createTime {
  155. font-weight: bold;
  156. font-size: 16px;
  157. color: #333333;
  158. }
  159. }
  160. .text {
  161. padding: 33px 70px 33px 50px;
  162. span {
  163. font-weight: 400;
  164. font-size: 16px;
  165. color: #333333;
  166. .money {
  167. font-weight: bold;
  168. font-size: 24px;
  169. color: #028E21;
  170. padding-right: 10px;
  171. }
  172. }
  173. >span:first-child {
  174. padding-right: 80px;
  175. }
  176. >span:nth-child(2) {
  177. padding-right: 223px;
  178. }
  179. >span:nth-child(3) {
  180. padding-right: 183px;
  181. }
  182. button {
  183. width: 82px;
  184. height: 34px;
  185. font-size: 13px;
  186. background: #33B023;
  187. color: #fff;
  188. border: none;
  189. border-radius: 4px;
  190. }
  191. }
  192. }
  193. .detail {
  194. width: 1200px;
  195. overflow: hidden;
  196. border-right: 1px solid #e1e1e1;
  197. border-left: 1px solid #e1e1e1;
  198. .content {
  199. width: 400px;
  200. img {
  201. width: 150px;
  202. height: 95px;
  203. margin: 40px 20px;
  204. }
  205. >div.left {
  206. margin-top: 40px;
  207. width: 170px;
  208. font-family: Microsoft YaHei, Microsoft YaHei;
  209. font-weight: 400;
  210. font-size: 16px;
  211. color: #333333;
  212. h5 {
  213. margin-bottom: 20px;
  214. font-weight: 400;
  215. font-size: 16px;
  216. }
  217. }
  218. }
  219. }
  220. .pagination {
  221. margin-top: 60px;
  222. margin-bottom: 90px;
  223. }
  224. }
  225. }
  226. </style>