carList.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <template>
  2. <view>
  3. <navBar name="请选择设备" type="select"/>
  4. <view class="car-list">
  5. <view v-for="(item,index) of carList" :key="index" @click="clickItem(item)" :class="['car-list-card', car_info.car_sn == item.car_sn?'car-list-card-i' :'']">
  6. <view class="car-name" :class="{ 'car-name-i' : car_info.car_sn == item.car_sn}">{{item.car_name}}</view>
  7. <image v-if="car_info.car_sn == item.car_sn" class="icon" src="/static/resource/images/gyq_ly.png" mode=""></image>
  8. <!-- https://qiniu.bms16.com/Fg8_p7083jpsy8BXG4bR6yMs7jQX -->
  9. <image class="img" :src="item.model_images" mode="aspectFit"></image>
  10. <view v-if="car_info.car_sn == item.car_sn" class="select">
  11. <image class="icon1" src="/static/resource/images/gyq_select.png" mode=""></image>
  12. <text>当前选择</text>
  13. </view>
  14. </view>
  15. <!-- <view class="options">
  16. <view @click="navCarDetail" class="btn btn-left">{{ $t('租赁设备') }}</view>
  17. <view class="btn btn-right">{{ $t('绑定设备') }}</view>
  18. </view> -->
  19. <Confirm
  20. v-model="showConfirm"
  21. :dialog-info="{
  22. text: $t('是否确定'),
  23. showCancelButton: true
  24. }"
  25. @confirm="unbindSubmit"
  26. />
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. import Confirm from '@/component/comPopup/Confirm'
  32. var config = require('../../common/config.js');
  33. var app = getApp();
  34. var config = require('../../common/config.js');
  35. var common = require('../../common/common.js');
  36. var http = require('../../common/http.js');
  37. var storage = require('../../common/storage.js');
  38. export default {
  39. components: {
  40. Confirm,
  41. },
  42. data() {
  43. return {
  44. showConfirm: false,
  45. carList:[],
  46. car_sn:"",
  47. car_info:{},
  48. clickItemData:{}
  49. };
  50. }
  51. /**
  52. * 生命周期函数--监听页面加载
  53. */
  54. ,
  55. onLoad: function(options) {
  56. this.loadUserCarList()
  57. },
  58. methods: {
  59. navCarDetail(){
  60. uni.switchTab({
  61. url: '/pages/service/service'
  62. })
  63. },
  64. clickItem(item){
  65. if(item.car_sn == this.car_info.car_sn) return
  66. this.clickItemData = item
  67. // console.log(item);
  68. this.showConfirm = true
  69. // uni.setStorageSync('car_info',item)
  70. // this.car_info = item
  71. },
  72. unbindSubmit(){
  73. let car_sn = this.clickItemData.car_sn
  74. if(!car_sn) return
  75. const me = this
  76. common.loading()
  77. http.postApi(config.API_FLK_CAR_DETAIL, {car_sn}, (resp) => {
  78. uni.hideLoading();
  79. if (resp.data.code === 200) {
  80. resp.data.data.car_sn = car_sn
  81. uni.setStorageSync('car_info', resp.data.data);
  82. me.car_info = resp.data.data
  83. common.simpleToast('切换成功!')
  84. setTimeout(()=> {
  85. uni.navigateBack({
  86. delta:1
  87. })
  88. }, 900)
  89. } else {
  90. common.simpleToast(resp.data.msg);
  91. }
  92. })
  93. },
  94. loadUserCarList(){
  95. this.car_info = uni.getStorageSync('car_info') || {};
  96. const me = this
  97. common.loading()
  98. http.postApi(config.API_FLK_CAR_DEVICE_LIST, {}, (resp) => {
  99. uni.hideLoading();
  100. if (resp.data.code === 200) {
  101. const carList=resp.data.data.list
  102. resp.data.data.list.map(item=>{
  103. item.model_images = item.model_images.split(',')[0]
  104. })
  105. me.setData({
  106. carList,
  107. })
  108. } else {
  109. common.simpleToast(resp.data.msg);
  110. }
  111. })
  112. },
  113. }
  114. };
  115. </script>
  116. <style lang="scss" scoped>
  117. .car-list{
  118. padding: 24rpx;
  119. }
  120. .car-list-card{
  121. width:100%;
  122. height: 596rpx;
  123. background: linear-gradient( 135deg, #DEE0E8 0%, rgba(255,255,255,0.4) 50%, #F1F3F4 100%);
  124. border-radius: 40rpx;
  125. border: 6rpx solid #FFF;
  126. position: relative;
  127. padding: 30rpx;
  128. margin-bottom: 20rpx;
  129. .select{
  130. position: absolute;
  131. right: 0;
  132. top: 0;
  133. width: 164rpx;
  134. height: 78rpx;
  135. text-align: center;
  136. .icon1{
  137. width: 164rpx;
  138. height: 78rpx;
  139. position: absolute;
  140. left: 0;
  141. top: 0;
  142. }
  143. text{
  144. position: relative;
  145. z-index: 1;
  146. font-family: PingFangSC, PingFang SC;
  147. font-weight: 600;
  148. font-size: 28rpx;
  149. color: #FFFFFF;
  150. line-height: 28rpx;
  151. margin-top: 10rpx;
  152. display: block;
  153. }
  154. }
  155. .icon{
  156. position: absolute;
  157. width: 48rpx;
  158. height: 48rpx;
  159. left: 30rpx;
  160. top: 120rpx;
  161. }
  162. .img{
  163. width: 520rpx;
  164. height: 400rpx;
  165. display: block;
  166. margin: auto;
  167. margin-top: 40rpx;
  168. }
  169. }
  170. .car-list-card-i{
  171. background: linear-gradient( 135deg, #DEEAFF 0%, rgba(220,244,251,0.4) 50%, #DAFFF6 100%);
  172. }
  173. .car-name{
  174. font-family: PingFangSC, PingFang SC;
  175. font-weight: 600;
  176. font-size: 48rpx;
  177. color: #828DA2;
  178. width: 500rpx;
  179. text-overflow: ellipsis;
  180. overflow: hidden;
  181. white-space: nowrap;
  182. }
  183. .car-name-i{
  184. color: #060809;
  185. }
  186. .options {
  187. padding: 0 28rpx;
  188. display: flex;
  189. justify-content: space-between;
  190. margin-bottom: 44rpx;
  191. margin-top: 44rpx;
  192. .btn {
  193. width: 336rpx;
  194. height: 98rpx;
  195. border-radius: 50rpx;
  196. border: 4rpx solid #060809;
  197. font-size: 36rpx;
  198. display: flex;
  199. align-items: center;
  200. justify-content: center;
  201. }
  202. .btn-left {
  203. color: #060809;
  204. background: rgba(255, 255, 255, 0.6);
  205. margin-right: 22rpx;
  206. }
  207. .btn-right {
  208. color: #fff;
  209. background: #060809;
  210. }
  211. }
  212. </style>