deviceReplace.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <template>
  2. <view class="container">
  3. <van-cell-group>
  4. <van-field :value="battery_sn" label="设备编号" disabled :border="false" />
  5. <van-cell title="类型" title-width="90px">
  6. <picker @change="bindSelectType" :value="type" :range="typeList">
  7. {{ typeList[type] }}
  8. </picker>
  9. </van-cell>
  10. <van-cell v-if="replaceStatusList.length != 0" title="设备状态" title-width="90px">
  11. <view class="return-status-view">
  12. <van-button
  13. class="return-status-button"
  14. :plain="!useReplaceStatusList[index]"
  15. size="small"
  16. type="info"
  17. :data-index="index"
  18. @click="changeReturnStatus($event, { index })"
  19. v-for="(item, index) in replaceStatusList"
  20. :key="index"
  21. >
  22. {{ item }}
  23. </van-button>
  24. </view>
  25. </van-cell>
  26. <van-cell v-if="type == 1" title="换货型号" title-width="90px">
  27. <view class="input-bats">
  28. <view class="input-bat-item">
  29. <input class="input-bat-type" type="number" :value="exchange_type_v" @blur="inputExchangeTypeV" />
  30. V
  31. </view>
  32. <view class="input-bat-item">
  33. <input class="input-bat-type" type="number" :value="exchange_type_a" @blur="inputExchangeTypeA" />
  34. AH
  35. </view>
  36. </view>
  37. </van-cell>
  38. <van-field :value="description" label="补充描述" type="textarea" placeholder="请输入补充描述" autosize :border="false" @change="inputDescription" />
  39. </van-cell-group>
  40. <view class="return-uptitle">上传图片</view>
  41. <van-uploader class="return-upimage" :file-list="image_list" @after-read="upImage" @delete="delImage" />
  42. <view class="save-op flex-row flex-around">
  43. <button type="warn" size="mini" plain @tap="bindCancel">取消</button>
  44. <button type="primary" size="mini" plain @tap="bindSave">确定</button>
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. var config = require('../../common/config.js');
  50. var http = require('../../common/http.js');
  51. var common = require('../../common/common.js');
  52. var storage = require('../../common/storage.js');
  53. export default {
  54. data() {
  55. return {
  56. userBaseInfo: null,
  57. battery_sn: '',
  58. type: 0,
  59. typeList: ['退货', '换货'],
  60. exchange_type_v: 1,
  61. exchange_type_a: 1,
  62. replaceStatusList: [],
  63. useReplaceStatusList: [],
  64. description: '',
  65. image_list: []
  66. };
  67. }
  68. /**
  69. * 生命周期函数--监听页面加载
  70. */,
  71. onLoad: function (options) {
  72. const userBaseInfo = storage.getUserInfo();
  73. this.setData({
  74. userBaseInfo: userBaseInfo,
  75. battery_sn: options.battery_sn
  76. });
  77. this.loadReplaceStatusList();
  78. },
  79. /**
  80. * 生命周期函数--监听页面显示
  81. */
  82. onShow: function () {},
  83. methods: {
  84. loadReplaceStatusList: function () {
  85. const that = this;
  86. http.postApi(config.API_USER_REPLACE_STATUS_LIST, {}, function (resp) {
  87. if (resp.data.code === 200) {
  88. that.setData({
  89. replaceStatusList: resp.data.data.list,
  90. useReplaceStatusList: new Array(resp.data.data.list.length).fill(false)
  91. });
  92. } else {
  93. common.simpleToast(resp.data.msg);
  94. uni.navigateBack({
  95. delta: 1
  96. });
  97. }
  98. });
  99. },
  100. bindSelectType: function (event) {
  101. this.setData({
  102. type: event.detail.value
  103. });
  104. },
  105. inputDescription: function (event) {
  106. this.description = event.detail;
  107. },
  108. changeReturnStatus: function (event, _dataset) {
  109. /* ---处理dataset begin--- */
  110. this.handleDataset(event, _dataset);
  111. /* ---处理dataset end--- */
  112. const useReplaceStatusList = this.useReplaceStatusList;
  113. useReplaceStatusList[event.currentTarget.dataset.index] = !useReplaceStatusList[event.currentTarget.dataset.index];
  114. this.setData({
  115. useReplaceStatusList: useReplaceStatusList
  116. });
  117. },
  118. inputExchangeTypeV(e) {
  119. this.exchange_type_v = e.detail.value;
  120. },
  121. inputExchangeTypeA(e) {
  122. this.exchange_type_a = e.detail.value;
  123. },
  124. bindCancel: function () {
  125. uni.navigateBack({
  126. delta: 1
  127. });
  128. },
  129. upImage: function (event) {
  130. const { file } = event.detail;
  131. common.loading();
  132. const that = this;
  133. http.getApi(config.API_QINIU_UP_IMG_TOKEN, {}, (response) => {
  134. if (response.data.code === 200) {
  135. const token = response.data.data.token;
  136. uni.uploadFile({
  137. url: config.QINIU_UPLOAD_SITE,
  138. filePath: file.path,
  139. name: 'file',
  140. formData: {
  141. token: token
  142. },
  143. success(res) {
  144. uni.hideLoading();
  145. var rtDataObj = JSON.parse(res.data);
  146. const key = rtDataObj.key;
  147. const { image_list = [] } = that;
  148. image_list.push({
  149. ...file,
  150. url: config.QINIU_SITE + key
  151. });
  152. that.setData({
  153. image_list
  154. });
  155. },
  156. fail(res) {
  157. common.simpleToast('上传失败');
  158. uni.hideLoading();
  159. }
  160. });
  161. } else {
  162. common.simpleToast(response.data.msg);
  163. uni.hideLoading();
  164. }
  165. });
  166. },
  167. delImage: function (event) {
  168. const { image_list = [] } = this;
  169. image_list.splice(event.detail.index, 1);
  170. this.setData({
  171. image_list
  172. });
  173. },
  174. bindSave: function () {
  175. common.loading();
  176. const that = this;
  177. const pData = {
  178. battery_sn: this.battery_sn,
  179. journal: JSON.stringify({
  180. type: parseInt(this.type) + 1,
  181. exchange_type_v: this.exchange_type_v,
  182. exchange_type_a: this.exchange_type_a,
  183. return_status: this.replaceStatusList.filter((item, index) => {
  184. return this.useReplaceStatusList[index];
  185. }),
  186. description: this.description,
  187. image_list: this.image_list.map((item) => item.url)
  188. })
  189. };
  190. http.postApi(config.API_BATTERY_REPLACE, pData, function (resp) {
  191. uni.hideLoading();
  192. if (resp.data.code === 200) {
  193. common.simpleToast('申请成功');
  194. uni.navigateBack({
  195. delta: 1
  196. });
  197. } else {
  198. common.simpleToast(resp.data.msg);
  199. }
  200. });
  201. },
  202. bindReleaseUser: function () {
  203. const pData = {
  204. battery_sn: this.batteryInfo.battery_sn
  205. };
  206. const that = this;
  207. http.postApi(config.API_BATTERY_RELEASE_USER, pData, function (resp) {
  208. if (resp.data.code === 200) {
  209. storage.setRefreshDeviceoPage(true);
  210. common.simpleToast('解绑成功');
  211. that.loadBatteryInfo();
  212. } else {
  213. common.simpleToast(resp.data.msg);
  214. }
  215. });
  216. }
  217. }
  218. };
  219. </script>
  220. <style>
  221. @import './deviceReplace.css';
  222. </style>