deviceBatchAlter.vue 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <template>
  2. <view class="container">
  3. <view class="form-group">
  4. <view class="form-item">
  5. <view class="form-label">所属门店</view>
  6. <view class="form-value">{{ devicelist[0].shop_name }}</view>
  7. </view>
  8. <view class="form-item">
  9. <view class="form-label">设备信息</view>
  10. <navigator class="form-value" url="/pages/deviceBatchList/deviceBatchList">共{{ devicelist.length }}个设备</navigator>
  11. </view>
  12. <view class="form-item">
  13. <view class="form-label">型号</view>
  14. <view class="form-value">
  15. <!-- <picker bindchange="bindSelectBatteryType" value="{{selectedBatteryTypeIndex}}" range="{{batteryTypeList}}" range-key="type_name">
  16. <view class="picker">
  17. {{batteryTypeList[selectedBatteryTypeIndex].type_name}}
  18. </view>
  19. </picker> -->
  20. <view class="input-bats">
  21. <view class="input-bat-item">
  22. <input class="input-bat-type" type="number" placeholder="" :value="battery_type_v" @blur="inputBatteryTypeV" />
  23. V
  24. </view>
  25. <view class="input-bat-item">
  26. <input class="input-bat-type" type="number" placeholder="" :value="battery_type_a" @blur="inputBatteryTypeA" />
  27. AH
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. <view class="form-item">
  33. <view class="form-label">设备类型</view>
  34. <view class="form-value">
  35. <picker v-if="userBaseInfo.role == -1" @change="bindSelectThirdDeviceType" :value="selectedThirdDeviceTypeIndex" :range="thirdDeviceTypeList">
  36. <view class="picker">
  37. {{ thirdDeviceTypeList[selectedThirdDeviceTypeIndex] }}
  38. </view>
  39. </picker>
  40. <text v-else>{{ thirdDeviceTypeList[selectedThirdDeviceTypeIndex] }}</text>
  41. </view>
  42. </view>
  43. <view class="form-item">
  44. <view class="form-label">押金</view>
  45. <view class="form-value flex-row flex-end">
  46. <input type="digit" placeholder="0.00" @blur="inputPledgeMoney" />
  47. <text class="u-unit">元</text>
  48. </view>
  49. </view>
  50. <view class="form-item">
  51. <view class="form-label">单价</view>
  52. <view class="form-value flex-row flex-end">
  53. <input type="digit" placeholder="0.00" @blur="inputHirePirce" />
  54. <text class="u-unit">元 /</text>
  55. <picker @change="bindSelectHireDurationUnit" :value="selectedHireDurationUnitIndex" :range="hireDurationUnitList">
  56. <view class="u-unit">
  57. {{ hireDurationUnitList[selectedHireDurationUnitIndex] }}
  58. </view>
  59. </picker>
  60. </view>
  61. </view>
  62. <view class="form-item">
  63. <view class="form-label">备注</view>
  64. <view class="form-value flex-row flex-end">
  65. <textarea value="" placeholder="备注信息" auto-height class="remark-info" @blur="inputRemark"></textarea>
  66. </view>
  67. </view>
  68. <view class="form-item">
  69. <view class="form-label">图标</view>
  70. <view class="form-value">
  71. <radio-group class="radio-group" @change="bindSelectIcon">
  72. <view class="flex-row flex-around">
  73. <view v-for="(item, index) in iconList" :key="index">
  74. <radio :value="index" :checked="index == 0" />
  75. <image class="local-icon" mode="widthFix" :src="item.local"></image>
  76. </view>
  77. </view>
  78. </radio-group>
  79. </view>
  80. </view>
  81. </view>
  82. <view class="save-op">
  83. <button type="primary" plain @tap="bindSave">保存</button>
  84. </view>
  85. </view>
  86. </template>
  87. <script>
  88. // pages/deviceBatchAlter/deviceBatchAlter.js
  89. var config = require('../../common/config.js');
  90. var http = require('../../common/http.js');
  91. var common = require('../../common/common.js');
  92. var storage = require('../../common/storage.js');
  93. export default {
  94. data() {
  95. return {
  96. userBaseInfo: null,
  97. devicelist: [],
  98. batteryTypeList: [],
  99. selectedBatteryTypeIndex: 0,
  100. thirdDeviceTypeList: [],
  101. selectedThirdDeviceTypeIndex: 0,
  102. hireDurationUnitList: ['', '天', '月', '年'],
  103. selectedHireDurationUnitIndex: 2,
  104. iconList: [],
  105. selectedIconIndex: 0,
  106. pledge_money: 0,
  107. hire_price: 0,
  108. remark: '',
  109. battery_type_v: 0,
  110. battery_type_a: 0,
  111. shop_name: ''
  112. };
  113. }
  114. /**
  115. * 生命周期函数--监听页面加载
  116. */,
  117. onLoad: function (options) {
  118. const userBaseInfo = storage.getUserInfo();
  119. this.setData({
  120. userBaseInfo: userBaseInfo
  121. });
  122. this.loadBatteryTypeList();
  123. this.loadIconList();
  124. },
  125. /**
  126. * 生命周期函数--监听页面显示
  127. */
  128. onShow: function () {
  129. this.loadBatteryThirdDeviceTypeList();
  130. const devicelist = storage.getBatchSelectedDeviceList();
  131. this.setData({
  132. devicelist: devicelist
  133. });
  134. },
  135. methods: {
  136. loadBatteryThirdDeviceTypeList: function () {
  137. const that = this;
  138. http.postApi(config.API_BATTERY_THIRD_DEVICE_TYPE_LIST, {}, function (resp) {
  139. if (resp.data.code === 200) {
  140. that.setData({
  141. thirdDeviceTypeList: ['默认'].concat(resp.data.data.list)
  142. });
  143. if (that.batteryInfo && that.selectedThirdDeviceTypeIndex == -1) {
  144. that.setSelectThirdDeviceType();
  145. }
  146. }
  147. });
  148. },
  149. loadBatteryTypeList: function () {
  150. const that = this;
  151. http.postApi(config.API_BATTERY_BTYPE_LIST, {}, function (resp) {
  152. if (resp.data.code === 200) {
  153. that.setData({
  154. batteryTypeList: resp.data.data.typeList
  155. });
  156. } else {
  157. common.simpleToast(resp.data.msg);
  158. }
  159. });
  160. },
  161. loadIconList: function () {
  162. const that = this;
  163. http.postApi(config.API_BATTERY_ICON_LIST, {}, function (resp) {
  164. if (resp.data.code === 200) {
  165. that.setData({
  166. iconList: resp.data.data.iconList
  167. });
  168. } else {
  169. common.simpleToast(resp.data.msg);
  170. }
  171. });
  172. },
  173. bindSelectBatteryType: function (e) {
  174. this.setData({
  175. selectedBatteryTypeIndex: e.detail.value
  176. });
  177. },
  178. bindSelectThirdDeviceType: function (e) {
  179. this.setData({
  180. selectedThirdDeviceTypeIndex: e.detail.value
  181. });
  182. },
  183. bindSelectHireDurationUnit: function (e) {
  184. this.setData({
  185. selectedHireDurationUnitIndex: e.detail.value
  186. });
  187. },
  188. bindSelectIcon: function (e) {
  189. this.setData({
  190. selectedIconIndex: e.detail.value
  191. });
  192. },
  193. inputPledgeMoney: function (e) {
  194. const pledge_money = e.detail.value;
  195. this.pledge_money = pledge_money;
  196. },
  197. inputHirePirce: function (e) {
  198. const hire_price = e.detail.value;
  199. this.hire_price = hire_price;
  200. },
  201. inputRemark: function (e) {
  202. const remark = e.detail.value;
  203. this.remark = remark;
  204. },
  205. inputBatteryTypeV(e) {
  206. const v = e.detail.value;
  207. this.battery_type_v = v;
  208. },
  209. inputBatteryTypeA(e) {
  210. const a = e.detail.value;
  211. this.battery_type_a = a;
  212. },
  213. bindSave: function () {
  214. const batteryTypeList = this.batteryTypeList;
  215. const battery_type_id = batteryTypeList[this.selectedBatteryTypeIndex].battery_type_id;
  216. const batList = [];
  217. this.devicelist.forEach((item) => {
  218. batList.push(item.battery_sn);
  219. });
  220. const pData = {
  221. batList: JSON.stringify(batList),
  222. battery_type_id: battery_type_id,
  223. car_icon: this.selectedIconIndex,
  224. hire_duration_unit: this.selectedHireDurationUnitIndex,
  225. third_device_type: this.selectedThirdDeviceTypeIndex === 0 ? 0 : this.thirdDeviceTypeList[this.selectedThirdDeviceTypeIndex],
  226. hire_price: this.hire_price,
  227. pledge_money: this.pledge_money,
  228. remark: this.remark,
  229. battery_type_v: this.battery_type_v,
  230. battery_type_a: this.battery_type_a
  231. };
  232. http.postApi(config.API_BATTERY_BATCH_EDIT, pData, function (resp) {
  233. if (resp.data.code === 200) {
  234. storage.setRefreshDeviceoPage(true);
  235. common.simpleToast('保存成功');
  236. setTimeout(function () {
  237. uni.navigateBack({
  238. delta: 1
  239. });
  240. }, 1500);
  241. } else {
  242. common.simpleToast(resp.data.msg);
  243. }
  244. });
  245. }
  246. }
  247. };
  248. </script>
  249. <style>
  250. @import './deviceBatchAlter.css';
  251. </style>