changeStoreDetail.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  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" @click="goSchedule()">
  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. goSchedule(){
  144. uni.navigateTo({
  145. url: 'changeSchedule?id=' + this.detailData.id
  146. })
  147. },
  148. goOrderDetail() {
  149. uni.navigateTo({
  150. url: '../order/orderDetail?id=' + this.detailData.sheetID
  151. })
  152. },
  153. getData() {
  154. uni.showLoading({
  155. title: '加载中'
  156. })
  157. let url = '/worldKeepCar/orderChangeShop/changeDetail',
  158. params = {
  159. id: this.id,
  160. }
  161. this.$http(url, params, 'GET').then(res => {
  162. uni.hideLoading();
  163. this.detailData = res.data
  164. // 更换状态
  165. // "changeState": 备注:处理状态1待处理2更换成功3更换关闭
  166. if (this.detailData.changeState == 1) {
  167. // 平台处理
  168. this.state = 1;
  169. } else if (this.detailData.changeState == 2) {
  170. // 平台同意
  171. this.state = 3;
  172. }
  173. if (this.detailData.handlerReasonID != null) {
  174. // 拒绝
  175. this.state = -1;
  176. }
  177. if (this.detailData.cancelType != null) {
  178. // 关闭
  179. this.state = 0;
  180. }
  181. })
  182. },
  183. copy(txt) {
  184. uni.setClipboardData({
  185. data: txt,
  186. success: function() {
  187. uni.showToast({
  188. title: '复制成功',
  189. icon: 'none',
  190. duration: 2000
  191. });
  192. }
  193. });
  194. },
  195. cancelBtn(){
  196. uni.showLoading({
  197. title: '加载中'
  198. })
  199. let url = 'worldKeepCar/orderChangeShop/cancelApply',
  200. params = {
  201. id: this.detailData.id,
  202. }
  203. this.$http(url, params, 'POST').then(res => {
  204. uni.hideLoading();
  205. if(res.code==0){
  206. uni.showToast({
  207. title: '撤销成功',
  208. icon: 'none',
  209. duration: 2000,
  210. });
  211. setTimeout(function() {
  212. uni.navigateBack({
  213. })
  214. }, 2000);
  215. }
  216. })
  217. },
  218. editBtn(){
  219. uni.navigateTo({
  220. 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
  221. })
  222. }
  223. }
  224. }
  225. </script>
  226. <style>
  227. .content {
  228. background-color: #F4F5F7;
  229. min-height: 100vh;
  230. }
  231. .topView {
  232. background: linear-gradient(315deg, #FD5002 0%, #FE8F00 100%);
  233. padding: 20rpx 24rpx;
  234. }
  235. .waitBg {
  236. background-color: #FFFFFF;
  237. border-radius: 20rpx;
  238. height: 209rpx;
  239. padding: 30rpx;
  240. }
  241. .title {
  242. color: #333333;
  243. font-size: 32rpx;
  244. font-weight: bold;
  245. margin-bottom: 30rpx;
  246. }
  247. .progress {
  248. display: flex;
  249. align-items: center;
  250. padding: 10rpx 70rpx;
  251. }
  252. .waitImg {
  253. width: 20rpx;
  254. height: 20rpx;
  255. }
  256. .tongguoImg {
  257. width: 38rpx;
  258. height: 38rpx;
  259. }
  260. .line {
  261. width: 40%;
  262. margin: 0rpx 5rpx;
  263. height: 2px;
  264. background: #FF2400;
  265. opacity: 0.4;
  266. }
  267. .lightLine {
  268. width: 40%;
  269. margin: 0rpx 5rpx;
  270. height: 2px;
  271. background: #FF2400;
  272. opacity: 1.0;
  273. }
  274. .progressT {
  275. display: flex;
  276. align-items: center;
  277. }
  278. .stateView {
  279. width: 30%;
  280. }
  281. .progressTitle {
  282. color: #333333;
  283. font-size: 22rpx;
  284. text-align: center;
  285. }
  286. .time {
  287. color: #999999;
  288. font-size: 22rpx;
  289. text-align: center;
  290. }
  291. .whiteView {
  292. background-color: #FFFFFF;
  293. padding: 30rpx 24rpx;
  294. margin: 20rpx 0;
  295. }
  296. .title1 {
  297. color: #3C3C3C;
  298. font-size: 30rpx;
  299. font-weight: bold;
  300. }
  301. .title2 {
  302. color: #999999;
  303. font-size: 24rpx;
  304. padding-top: 16rpx;
  305. padding-bottom: 8rpx;
  306. }
  307. .title3 {
  308. color: #999999;
  309. font-size: 24rpx;
  310. }
  311. .storeTitle {
  312. color: #3C3C3C;
  313. font-size: 30rpx;
  314. font-weight: bold;
  315. border-bottom: 1rpx #EEEEEE solid;
  316. padding-bottom: 22rpx;
  317. }
  318. .store {
  319. display: flex;
  320. padding-top: 20rpx;
  321. align-items: center;
  322. }
  323. .leftIcon {
  324. width: 30rpx;
  325. height: 30rpx;
  326. margin-right: 10rpx;
  327. }
  328. .name {
  329. color: #3C3C3C;
  330. font-size: 26rpx;
  331. }
  332. .address {
  333. color: #999999;
  334. font-size: 26rpx;
  335. }
  336. .informationLine {
  337. display: flex;
  338. font-size: 26rpx;
  339. padding: 20rpx 0;
  340. }
  341. .informationTxt {
  342. color: #666666;
  343. }
  344. .informationNum {
  345. color: #333333;
  346. }
  347. .copyBtn {
  348. width: 86rpx;
  349. height: 40rpx;
  350. background: #F4F5F7;
  351. border-radius: 20rpx;
  352. font-size: 24rpx;
  353. color: #333333;
  354. text-align: center;
  355. line-height: 40rpx;
  356. margin-left: 20rpx;
  357. }
  358. .orderBottom {
  359. width: 750rpx;
  360. height: 98rpx;
  361. background: #FFFFFF;
  362. position: fixed;
  363. left: 0;
  364. bottom: 0;
  365. display: flex;
  366. justify-content: flex-end;
  367. }
  368. .cancelBtn {
  369. width: 150rpx;
  370. height: 56rpx;
  371. border-radius: 36rpx;
  372. border: 2rpx solid #DDDDDD;
  373. text-align: center;
  374. line-height: 56rpx;
  375. font-size: 28rpx;
  376. color: #3C3C3C;
  377. margin-top: 21rpx;
  378. margin-right: 16rpx;
  379. margin-left: 20rpx;
  380. }
  381. .tongyiView {
  382. display: flex;
  383. justify-content: space-between;
  384. align-items: center;
  385. background-color: #FFFFFF;
  386. padding: 30rpx 24rpx;
  387. margin: 20rpx 0;
  388. }
  389. </style>