autumn202409.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  1. <template>
  2. <view class="all">
  3. <ujp-navbar title="金秋满减活动" ></ujp-navbar>
  4. <view class="InviteFriends" >
  5. <view class="text imgHead">
  6. <img src="@/assets/img/temporary/autumn202409-01.png"></img>
  7. </view>
  8. <view class="main">
  9. <view class="suited">
  10. <p class="title">活动时间 :</p>
  11. <view class="content">
  12. 2024年9月1日至9月30日
  13. </view>
  14. <p class="title">活动说明 :</p>
  15. <view class="content">
  16. 凡是在活动期间内,在<span>指定场站</span>充电的平台会员可享受充电服务费8.5折优惠,
  17. <span>快充且充电量达30度(含)以上可享受充电服务费6.5折-7.5折</span>(电费、停车费及占桩费据实结算)。
  18. </view>
  19. <p class="title">活动场站:</p>
  20. <view class="content">
  21. 以下{{list.length}}个场站均可享受本次活动
  22. </view>
  23. <view class="contentList">
  24. <view class="item" v-for="(item,i) in list" :key="i" @click="gotoStation(item.id)" >
  25. <view class="item1" >
  26. <view class="itemName">{{item.name}}</view>
  27. <view class="itemId">
  28. <img src="@/assets/img/temporary/autumn202409-02.png"></img>
  29. 点击查看场站信息
  30. </view>
  31. </view>
  32. <view class="item2" >
  33. {{discountRatio10(item.num)}}<span>折</span>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="remarks">
  38. 注:本活动以充电开始时间为准。<br/>
  39. 本次活动最终解释权归湖北鹏育优电新能源科技有限公司所有
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. export default {
  48. components: {
  49. },
  50. data() {
  51. return {
  52. list:[
  53. {
  54. id:"3865b3a3-13fd-461a-8145-ee9711df35a2",
  55. name:"荆鹏软件园充电站",
  56. num:65,
  57. },
  58. {
  59. id:"3c554cea-f522-4281-b582-d761510ed91e",
  60. name:"青少年宫充电站",
  61. num:75,
  62. },
  63. {
  64. id:"ef59b220-965f-4e9a-a087-4b52bbbcfb7f",
  65. name:"荆州院子充电站",
  66. num:75,
  67. },
  68. {
  69. id:"8ab96b30-8102-476e-b166-78dc930838c2",
  70. name:"御河社区充电站",
  71. num:75,
  72. },
  73. {
  74. id:"5e71de75-d30e-4db3-9b3e-1fb2587d8f42",
  75. name:"联合街道充电站",
  76. num:75,
  77. }
  78. ]
  79. }
  80. },
  81. onLoad(op) {
  82. },
  83. onReady() {
  84. },
  85. onShow() {
  86. },
  87. methods: {
  88. gotoStation(id){
  89. uni.navigateTo({
  90. url:"/pages/searchPile/stationAndPile/stationDetails?id="+id
  91. })
  92. }
  93. }
  94. }
  95. </script>
  96. <style>
  97. page {
  98. background: #f3a33a;
  99. }
  100. </style>
  101. <style lang="scss" scoped>
  102. @import "@/_theme.scss";
  103. .all {
  104. @include themeify {
  105. font-size: themed('font-size1');
  106. }
  107. }
  108. .imgHead {
  109. img {
  110. width: 100%;
  111. }
  112. }
  113. // .imgHead {
  114. // padding-top: 72rpx;
  115. // display: flex;
  116. // flex-direction: column;
  117. // align-items: center;
  118. // .imgHead1 {
  119. // img {
  120. // height: 24px;
  121. // }
  122. // display: flex;
  123. // justify-content: center;
  124. // align-items: center;
  125. // }
  126. // .imgHead2 {
  127. // display: flex;
  128. // img {
  129. // width: 100%;
  130. // height: 40px;
  131. // }
  132. // margin-top: 16px;
  133. // }
  134. // }
  135. .contentList{
  136. .item{
  137. border: 1px solid rgba(232, 229, 225, 1);
  138. border-radius: 8px;
  139. display: flex;
  140. align-items: center;
  141. justify-content: space-between;
  142. margin-bottom: 16rpx;
  143. padding: 16rpx 24rpx;
  144. .item1{
  145. .itemName{
  146. font-weight: bold;
  147. color: rgba(16, 16, 16, 1);
  148. font-size: 36rpx;
  149. }
  150. .itemId{
  151. color: #96A2B4 ;
  152. font-size: 24rpx;
  153. display: flex;
  154. align-items: center;
  155. margin-top: 3px;
  156. img{
  157. width: 32rpx;
  158. height: 32rpx;
  159. margin-right: 2px;
  160. }
  161. }
  162. }
  163. .item2{
  164. color: #FF6B00 ;
  165. font-size: 72rpx;
  166. font-weight: bold;
  167. span{
  168. font-weight: 400;
  169. font-size: 28rpx;
  170. margin-left: 2px;
  171. }
  172. }
  173. }
  174. }
  175. .main {
  176. position: relative;
  177. top: -200rpx;
  178. padding: 22rpx 24rpx 10rpx;
  179. .text {
  180. color: rgba(255, 255, 255, 100);
  181. /* font-size: 18px;*/
  182. text-align: justify;
  183. text-indent: 36px;
  184. }
  185. .suited {
  186. background-color: #fff;
  187. //background: linear-gradient(180deg, rgba(189,255,224,1) 0%,rgba(255,255,255,1) 14%);
  188. // background: linear-gradient(180deg, rgba(255, 224, 223, 1) 0%, rgba(255, 255, 255, 1) 14%);
  189. //background: linear-gradient(180deg, rgba(214,226,255,1) 0%,rgba(255,255,255,1) 14%);
  190. margin-top: 40rpx;
  191. padding: 40rpx 32rpx;
  192. border-radius: 20px;
  193. .title {
  194. /*height: 18px;*/
  195. color: rgba(16, 16, 16, 100);
  196. font-size: 32rpx;
  197. font-weight: 600;
  198. }
  199. .remarks{
  200. color: rgba(188, 188, 188, 1);
  201. font-size: 22rpx;
  202. margin-top: 40rpx;
  203. }
  204. .content {
  205. margin: 16rpx 0 40rpx ;
  206. //font-weight: 550;
  207. color: #333333 ;
  208. font-size: 28rpx;
  209. span{
  210. color: #ec4f27;
  211. }
  212. p {
  213. margin: 8rpx 0;
  214. }
  215. }
  216. }
  217. .application-table {
  218. .nezhaImgView{
  219. text-align: center;
  220. margin-bottom: 24rpx;
  221. img{
  222. width: 100%;
  223. }
  224. }
  225. background-color: #fff;
  226. border-radius: 16px;
  227. margin-top: 24px;
  228. padding: 24rpx 36rpx;
  229. padding-top:8px;
  230. }
  231. .application-form {
  232. //background: linear-gradient(180deg, rgba(214,226,255,1) 0%,rgba(255,255,255,1) 14%);
  233. color:#333333;
  234. background-color: #fff;
  235. border-radius: 16px;
  236. margin-top: 24px;
  237. padding: 24px;
  238. .titlespan{
  239. font-weight: bold;
  240. color: rgba(16, 16, 16, 1);
  241. }
  242. .title{
  243. color: rgba(16, 16, 16, 1);
  244. font-size: 36rpx;
  245. font-weight: bold;
  246. margin-bottom: 24rpx
  247. }
  248. .u-input {
  249. border-radius: 50px;
  250. background-color: rgba(232, 236, 234, 100);
  251. margin-top: 12px;
  252. }
  253. ::v-deep.uni-input-input {
  254. margin: 20px;
  255. }
  256. ::v-deep.u-input__right-icon {
  257. margin-right: 10px;
  258. }
  259. p {
  260. font-size: 18px;
  261. @include themeify {
  262. line-height: themed('font-size4');
  263. height: themed('font-size4');
  264. }
  265. /* height: 18px;
  266. line-height: 18px;*/
  267. color: rgba(16, 16, 16, 100);
  268. /* font-size: 18px;*/
  269. }
  270. .tel,
  271. .place,
  272. .type,
  273. .want {
  274. //margin-top: 24px;
  275. }
  276. .textarea {
  277. width: 72.2vw;
  278. height: 140px;
  279. border-radius: 22px;
  280. background-color: rgba(232, 236, 234, 100);
  281. margin-top: 12px;
  282. overflow-y: scroll;
  283. @include themeify {
  284. font-size: themed('font-size2');
  285. line-height: themed('font-size2');
  286. }
  287. .uni-textarea-placeholder {
  288. padding: 12px 20px;
  289. @include themeify {
  290. font-size: themed('font-size2');
  291. line-height: themed('font-size2');
  292. }
  293. }
  294. ::v-deep.uni-textarea-textarea {
  295. width: 90%;
  296. padding: 10px 20px;
  297. }
  298. ::v-deep.u-input__right-icon {
  299. display: none;
  300. }
  301. }
  302. }
  303. .type {
  304. .checkbox {
  305. margin-top: 12px;
  306. ::v-deep.u-checkbox {
  307. width: 50% !important;
  308. margin-top: 4px;
  309. }
  310. }
  311. }
  312. .want {
  313. ::v-deep.u-checkbox {
  314. margin-top: 8px;
  315. }
  316. }
  317. .hint {
  318. margin-top: 12px;
  319. @include themeify {
  320. font-size: themed('font-size2');
  321. line-height: themed('font-size5');
  322. }
  323. /*
  324. font-size: 14px;
  325. line-height: 20px;
  326. */
  327. text-align: center;
  328. .tel-num {
  329. color: #9FC7FF;
  330. }
  331. }
  332. ::v-deep.u-btn {
  333. border-radius: 50px;
  334. margin-top: 40rpx;
  335. }
  336. }
  337. .InviteFriends {
  338. //background-image: linear-gradient(0deg, #a2e9c9, #01b963);
  339. background: #f3a33a;
  340. }
  341. .opacityClass {
  342. opacity: 0.2;
  343. }
  344. // 底部
  345. .bottomView {
  346. border-radius: 50px;
  347. color: rgba(0, 185, 98, 100);
  348. // width: 100%;
  349. // height: 64px;
  350. // text-align: center;
  351. // background-color: #fff;
  352. .button {
  353. //width: 90%;
  354. border-radius: 50px;
  355. // background-color: #fff;
  356. color: #fff;
  357. font-size: 16px;
  358. background: linear-gradient(90deg, rgba(255, 98, 0, 1) 0%, rgba(255, 150, 0, 1) 100%);
  359. //border: 1px solid rgba(0, 163, 86, 1);
  360. }
  361. // button::after {
  362. // border: rgba(0, 185, 98, 100);
  363. // }
  364. }
  365. .carAuth {
  366. border-radius: 12px;
  367. background-color: rgba(255, 255, 255, 1);
  368. border: 2px dashed rgba(187, 187, 187, 1);
  369. //height: 400rpx;
  370. width: 100%;
  371. overflow: hidden;
  372. text-align: center;
  373. .carAuthImg {
  374. margin-top: 10px;
  375. margin-bottom: 10px;
  376. width: 510rpx;
  377. height: 360rpx;
  378. }
  379. .carAuthIcon {
  380. position: absolute;
  381. background: #6e7175;
  382. width: 44px;
  383. height: 44px;
  384. border-radius: 50px;
  385. /* left: 200px; */
  386. /* top: 200px; */
  387. margin: 160rpx 230rpx;
  388. z-index: 99;
  389. display: flex;
  390. justify-content: center;
  391. }
  392. }
  393. // .car-type{
  394. // display: flex;
  395. // flex-direction: row;
  396. // margin: 0 40rpx;
  397. // flex-wrap: wrap;
  398. // }
  399. .want {
  400. .wantView {
  401. display: flex;
  402. }
  403. button {
  404. width: 45%;
  405. color: rgba(51, 51, 51, 1);
  406. background-color: rgba(232, 236, 234, 1);
  407. }
  408. button::after {
  409. border: none;
  410. }
  411. .wantBtn {
  412. background-color: #fff;
  413. border: 2px solid #00B962;
  414. }
  415. .wanttpis {
  416. position: relative;
  417. top: -100rpx;
  418. left: 180rpx;
  419. z-index: 99;
  420. background: #00B962;
  421. padding: 2px 3px;
  422. font-size: 10px;
  423. color: #fff;
  424. border-radius: 4px;
  425. }
  426. }
  427. .carTempBlInput {
  428. display: flex;
  429. align-items: center;
  430. font-size: 16px;
  431. min-height: 44px;
  432. padding: 4px 16px;
  433. border-radius: 20px;
  434. background: #e9ecea;
  435. color: #808080
  436. }
  437. .table {
  438. table {
  439. color:#010101 ;
  440. border-spacing:0;
  441. font-size: 32rpx;
  442. .th {
  443. background-color: #f2efef;
  444. text-align: center;
  445. color: #101010;
  446. font-weight: bold;
  447. td{
  448. border: 1px solid #dbdbdb;
  449. padding: 12rpx 0;
  450. height: 96rpx;
  451. }
  452. }
  453. .td1 {
  454. text-align: start;
  455. // background-color: rgba(243, 245, 247, 1);
  456. width: 132rpx;
  457. text-align: center;
  458. border-left: 1px solid #dbdbdb;
  459. border-right: 1px solid #dbdbdb;
  460. }
  461. .td3 {
  462. text-align: start;
  463. //background-color: rgba(243, 245, 247, 1);
  464. //width: 100rpx;
  465. border-left: 1px solid #dbdbdb;
  466. border-right: 1px solid #dbdbdb;
  467. }
  468. td {
  469. //text-align: center;
  470. border-bottom: 1px solid #dbdbdb;
  471. //width: 160rpx;
  472. }
  473. }
  474. }
  475. </style>