cancelVerificationList.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  1. <template>
  2. <view>
  3. <view class="list" v-for="(item,index) in list" :key="index">
  4. <view class="myclient_list">
  5. <view class="myclient_list_name ">
  6. <view class=" nv">
  7. {{item.storeName}}
  8. </view>
  9. <view v-if="item.state===0" class=" status">待发货</view>
  10. <view v-if="item.state===1" class=" status">已发货</view>
  11. <view v-if="item.state===2" class=" status">已完成</view>
  12. </view>
  13. <view class="myclient_list_content">
  14. <view class="phone">
  15. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/日期@2x.png" />
  16. <text>
  17. 团购结束日期:{{item.grouponEndTime}}
  18. </text>
  19. </view>
  20. <view class="time">
  21. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/出厂编号-线@2x.png" />
  22. <text>
  23. 收货码:{{item.arrivalCode}}
  24. </text>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="all-products-body">
  29. <view class="all-products-item" @click="addGoodPopupShow = true" v-for="(item1,index1) in item.appointGoodsList" :key="index1">
  30. <image
  31. :src="item1.goodsImage"
  32. mode="scaleToFill" />
  33. <view class="all-products-item-content">
  34. <view class="all-products-item-content-t">
  35. {{item1.goodsName}}
  36. </view>
  37. <view class="all-products-item-content-b">
  38. <view style="display:flex;">
  39. <text class="red"> 共{{item1.goodsNum}}件</text>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. <view class="self-pickup-point">
  46. <view class="a-b">
  47. <view class="a-b1">
  48. 自提点:
  49. <text class="red">
  50. {{item.takeName}}
  51. </text>
  52. </view>
  53. <view class="a-b2">
  54. </view>
  55. </view>
  56. </view>
  57. <view v-if="item.state===1" class="op-area">
  58. <button class="action-btn" @click="cancelVerification(item)">确认核销</button>
  59. </view>
  60. </view>
  61. </view>
  62. </template>
  63. <script>
  64. import { commitAppoint} from '@/api/groupon.js'
  65. export default {
  66. name:"cancelVerificationList",
  67. props: {
  68. list: {
  69. type: Array,
  70. default () {
  71. return []
  72. }
  73. }
  74. },
  75. data() {
  76. return {
  77. };
  78. },
  79. methods:{
  80. cancelVerification: function (e) {
  81. let that = this;
  82. uni.showModal({
  83. title: that.$t(`核销订单`),
  84. content: that.$t(`确定核销订单`),
  85. success: function (res) {
  86. if (res.confirm) {
  87. commitAppoint(e.id)
  88. .then(res => {
  89. e.status = 2;
  90. return that.$util.Tips({
  91. title: res.msg,
  92. icon: 'success'
  93. });
  94. })
  95. .catch(err => {
  96. return that.$util.Tips({
  97. title: err
  98. });
  99. });
  100. } else if (res.cancel) {
  101. return that.$util.Tips({
  102. title: that.$t(`已取消`)
  103. });
  104. }
  105. }
  106. });
  107. },
  108. },
  109. }
  110. </script>
  111. <style scoped lang="scss">
  112. @import '/static/css/common.css';
  113. .popup-view{
  114. border-radius: 10rpx;
  115. width: 475rpx;
  116. height: 375rpx;
  117. background-color: white;
  118. .popup-text{
  119. width: 475rpx;
  120. height: 300rpx;
  121. text-align: center;
  122. }
  123. .popup-button{
  124. width: 475rpx;
  125. height: 75rpx;
  126. .button-view{
  127. width: 200rpx;
  128. height: 75rpx;
  129. .button-left{
  130. }
  131. .button-right{
  132. }
  133. }
  134. }
  135. }
  136. .my-order .nav {
  137. background-color: #F9F9F9;
  138. width: 100%;
  139. // height: 140rpx;
  140. }
  141. .my-order .nav .item {
  142. text-align: center;
  143. font-size: 26rpx;
  144. color: #282828;
  145. padding: 27rpx 0;
  146. border-bottom: 5rpx solid transparent;
  147. }
  148. .my-order .nav .item.on {
  149. /* #ifdef H5 || MP */
  150. font-weight: bold;
  151. /* #endif */
  152. /* #ifdef APP-PLUS */
  153. color: #000;
  154. /* #endif */
  155. border-color: var(--view-theme);
  156. }
  157. .my-order .nav .item .num {
  158. margin-top: 18rpx;
  159. }
  160. .list {
  161. width: 100%;
  162. background: white;
  163. margin: 14rpx auto 0 auto;
  164. padding-bottom: 30rpx;
  165. }
  166. .noCart {
  167. margin-top: 171rpx;
  168. padding-top: 0.1rpx;
  169. }
  170. .noCart .pictrue {
  171. width: 414rpx;
  172. height: 336rpx;
  173. margin: 78rpx auto 56rpx auto;
  174. }
  175. .noCart .pictrue image {
  176. width: 100%;
  177. height: 100%;
  178. }
  179. .my-order .list .item .item-info .text .money .return {
  180. // color: var(--view-priceColor);
  181. margin-top: 10rpx;
  182. font-size: 24rpx;
  183. }
  184. .myclient_list {
  185. padding: 30rpx;
  186. background: #FFFFFF;
  187. .myclient_list_name {
  188. margin-bottom: 15rpx;
  189. min-height: 44rpx;
  190. font-size: 28rpx;
  191. font-weight: 500;
  192. color: #111111;
  193. line-height: 44rpx;
  194. display: flex;
  195. flex-direction: row;
  196. justify-content: space-between;
  197. .nv {
  198. flex-grow: 1;
  199. width: 590rpx;
  200. }
  201. .status {
  202. width: 100rpx;
  203. text-align: right;
  204. color: #75BE00;
  205. }
  206. }
  207. .myclient_list_content {
  208. .subtitle {
  209. height: 44rpx;
  210. margin: 20rpx 0;
  211. font-size: 28rpx;
  212. font-weight: 400;
  213. color: #666666;
  214. line-height: 44rpx;
  215. }
  216. image {
  217. width: 24rpx;
  218. height: 24rpx;
  219. margin-right: 20rpx;
  220. }
  221. .phone {
  222. margin-bottom: 15rpx;
  223. height: 44rpx;
  224. font-size: 24rpx;
  225. font-weight: 400;
  226. color: #999999;
  227. line-height: 44rpx;
  228. }
  229. .time {
  230. height: 44rpx;
  231. font-size: 24rpx;
  232. font-weight: 400;
  233. color: #999999;
  234. line-height: 44rpx;
  235. }
  236. }
  237. }
  238. .all-products-body {
  239. background: white;
  240. .all-products-item {
  241. display: flex;
  242. margin-bottom: 20rpx;
  243. image {
  244. width: 128rpx;
  245. height: 128rpx;
  246. margin-right: 20rpx;
  247. border: 2rpx solid #FFFFFF;
  248. }
  249. .all-products-item-content {
  250. flex-grow: 1;
  251. display: flex;
  252. flex-direction: column;
  253. .all-products-item-content-t {
  254. flex: 1;
  255. font-size: 24rpx;
  256. font-weight: 400;
  257. color: #333333;
  258. line-height: 40rpx;
  259. }
  260. .all-products-item-content-b {
  261. flex: 1;
  262. font-size: 28rpx;
  263. font-weight: 500;
  264. line-height: 80rpx;
  265. display: flex;
  266. justify-content: space-between;
  267. .red {
  268. display: block;
  269. font-size: 28rpx;
  270. font-weight: 500;
  271. color: #999999 !important;
  272. margin-right: 10rpx;
  273. }
  274. .line-thr {
  275. display: block;
  276. font-size: 28rpx;
  277. font-weight: 400;
  278. color: #999999;
  279. text-decoration: line-through;
  280. }
  281. .count {
  282. font-size: 24rpx;
  283. font-weight: 400;
  284. color: #999999;
  285. margin-right: 30rpx;
  286. }
  287. }
  288. }
  289. }
  290. }
  291. .a-t {
  292. padding: 0 30rpx;
  293. display: flex;
  294. justify-content: space-between;
  295. height: 44rpx;
  296. margin-bottom: 20rpx;
  297. }
  298. .a-m {
  299. padding: 0 30rpx;
  300. .am1 {
  301. display: flex;
  302. justify-content: space-between;
  303. margin-bottom: 20rpx;
  304. .am1-1 {
  305. height: 40rpx;
  306. font-size: 28rpx;
  307. font-weight: 400;
  308. color: #111111;
  309. line-height: 40rpx;
  310. }
  311. .am1-2 {
  312. height: 36rpx;
  313. font-size: 20rpx;
  314. font-weight: 400;
  315. color: #666666;
  316. line-height: 36rpx;
  317. image {
  318. margin-left: 30rpx;
  319. vertical-align: middle;
  320. height: 34rpx;
  321. width: 34rpx;
  322. }
  323. }
  324. }
  325. .am2 {
  326. margin-bottom: 20rpx;
  327. height: 34rpx;
  328. font-size: 24rpx;
  329. font-weight: 400;
  330. color: #999999;
  331. line-height: 34rpx;
  332. }
  333. }
  334. .a-b {
  335. padding: 0 30rpx;
  336. width: 100%;
  337. background: #FFF7F8;
  338. border: 1px solid dashed #333333;
  339. height: 60rpx;
  340. line-height: 60rpx;
  341. display: flex;
  342. justify-content: space-between;
  343. .a-b1 {
  344. font-size: 20rpx;
  345. font-weight: 400;
  346. color: #666666;
  347. .red {
  348. font-size: 20rpx;
  349. font-weight: 500;
  350. color: #B22338;
  351. }
  352. }
  353. .a-b2 {
  354. image {
  355. vertical-align: middle;
  356. margin-right: 30rpx;
  357. margin-left: 30rpx;
  358. height: 34rpx;
  359. width: 34rpx;
  360. }
  361. }
  362. }
  363. .self-pickup-point {
  364. background: #FFF7F8;
  365. margin: 0 30rpx;
  366. }
  367. .op-area {
  368. margin-top: 20rpx;
  369. height: 64rpx;
  370. display: flex;
  371. justify-content: flex-end;
  372. line-height: 64rpx;
  373. text-align: right;
  374. .action-btn {
  375. min-width: 200rpx;
  376. background: #FFF7F8;
  377. border-radius: 32rpx;
  378. border: 2rpx solid #B22338;
  379. margin-right: 30rpx;
  380. height: 64rpx;
  381. font-size: 24rpx;
  382. font-weight: 400;
  383. color: #B22338;
  384. line-height: 64rpx;
  385. }
  386. .info-btn {
  387. width: 200rpx;
  388. background: #F5F5F5;
  389. border-radius: 32rpx;
  390. margin-right: 30rpx;
  391. height: 64rpx;
  392. font-size: 24rpx;
  393. font-weight: 400;
  394. color: #666666;
  395. line-height: 64rpx;
  396. }
  397. }
  398. .Ended {
  399. color: #666666 !important;
  400. }
  401. .Refused {
  402. color: #B42A3E !important;
  403. }
  404. .success {
  405. color: #75BE00 !important;
  406. }
  407. .publish {
  408. position: fixed;
  409. bottom: 0;
  410. height: 100rpx;
  411. width: 100%;
  412. background: #F9F9F9;
  413. button {
  414. width: 90%;
  415. height: 84rpx;
  416. background: #B42A3E;
  417. border-radius: 8rpx;
  418. position: relative;
  419. top: 0;
  420. margin: auto;
  421. font-size: 28rpx;
  422. font-weight: 400;
  423. color: #FFFFFF;
  424. line-height: 84rpx;
  425. }
  426. }
  427. </style>