deviceBatchAlter.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. <template>
  2. <view class="container">
  3. <view class="form-group">
  4. <view class="form-item">
  5. <view class="form-label">{{ $t('所属门店') }}</view>
  6. <view class="form-value">{{ devicelist[0].shop_name }}</view>
  7. </view>
  8. <view class="form-item">
  9. <view class="form-label">{{ $t('设备信息') }}</view>
  10. <navigator class="form-value" url="/myPages/pages/deviceBatchList/deviceBatchList">{{ $t('共') + devicelist.length + $t('个设备') }}</navigator>
  11. </view>
  12. <view class="form-item">
  13. <view class="form-label">{{ $t('型号') }}</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">{{ $t('设备类型') }}</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">{{ $t('押金') }}</view>
  45. <view class="form-value flex-row flex-end">
  46. <input type="digit" placeholder="0.00" @blur="inputPledgeMoney" />
  47. <text class="u-unit">{{ $t('元') }}</text>
  48. </view>
  49. </view>
  50. <view class="form-item">
  51. <view class="form-label">{{ $t('单价') }}</view>
  52. <view class="form-value flex-row flex-end">
  53. <input type="digit" placeholder="0.00" @blur="inputHirePirce" />
  54. <text class="u-unit">{{ $t('元') + '/' }} /</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">{{ $t('备注') }}</view>
  64. <view class="form-value flex-row flex-end">
  65. <textarea value="" :placeholder="$t('备注信息')" auto-height class="remark-info" @blur="inputRemark"></textarea>
  66. </view>
  67. </view>
  68. <view class="form-item">
  69. <view class="form-label">{{ $t('图标') }}</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">{{ $t('保存') }}</button>
  84. </view>
  85. </view>
  86. </template>
  87. <script>
  88. // myPages/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: ['', this.$t('天'), this.$t('月'), this.$t('年')],
  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. uni.setNavigationBarTitle({
  119. title: this.$t('批量修改')
  120. });
  121. const userBaseInfo = storage.getUserInfo();
  122. this.setData({
  123. userBaseInfo: userBaseInfo
  124. });
  125. this.loadBatteryTypeList();
  126. this.loadIconList();
  127. },
  128. /**
  129. * 生命周期函数--监听页面显示
  130. */
  131. onShow: function () {
  132. this.loadBatteryThirdDeviceTypeList();
  133. const devicelist = storage.getBatchSelectedDeviceList();
  134. this.setData({
  135. devicelist: devicelist
  136. });
  137. },
  138. methods: {
  139. loadBatteryThirdDeviceTypeList: function () {
  140. const that = this;
  141. http.postApi(config.API_BATTERY_THIRD_DEVICE_TYPE_LIST, {}, function (resp) {
  142. if (resp.data.code === 200) {
  143. that.setData({
  144. thirdDeviceTypeList: ['默认'].concat(resp.data.data.list)
  145. });
  146. if (that.batteryInfo && that.selectedThirdDeviceTypeIndex == -1) {
  147. that.setSelectThirdDeviceType();
  148. }
  149. }
  150. });
  151. },
  152. loadBatteryTypeList: function () {
  153. const that = this;
  154. http.postApi(config.API_BATTERY_BTYPE_LIST, {}, function (resp) {
  155. if (resp.data.code === 200) {
  156. that.setData({
  157. batteryTypeList: resp.data.data.typeList
  158. });
  159. } else {
  160. common.simpleToast(that,resp.data.msg);
  161. }
  162. });
  163. },
  164. loadIconList: function () {
  165. const that = this;
  166. http.postApi(config.API_BATTERY_ICON_LIST, {}, function (resp) {
  167. if (resp.data.code === 200) {
  168. that.setData({
  169. iconList: resp.data.data.iconList
  170. });
  171. } else {
  172. common.simpleToast(that,resp.data.msg);
  173. }
  174. });
  175. },
  176. bindSelectBatteryType: function (e) {
  177. this.setData({
  178. selectedBatteryTypeIndex: e.detail.value
  179. });
  180. },
  181. bindSelectThirdDeviceType: function (e) {
  182. this.setData({
  183. selectedThirdDeviceTypeIndex: e.detail.value
  184. });
  185. },
  186. bindSelectHireDurationUnit: function (e) {
  187. this.setData({
  188. selectedHireDurationUnitIndex: e.detail.value
  189. });
  190. },
  191. bindSelectIcon: function (e) {
  192. this.setData({
  193. selectedIconIndex: e.detail.value
  194. });
  195. },
  196. inputPledgeMoney: function (e) {
  197. const pledge_money = e.detail.value;
  198. this.pledge_money = pledge_money;
  199. },
  200. inputHirePirce: function (e) {
  201. const hire_price = e.detail.value;
  202. this.hire_price = hire_price;
  203. },
  204. inputRemark: function (e) {
  205. const remark = e.detail.value;
  206. this.remark = remark;
  207. },
  208. inputBatteryTypeV(e) {
  209. const v = e.detail.value;
  210. this.battery_type_v = v;
  211. },
  212. inputBatteryTypeA(e) {
  213. const a = e.detail.value;
  214. this.battery_type_a = a;
  215. },
  216. bindSave: function () {
  217. const me = this
  218. const batteryTypeList = this.batteryTypeList;
  219. const battery_type_id = batteryTypeList[this.selectedBatteryTypeIndex].battery_type_id;
  220. const batList = [];
  221. this.devicelist.forEach((item) => {
  222. batList.push(item.battery_sn);
  223. });
  224. const pData = {
  225. batList: JSON.stringify(batList),
  226. battery_type_id: battery_type_id,
  227. car_icon: this.selectedIconIndex,
  228. hire_duration_unit: this.selectedHireDurationUnitIndex,
  229. third_device_type: this.selectedThirdDeviceTypeIndex === 0 ? 0 : this.thirdDeviceTypeList[this.selectedThirdDeviceTypeIndex],
  230. hire_price: this.hire_price,
  231. pledge_money: this.pledge_money,
  232. remark: this.remark,
  233. battery_type_v: this.battery_type_v,
  234. battery_type_a: this.battery_type_a
  235. };
  236. http.postApi(config.API_BATTERY_BATCH_EDIT, pData, function (resp) {
  237. if (resp.data.code === 200) {
  238. storage.setRefreshDeviceoPage(true);
  239. common.simpleToast(me,me.$t('保存成功'));
  240. setTimeout(function () {
  241. uni.navigateBack({
  242. delta: 1
  243. });
  244. }, 1500);
  245. } else {
  246. common.simpleToast(me,resp.data.msg);
  247. }
  248. });
  249. }
  250. }
  251. };
  252. </script>
  253. <style>
  254. @import './deviceBatchAlter.css';
  255. </style>