deviceReplace.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. <template>
  2. <view class="container">
  3. <van-cell-group>
  4. <van-field :value="battery_sn" :label="$t('设备编号')" disabled :border="false" />
  5. <van-cell :title="$t('类型')" 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="$t('设备状态')" 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="$t('换货型号')" 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="$t('补充描述')" type="textarea" :placeholder="$t('请输入补充描述')" autosize :border="false" @change="inputDescription" />
  39. </van-cell-group>
  40. <view class="return-uptitle">{{$t('上传图片')}}</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">{{ $t('取消') }}</button>
  44. <button type="primary" size="mini" plain @tap="bindSave">{{ $t('确定') }}</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: [this.$t('退货'), this.$t('换货')],
  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. uni.setNavigationBarTitle({
  73. title: this.$t('退换货申请')
  74. });
  75. const userBaseInfo = storage.getUserInfo();
  76. this.setData({
  77. userBaseInfo: userBaseInfo,
  78. battery_sn: options.battery_sn
  79. });
  80. this.loadReplaceStatusList();
  81. },
  82. /**
  83. * 生命周期函数--监听页面显示
  84. */
  85. onShow: function () {},
  86. methods: {
  87. loadReplaceStatusList: function () {
  88. const that = this;
  89. http.postApi(config.API_USER_REPLACE_STATUS_LIST, {}, function (resp) {
  90. if (resp.data.code === 200) {
  91. that.setData({
  92. replaceStatusList: resp.data.data.list,
  93. useReplaceStatusList: new Array(resp.data.data.list.length).fill(false)
  94. });
  95. } else {
  96. common.simpleToast(that,resp.data.msg);
  97. uni.navigateBack({
  98. delta: 1
  99. });
  100. }
  101. });
  102. },
  103. bindSelectType: function (event) {
  104. this.setData({
  105. type: event.detail.value
  106. });
  107. },
  108. inputDescription: function (event) {
  109. this.description = event.detail;
  110. },
  111. changeReturnStatus: function (event, _dataset) {
  112. /* ---处理dataset begin--- */
  113. this.handleDataset(event, _dataset);
  114. /* ---处理dataset end--- */
  115. const useReplaceStatusList = this.useReplaceStatusList;
  116. useReplaceStatusList[event.currentTarget.dataset.index] = !useReplaceStatusList[event.currentTarget.dataset.index];
  117. this.setData({
  118. useReplaceStatusList: useReplaceStatusList
  119. });
  120. },
  121. inputExchangeTypeV(e) {
  122. this.exchange_type_v = e.detail.value;
  123. },
  124. inputExchangeTypeA(e) {
  125. this.exchange_type_a = e.detail.value;
  126. },
  127. bindCancel: function () {
  128. uni.navigateBack({
  129. delta: 1
  130. });
  131. },
  132. upImage: function (event) {
  133. const { file } = event.detail;
  134. common.loading(this);
  135. const that = this;
  136. http.getApi(config.API_QINIU_UP_IMG_TOKEN, {}, (response) => {
  137. if (response.data.code === 200) {
  138. const token = response.data.data.token;
  139. uni.uploadFile({
  140. url: config.QINIU_UPLOAD_SITE,
  141. filePath: file.path,
  142. name: 'file',
  143. formData: {
  144. token: token
  145. },
  146. success(res) {
  147. uni.hideLoading();
  148. var rtDataObj = JSON.parse(res.data);
  149. const key = rtDataObj.key;
  150. const { image_list = [] } = that;
  151. image_list.push({
  152. ...file,
  153. url: config.QINIU_SITE + key
  154. });
  155. that.setData({
  156. image_list
  157. });
  158. },
  159. fail(res) {
  160. common.simpleToast(that,that.$t('上传失败'));
  161. uni.hideLoading();
  162. }
  163. });
  164. } else {
  165. common.simpleToast(that,response.data.msg);
  166. uni.hideLoading();
  167. }
  168. });
  169. },
  170. delImage: function (event) {
  171. const { image_list = [] } = this;
  172. image_list.splice(event.detail.index, 1);
  173. this.setData({
  174. image_list
  175. });
  176. },
  177. bindSave: function () {
  178. common.loading(this);
  179. const that = this;
  180. const pData = {
  181. battery_sn: this.battery_sn,
  182. journal: JSON.stringify({
  183. type: parseInt(this.type) + 1,
  184. exchange_type_v: this.exchange_type_v,
  185. exchange_type_a: this.exchange_type_a,
  186. return_status: this.replaceStatusList.filter((item, index) => {
  187. return this.useReplaceStatusList[index];
  188. }),
  189. description: this.description,
  190. image_list: this.image_list.map((item) => item.url)
  191. })
  192. };
  193. http.postApi(config.API_BATTERY_REPLACE, pData, function (resp) {
  194. uni.hideLoading();
  195. if (resp.data.code === 200) {
  196. common.simpleToast(that,that.$t('申请成功'));
  197. uni.navigateBack({
  198. delta: 1
  199. });
  200. } else {
  201. common.simpleToast(that,resp.data.msg);
  202. }
  203. });
  204. },
  205. bindReleaseUser: function () {
  206. const pData = {
  207. battery_sn: this.batteryInfo.battery_sn
  208. };
  209. const that = this;
  210. http.postApi(config.API_BATTERY_RELEASE_USER, pData, function (resp) {
  211. if (resp.data.code === 200) {
  212. storage.setRefreshDeviceoPage(true);
  213. common.simpleToast(that,that.$t('解绑成功'));
  214. that.loadBatteryInfo();
  215. } else {
  216. common.simpleToast(that,resp.data.msg);
  217. }
  218. });
  219. }
  220. }
  221. };
  222. </script>
  223. <style>
  224. @import './deviceReplace.css';
  225. </style>