carList.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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" :class="{ 'car-list-card-i' : car_info.car_sn == item.car_sn}">
  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. // const me=this
  61. // uni.navigateTo({
  62. // url: '/pages/carDetail/carDetail'
  63. // })
  64. },
  65. clickItem(item){
  66. if(item.car_sn == this.car_info.car_sn) return
  67. this.clickItemData = item
  68. // console.log(item);
  69. this.showConfirm = true
  70. // uni.setStorageSync('car_info',item)
  71. // this.car_info = item
  72. },
  73. unbindSubmit(){
  74. let car_sn = this.clickItemData.car_sn
  75. if(!car_sn) return
  76. const me = this
  77. common.loading()
  78. http.postApi(config.API_FLK_CAR_DETAIL, {car_sn}, (resp) => {
  79. uni.hideLoading();
  80. if (resp.data.code === 200) {
  81. resp.data.data.car_sn = car_sn
  82. uni.setStorageSync('car_info', resp.data.data);
  83. me.car_info = resp.data.data
  84. common.simpleToast('切换成功!')
  85. setTimeout(()=> {
  86. uni.navigateBack({
  87. delta:1
  88. })
  89. }, 900)
  90. } else {
  91. common.simpleToast(resp.data.msg);
  92. }
  93. })
  94. },
  95. loadUserCarList(){
  96. this.car_info = uni.getStorageSync('car_info') || {};
  97. const me = this
  98. common.loading()
  99. http.postApi(config.API_FLK_CAR_DEVICE_LIST, {}, (resp) => {
  100. uni.hideLoading();
  101. if (resp.data.code === 200) {
  102. const carList=resp.data.data.list
  103. me.setData({
  104. carList,
  105. })
  106. } else {
  107. common.simpleToast(resp.data.msg);
  108. }
  109. })
  110. },
  111. }
  112. };
  113. </script>
  114. <style lang="scss" scoped>
  115. .car-list{
  116. padding: 24rpx;
  117. }
  118. .car-list-card{
  119. width:100%;
  120. height: 596rpx;
  121. background: linear-gradient( 135deg, #DEE0E8 0%, rgba(255,255,255,0.4) 50%, #F1F3F4 100%);
  122. border-radius: 40rpx;
  123. border: 6rpx solid #FFF;
  124. position: relative;
  125. padding: 30rpx;
  126. .select{
  127. position: absolute;
  128. right: 0;
  129. top: 0;
  130. width: 164rpx;
  131. height: 78rpx;
  132. text-align: center;
  133. .icon1{
  134. width: 164rpx;
  135. height: 78rpx;
  136. position: absolute;
  137. left: 0;
  138. top: 0;
  139. }
  140. text{
  141. position: relative;
  142. z-index: 1;
  143. font-family: PingFangSC, PingFang SC;
  144. font-weight: 600;
  145. font-size: 28rpx;
  146. color: #FFFFFF;
  147. line-height: 28rpx;
  148. margin-top: 10rpx;
  149. display: block;
  150. }
  151. }
  152. .icon{
  153. position: absolute;
  154. width: 48rpx;
  155. height: 48rpx;
  156. left: 30rpx;
  157. top: 120rpx;
  158. }
  159. .img{
  160. width: 520rpx;
  161. height: 400rpx;
  162. display: block;
  163. margin: auto;
  164. margin-top: 40rpx;
  165. }
  166. }
  167. .car-list-card-i{
  168. background: linear-gradient( 135deg, #DEEAFF 0%, rgba(220,244,251,0.4) 50%, #DAFFF6 100%);
  169. }
  170. .car-name{
  171. font-family: PingFangSC, PingFang SC;
  172. font-weight: 600;
  173. font-size: 48rpx;
  174. color: #828DA2;
  175. width: 500rpx;
  176. text-overflow: ellipsis;
  177. overflow: hidden;
  178. white-space: nowrap;
  179. }
  180. .car-name-i{
  181. color: #060809;
  182. }
  183. .options {
  184. padding: 0 28rpx;
  185. display: flex;
  186. justify-content: space-between;
  187. margin-bottom: 44rpx;
  188. margin-top: 44rpx;
  189. .btn {
  190. width: 336rpx;
  191. height: 98rpx;
  192. border-radius: 50rpx;
  193. border: 4rpx solid #060809;
  194. font-size: 36rpx;
  195. display: flex;
  196. align-items: center;
  197. justify-content: center;
  198. }
  199. .btn-left {
  200. color: #060809;
  201. background: rgba(255, 255, 255, 0.6);
  202. margin-right: 22rpx;
  203. }
  204. .btn-right {
  205. color: #fff;
  206. background: #060809;
  207. }
  208. }
  209. </style>