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', 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. me.setData({
  103. carList,
  104. })
  105. } else {
  106. common.simpleToast(resp.data.msg);
  107. }
  108. })
  109. },
  110. }
  111. };
  112. </script>
  113. <style lang="scss" scoped>
  114. .car-list{
  115. padding: 24rpx;
  116. }
  117. .car-list-card{
  118. width:100%;
  119. height: 596rpx;
  120. background: linear-gradient( 135deg, #DEE0E8 0%, rgba(255,255,255,0.4) 50%, #F1F3F4 100%);
  121. border-radius: 40rpx;
  122. border: 6rpx solid #FFF;
  123. position: relative;
  124. padding: 30rpx;
  125. margin-bottom: 20rpx;
  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>