changeStoreDetail.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. <template>
  2. <view class="content">
  3. <view class="topView">
  4. <!-- 待处理 -->
  5. <view class="waitBg" v-if="state>0">
  6. <view class="title">请等待平台处理</view>
  7. <!-- 进度条 -->
  8. <view class="progress">
  9. <image :src="(state>0 ? tongguoUrl : waitUrl)" class="waitImg" :class="{tongguoImg:state>0}">
  10. </image>
  11. <view class="line" :class="{lightLine:state>0}"></view>
  12. <image :src="(state>1 ? tongguoUrl : waitUrl)" class="waitImg" :class="{tongguoImg:state>1}">
  13. </image>
  14. <view class="line" :class="{lightLine:state>1}"></view>
  15. <image :src="(state>2 ? tongguoUrl : waitUrl)" class="waitImg" :class="{tongguoImg:state>2}">
  16. </image>
  17. </view>
  18. <!-- 进度条 文字提示 -->
  19. <view class="progressT">
  20. <view class="stateView">
  21. <view class="progressTitle">提交申请</view>
  22. <view class="time" v-if="state>0">{{detailData.createTime}}</view>
  23. </view>
  24. <view style="width: 9%;"></view>
  25. <view class="stateView">
  26. <view class="progressTitle">平台审核</view>
  27. <view class="time" v-if="state>1">{{detailData.handlerTime}}</view>
  28. </view>
  29. <view style="width: 9%;"></view>
  30. <view class="stateView">
  31. <view class="progressTitle">平台同意更换</view>
  32. <view class="time" v-if="state>2">{{detailData.handlerTime}}</view>
  33. </view>
  34. </view>
  35. </view>
  36. <!-- 更换关闭 -->
  37. <view class="waitBg" v-if="state==0" style="height: 100rpx;">
  38. <view class="title">更换关闭</view>
  39. <view class="title3">{{detailData.handlerTime}}</view>
  40. </view>
  41. <!-- 平台拒绝 -->
  42. <view class="waitBg" v-if="state==-1" style="height: 100rpx;">
  43. <view class="title">平台已拒绝</view>
  44. <view class="title3">{{detailData.handlerTime}}</view>
  45. </view>
  46. </view>
  47. <!-- 更换提交 -->
  48. <view class="whiteView" v-if="state==1">
  49. <view class="title1">您已成功发起更换门店申请,请耐心等待平台处理</view>
  50. <view class="title2">平台同意后,系统将自动更新门店信息</view>
  51. <view class="title3">平台同意后,系统将自动更新门店信息</view>
  52. </view>
  53. <!-- 更换关闭 -->
  54. <view class="whiteView" v-if="state==0">
  55. <view class="title1">您已撤销本次退款申请,如有问题仍未解决,您可以重新发起申请</view>
  56. </view>
  57. <!-- 平台拒绝 -->
  58. <view class="whiteView" v-if="state==-1">
  59. <view class="title1">平台拒绝原因:这是选择的原因</view>
  60. <view class="title2">您可以修改更换申请后再次发起,平台会重新处理</view>
  61. </view>
  62. <!-- 同意申请 -->
  63. <view class="tongyiView" v-if="state!=1">
  64. <view class="title1">进度详情</view>
  65. <image src="../../static/img/rightArrow.png" mode="" style="width: 14rpx; height: 23rpx;"></image>
  66. </view>
  67. <view class="whiteView">
  68. <view class="storeTitle">更换前门店信息</view>
  69. <view class="store">
  70. <image src="../../static/img/icon_state_gray.png" mode="" class="leftIcon"></image>
  71. <view class="name">{{detailData.oldShopName}}</view>
  72. </view>
  73. <view class="store">
  74. <image src="../../static/img/icon_coordinate.png" mode="" class="leftIcon"></image>
  75. <view class="address">{{detailData.oldShopAddress}}</view>
  76. </view>
  77. </view>
  78. <view class="whiteView">
  79. <view class="storeTitle">更换后门店信息</view>
  80. <view class="store">
  81. <image src="../../static/img/icon_state_gray.png" mode="" class="leftIcon"></image>
  82. <view class="name">{{detailData.newShopName}}</view>
  83. </view>
  84. <view class="store">
  85. <image src="../../static/img/icon_coordinate.png" mode="" class="leftIcon"></image>
  86. <view class="address">{{detailData.newShopAddress}}</view>
  87. </view>
  88. </view>
  89. <!-- 订单信息 -->
  90. <view class="whiteView">
  91. <view class="informationLine">
  92. <view class="informationTxt">更换原因:</view>
  93. <view class="informationNum">{{detailData.applyReason}}</view>
  94. </view>
  95. <view class="informationLine">
  96. <view class="informationTxt">申请时间:</view>
  97. <view class="informationNum">{{detailData.createTime}}</view>
  98. </view>
  99. <view class="informationLine">
  100. <view class="informationTxt">补充描述:</view>
  101. <view class="informationNum" v-if="detailData.applyReasonComment!=null">
  102. {{detailData.applyReasonComment}}</view>
  103. </view>
  104. <view class="informationLine">
  105. <view class="informationTxt">申请单号:</view>
  106. <view class="informationNum">{{detailData.changeCode}}</view>
  107. <view class="copyBtn" @click="copy(orderData.changeCode)">复制</view>
  108. </view>
  109. <view class="informationLine">
  110. <view class="informationTxt">订单单号:</view>
  111. <view class="informationNum">{{detailData.sheetCode}}</view>
  112. <view class="copyBtn" @click="copy(orderData.sheetCode)">复制</view>
  113. <view style="color: #3F90F7; font-size: 26rpx; margin-left: 50rpx;" @click="goOrderDetail()">详情</view>
  114. </view>
  115. </view>
  116. <!-- 底部按钮 操作 -->
  117. <view style="height: 150rpx;"></view>
  118. <view class="orderBottom" v-if="state==1">
  119. <view class="cancelBtn" @click="cancelBtn">撤销申请</view>
  120. <view class="cancelBtn" @click="editBtn">修改申请</view>
  121. </view>
  122. </view>
  123. </template>
  124. <script>
  125. export default {
  126. data() {
  127. return {
  128. state: -1, // -1 拒绝 0自己撤销关闭 1 提交申请 3 同意申请
  129. tongguoUrl: '../../static/img/icon_tongguo.png',
  130. waitUrl: '../../static/img/icon_yuan.png',
  131. id: '',
  132. detailData: '',
  133. }
  134. },
  135. onLoad(opt) {
  136. this.id = opt.id
  137. this.getData();
  138. },
  139. onShow() {
  140. this.getData();
  141. },
  142. methods: {
  143. goOrderDetail() {
  144. uni.navigateTo({
  145. url: '../order/orderDetail?id=' + this.detailData.sheetID
  146. })
  147. },
  148. getData() {
  149. uni.showLoading({
  150. title: '加载中'
  151. })
  152. let url = '/worldKeepCar/orderChangeShop/changeDetail',
  153. params = {
  154. id: this.id,
  155. }
  156. this.$http(url, params, 'GET').then(res => {
  157. uni.hideLoading();
  158. this.detailData = res.data
  159. // 更换状态
  160. // "changeState": 备注:处理状态1待处理2更换成功3更换关闭
  161. if (this.detailData.changeState == 1) {
  162. // 平台处理
  163. this.state = 1;
  164. } else if (this.detailData.changeState == 2) {
  165. // 平台同意
  166. this.state = 3;
  167. }
  168. if (this.detailData.handlerReasonID != null) {
  169. // 拒绝
  170. this.state = -1;
  171. }
  172. if (this.detailData.cancelType != null) {
  173. // 关闭
  174. this.state = 0;
  175. }
  176. })
  177. },
  178. copy(txt) {
  179. uni.setClipboardData({
  180. data: txt,
  181. success: function() {
  182. uni.showToast({
  183. title: '复制成功',
  184. icon: 'none',
  185. duration: 2000
  186. });
  187. }
  188. });
  189. },
  190. cancelBtn(){
  191. uni.showLoading({
  192. title: '加载中'
  193. })
  194. let url = 'worldKeepCar/orderChangeShop/cancelApply',
  195. params = {
  196. id: this.detailData.id,
  197. }
  198. this.$http(url, params, 'POST').then(res => {
  199. uni.hideLoading();
  200. if(res.code==0){
  201. uni.showToast({
  202. title: '撤销成功',
  203. icon: 'none',
  204. duration: 2000,
  205. });
  206. setTimeout(function() {
  207. uni.navigateBack({
  208. })
  209. }, 2000);
  210. }
  211. })
  212. },
  213. editBtn(){
  214. uni.navigateTo({
  215. url:'changeStore?edit=true'+'&editId='+this.detailData.id+'&oldStoreName='+this.detailData.oldShopName+'&oldStoreAddress='+this.detailData.oldShopAddress+'&store='+this.detailData.newShopName+'&storeId='+this.detailData.newShopID+'&reasonId='+this.detailData.applyReasonID+'&reason='+this.detailData.applyReason+'&exeContent='+this.detailData.applyReasonComment
  216. })
  217. }
  218. }
  219. }
  220. </script>
  221. <style>
  222. .content {
  223. background-color: #F4F5F7;
  224. min-height: 100vh;
  225. }
  226. .topView {
  227. background: linear-gradient(315deg, #FD5002 0%, #FE8F00 100%);
  228. padding: 20rpx 24rpx;
  229. }
  230. .waitBg {
  231. background-color: #FFFFFF;
  232. border-radius: 20rpx;
  233. height: 209rpx;
  234. padding: 30rpx;
  235. }
  236. .title {
  237. color: #333333;
  238. font-size: 32rpx;
  239. font-weight: bold;
  240. margin-bottom: 30rpx;
  241. }
  242. .progress {
  243. display: flex;
  244. align-items: center;
  245. padding: 10rpx 70rpx;
  246. }
  247. .waitImg {
  248. width: 20rpx;
  249. height: 20rpx;
  250. }
  251. .tongguoImg {
  252. width: 38rpx;
  253. height: 38rpx;
  254. }
  255. .line {
  256. width: 40%;
  257. margin: 0rpx 5rpx;
  258. height: 2px;
  259. background: #FF2400;
  260. opacity: 0.4;
  261. }
  262. .lightLine {
  263. width: 40%;
  264. margin: 0rpx 5rpx;
  265. height: 2px;
  266. background: #FF2400;
  267. opacity: 1.0;
  268. }
  269. .progressT {
  270. display: flex;
  271. align-items: center;
  272. }
  273. .stateView {
  274. width: 30%;
  275. }
  276. .progressTitle {
  277. color: #333333;
  278. font-size: 22rpx;
  279. text-align: center;
  280. }
  281. .time {
  282. color: #999999;
  283. font-size: 22rpx;
  284. text-align: center;
  285. }
  286. .whiteView {
  287. background-color: #FFFFFF;
  288. padding: 30rpx 24rpx;
  289. margin: 20rpx 0;
  290. }
  291. .title1 {
  292. color: #3C3C3C;
  293. font-size: 30rpx;
  294. font-weight: bold;
  295. }
  296. .title2 {
  297. color: #999999;
  298. font-size: 24rpx;
  299. padding-top: 16rpx;
  300. padding-bottom: 8rpx;
  301. }
  302. .title3 {
  303. color: #999999;
  304. font-size: 24rpx;
  305. }
  306. .storeTitle {
  307. color: #3C3C3C;
  308. font-size: 30rpx;
  309. font-weight: bold;
  310. border-bottom: 1rpx #EEEEEE solid;
  311. padding-bottom: 22rpx;
  312. }
  313. .store {
  314. display: flex;
  315. padding-top: 20rpx;
  316. align-items: center;
  317. }
  318. .leftIcon {
  319. width: 30rpx;
  320. height: 30rpx;
  321. margin-right: 10rpx;
  322. }
  323. .name {
  324. color: #3C3C3C;
  325. font-size: 26rpx;
  326. }
  327. .address {
  328. color: #999999;
  329. font-size: 26rpx;
  330. }
  331. .informationLine {
  332. display: flex;
  333. font-size: 26rpx;
  334. padding: 20rpx 0;
  335. }
  336. .informationTxt {
  337. color: #666666;
  338. }
  339. .informationNum {
  340. color: #333333;
  341. }
  342. .copyBtn {
  343. width: 86rpx;
  344. height: 40rpx;
  345. background: #F4F5F7;
  346. border-radius: 20rpx;
  347. font-size: 24rpx;
  348. color: #333333;
  349. text-align: center;
  350. line-height: 40rpx;
  351. margin-left: 20rpx;
  352. }
  353. .orderBottom {
  354. width: 750rpx;
  355. height: 98rpx;
  356. background: #FFFFFF;
  357. position: fixed;
  358. left: 0;
  359. bottom: 0;
  360. display: flex;
  361. justify-content: flex-end;
  362. }
  363. .cancelBtn {
  364. width: 150rpx;
  365. height: 56rpx;
  366. border-radius: 36rpx;
  367. border: 2rpx solid #DDDDDD;
  368. text-align: center;
  369. line-height: 56rpx;
  370. font-size: 28rpx;
  371. color: #3C3C3C;
  372. margin-top: 21rpx;
  373. margin-right: 16rpx;
  374. margin-left: 20rpx;
  375. }
  376. .tongyiView {
  377. display: flex;
  378. justify-content: space-between;
  379. align-items: center;
  380. background-color: #FFFFFF;
  381. padding: 30rpx 24rpx;
  382. margin: 20rpx 0;
  383. }
  384. </style>