cailist.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <template>
  2. <view class="box">
  3. <view class="carlistBox">
  4. <view class="line" v-for="(item,index) in carList" @click="itemClick(item)">
  5. <view class="lineCont" >
  6. <view>
  7. <image :src="item.brandLogo" mode="widthFix" class="brandLogo"></image>
  8. </view>
  9. <view style="padding-left: 29rpx;">
  10. <view class="carName">
  11. <span>{{item.brand}} {{item.series}}</span>
  12. <view class="plateNumber">{{item.plateNumber}}</view>
  13. </view>
  14. <view class="carMS">{{item.carModel}}</view>
  15. </view>
  16. </view>
  17. <view class="lineBottom">
  18. <view class="lineDel" @click.stop="delCar(item.id)">删除</view>
  19. <view class="lineDel" @click.stop="editCar(item.id)">编辑</view>
  20. <view class="Default" v-show="item.isDefault!=1" @click.stop="defaultCar(item)">设为默认</view>
  21. <view class="DefaultYES" v-show="item.isDefault==1">已设为默认</view>
  22. </view>
  23. <view class="DefaultIcon" v-show="item.isDefault==1" >默认</view>
  24. </view>
  25. </view>
  26. <view v-if="carList==''&&loding" class="nodataBox">
  27. <image src="../../static/img/nodata.png" mode="widthFix" class="nodataImg"></image>
  28. <view class="noTxt">暂无数据</view>
  29. </view>
  30. <view class="addBtn" @click="addBtn">添加爱车</view>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. data() {
  36. return {
  37. carList:'',
  38. loding:false,
  39. type:'',
  40. carId:'',
  41. }
  42. },
  43. onLoad(opt) {
  44. this.$common.isUserId()
  45. this.type=opt.type;
  46. // console.log(this.type)
  47. },
  48. onShow() {
  49. this.getqueryMyBMemberCar();
  50. this.carId=uni.getStorageSync("maintainCarData").id
  51. },
  52. methods: {
  53. getqueryMyBMemberCar(){
  54. uni.showLoading({ });
  55. this.loding=false;
  56. this.$http('worldKeepCar/worldHome/queryMyTMemberCar', {
  57. },'GET').then(res => {
  58. uni.hideLoading();
  59. this.carList=res.data;
  60. this.loding=true;
  61. })
  62. },
  63. addBtn(){
  64. var length=this.carList.length
  65. if(length>4){
  66. uni.showToast({
  67. title: '库最多放五辆车,如果想添加,请先删除',
  68. icon:'none',
  69. duration: 3000
  70. });
  71. }else{
  72. uni.navigateTo({
  73. url:'addCar'
  74. })
  75. }
  76. },
  77. editCar(id){
  78. uni.navigateTo({
  79. url:'addCar?id='+id + '&isEditCar=1'
  80. })
  81. },
  82. delCar(id){
  83. var that=this;
  84. uni.showModal({
  85. title: '提示',
  86. content: '确定要删除车辆吗',
  87. success: function (res) {
  88. if (res.confirm) {
  89. uni.showLoading({ });
  90. that.$http('worldKeepCar/worldHome/deleteTMemberCar', {
  91. id:id
  92. },'POST').then(res => {
  93. uni.hideLoading();
  94. if(res.code==0){
  95. if(that.carId==id){
  96. uni.removeStorageSync('maintainCarData');
  97. }
  98. }
  99. that.getqueryMyBMemberCar()
  100. })
  101. } else if (res.cancel) {
  102. }
  103. }
  104. });
  105. },
  106. defaultCar(item){
  107. var that=this;
  108. uni.showLoading({ });
  109. that.$http('worldKeepCar/worldHome/updateTCarIsdefault', {
  110. id:item.id
  111. },'POST').then(res => {
  112. uni.hideLoading();
  113. if(res.code==0){
  114. uni.showToast({
  115. title: '操作成功',
  116. icon:'none',
  117. duration: 3000
  118. });
  119. }else{
  120. uni.showToast({
  121. title: res.msg,
  122. icon:'none',
  123. duration: 3000
  124. });
  125. }
  126. that.getqueryMyBMemberCar()
  127. })
  128. },
  129. itemClick(item){
  130. uni.setStorage({
  131. key: 'maintainCarData',
  132. data: item,
  133. success: function () {
  134. uni.navigateBack({
  135. delta:1
  136. })
  137. }
  138. });
  139. }
  140. }
  141. }
  142. </script>
  143. <style scoped>
  144. .box{
  145. min-height: 100vh;
  146. background:#F4F5F7 ;
  147. }
  148. .nodataImg{
  149. width: 400rpx;
  150. padding-top: 100rpx;
  151. }
  152. .noTxt{
  153. font-size: 36rpx;
  154. color: #999999;
  155. padding-top: 50rpx;
  156. }
  157. .nodataBox{
  158. text-align: center;
  159. }
  160. .addBtn{
  161. width: 690rpx;
  162. height: 74rpx;
  163. background: linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  164. border-radius: 37rpx;
  165. line-height: 74rpx;
  166. text-align: center;
  167. color: #FFFFFF;
  168. font-size: 30rpx;
  169. position: fixed;
  170. bottom: 23rpx;
  171. left: 30rpx;
  172. }
  173. .carlistBox{
  174. padding-bottom: 120rpx;
  175. }
  176. .carlistBox{
  177. padding: 24rpx;
  178. padding-bottom: 120rpx;
  179. }
  180. .brandLogo{
  181. width: 63rpx;
  182. }
  183. .line{
  184. background: #FFFFFF;
  185. padding: 27rpx 20rpx;
  186. border-radius: 10rpx;
  187. margin-bottom: 20rpx;
  188. position: relative;
  189. }
  190. .lineCont{
  191. display: flex;
  192. }
  193. .carName{
  194. color: #3C3C3C;font-size: 30rpx;display: flex;
  195. }
  196. .plateNumber{
  197. border-radius: 4px;
  198. border: 1px solid #F19D01;
  199. height: 32rpx;
  200. line-height: 32rpx;
  201. padding: 0 10rpx;color: #F19D01;
  202. font-size: 22rpx;
  203. margin-left: 20rpx;
  204. margin-top: 5rpx;
  205. }
  206. .carMS{
  207. color: #666666;
  208. font-size: 26rpx;
  209. padding-top: 5px;
  210. }
  211. .lineBottom{
  212. display: flex;
  213. justify-content: flex-end;
  214. padding-top: 20rpx;
  215. }
  216. .lineDel{
  217. width: 94rpx;
  218. height: 50rpx;
  219. border-radius: 25rpx;
  220. border: 1px solid #DDDDDD;
  221. text-align: center;line-height: 50rpx;
  222. font-size: 26rpx;color: #3C3C3C;
  223. margin-right: 29rpx;
  224. }
  225. .Default{
  226. width: 148rpx;
  227. height: 50rpx;
  228. border-radius: 25rpx;
  229. border: 1px solid #FF4F00;
  230. line-height: 50rpx;
  231. text-align: center;
  232. color: #FF4F00;font-size: 26rpx;
  233. }
  234. .DefaultYES{
  235. width: 148rpx;
  236. height: 50rpx;
  237. border-radius: 25rpx;
  238. border: 1px solid #DDDDDD;
  239. line-height: 50rpx;
  240. text-align: center;
  241. color: #999999;font-size: 26rpx;
  242. }
  243. .DefaultIcon{
  244. position: absolute;
  245. top: 0;
  246. right: 0;
  247. width: 109rpx;
  248. height: 40rpx;
  249. background: linear-gradient(131deg, #FFA72C 0%, #FF450F 100%);
  250. border-radius: 0px 10rpx 0px 10rpx;
  251. text-align: center;
  252. line-height: 40rpx;
  253. color: #FFFFFF;
  254. font-size: 22rpx;
  255. }
  256. </style>