refundselect.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. <template>
  2. <view class="">
  3. <u-navbar title="选择退款信息" :placeholder="true" @leftClick="leftClick" :autoBack="false" :safeAreaInsetTop="true">
  4. </u-navbar>
  5. <view class="item-list">
  6. <!-- <view class="til u-flex u-row-between" :style="{top:navHeight+'px'}">
  7. <u-checkbox-group @change="allCheckboxChange">
  8. <u-checkbox shape="circle" :checked="allChecked" :name="allCheckbox.name"
  9. label="观影人列表"></u-checkbox>
  10. </u-checkbox-group>
  11. </view> -->
  12. <u-checkbox-group placement="column" @change="checkboxChange">
  13. <view v-for="(item,index) in dataList" :key="item.id" class="item u-flex">
  14. <u-checkbox shape="circle" :disabled="item.status !== 3" activeColor="#ED0000" :key="index"
  15. :name="item.name" :checked="item.checked" @change="toggleCheck(index)" class="checkbox" />
  16. <view class="text" @click="toggleCheck(index)">
  17. <view class="up u-flex u-row-between">
  18. <view class="left">订单编号:{{item.orderId}}</view>
  19. <view class="right status" :class="item.class">{{item.status|filterOrderState}}</view>
  20. </view>
  21. <view class="down u-flex u-row-between">
  22. <view class="left">
  23. <view class="name">观影人:{{item.name}}</view>
  24. <view class="idcard">身份证号:{{item.idcard}}</view>
  25. </view>
  26. <view class="right">
  27. ¥ {{item.viewerSalePrice}}
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. </u-checkbox-group>
  33. </view>
  34. <view class="cart-bottom">
  35. <view class="inner u-flex u-row-between">
  36. <view class="left u-flex">
  37. <view class="checkbox" @click="checkboxClick" style="padding: 10px;">
  38. <u-checkbox-group @change="allCheckboxChange">
  39. <u-checkbox shape="circle" :checked="allChecked" activeColor="#ED0000" :name="allCheckbox.name"
  40. label="全选"></u-checkbox>
  41. </u-checkbox-group>
  42. </view>
  43. <view class="total-price-wrap u-flex">
  44. <view class="total">共{{selectGoods.length}}张</view>
  45. <view class="totalPrice u-flex">
  46. 合计: <text class="num"> {{totalPrice}}</text>
  47. </view>
  48. </view>
  49. </view>
  50. <view class="btn active" v-if="selectGoods.length>0&&cansubmit" @click="submitorder">确定</view>
  51. <view class="btn" v-else>确定</view>
  52. </view>
  53. </view>
  54. <u-toast ref="uToast"></u-toast>
  55. </view>
  56. </template>
  57. <script>
  58. import {
  59. systemInfo
  60. } from "@/mixin.js";
  61. export default {
  62. mixins: [systemInfo], // 使用mixin
  63. data() {
  64. return {
  65. orderId: '',
  66. cansubmit: true,
  67. staticUrl: this.$commonConfig.staticUrl,
  68. allCheckbox: {
  69. name: '全选'
  70. },
  71. options: [{
  72. text: '删除',
  73. style: {
  74. backgroundColor: '#FF3C3F',
  75. 'padding-left': '10px'
  76. }
  77. }],
  78. // 购物车列表
  79. dataList: [],
  80. }
  81. },
  82. computed: {
  83. // 是否全选
  84. allChecked() {
  85. return this.dataList.every(item => item.checked)
  86. },
  87. selectGoods() {
  88. let selectGoods = [];
  89. this.dataList.forEach(item => {
  90. if (item.checked) {
  91. selectGoods.push(item)
  92. }
  93. })
  94. return selectGoods
  95. },
  96. // 合计价格
  97. totalPrice() {
  98. let that = this;
  99. return this.dataList.reduce((total, item) => {
  100. if (item.checked) {
  101. let price = null;
  102. price = item.viewerSalePrice
  103. total += price;
  104. }
  105. return total;
  106. }, 0).toFixed(2);
  107. }
  108. },
  109. onLoad(page) {
  110. this.getSystemInfo();
  111. this.orderId = page.id;
  112. },
  113. onShow() {
  114. this.getViewers();
  115. },
  116. methods: {
  117. leftClick(e){
  118. let pages = getCurrentPages();
  119. if(pages.length==1){
  120. uni.$u.route('/pages/index/index')
  121. }else{
  122. uni.navigateBack()
  123. };
  124. },
  125. // 切换全选状态
  126. allCheckboxChange(n) {
  127. // console.log('allCheckboxChange',n[0]);
  128. console.log('allCheckboxChange', n);
  129. let selectAll = n[0] ? true : false;
  130. this.dataList.forEach(item => {
  131. if (item.status === 3) {
  132. item.checked = selectAll
  133. }
  134. })
  135. },
  136. checkboxClick() {
  137. // console.log('checkboxClick',this.allChecked);
  138. this.dataList.forEach(item => {
  139. if (item.status === 3) {
  140. item.checked = !this.allChecked
  141. }
  142. })
  143. },
  144. checkboxChange(n) {
  145. // console.log('checkboxChange',n);
  146. },
  147. // 切换商品选中状态
  148. toggleCheck(index) {
  149. // console.log('toggleCheck',index);
  150. if(this.dataList[index].status !== 3){
  151. uni.showToast({
  152. icon:'none',
  153. title:'该状态不能退款',
  154. duration:1000
  155. })
  156. return
  157. }
  158. this.dataList[index].checked = !this.dataList[index].checked
  159. },
  160. submitorder() {
  161. let viewerList = this.selectGoods.map(item=>{
  162. return {viewerId:item.id,salePrice:item.salePrice}
  163. });
  164. let params = {
  165. type:'redirectTo',
  166. id:this.orderId,
  167. refundAmount:this.totalPrice,
  168. viewerList:JSON.stringify(viewerList)
  169. };
  170. // console.log('selectGoods', this.selectGoods);
  171. // uni.$u.route('/center/refund', params);
  172. uni.redirectTo({
  173. url: `/center/refund?id=${this.orderId}&refundAmount=${this.totalPrice}&viewerList=${JSON.stringify(viewerList)}`
  174. })
  175. },
  176. getViewers() {
  177. this.$u.api.getViewers({
  178. orderId: this.orderId
  179. }).then(res => {
  180. this.dataList = res.data.list.map(item => {
  181. item.checked = false;
  182. return {
  183. ...item,
  184. class: {
  185. 0: 'status-0',
  186. 1: 'status-1',
  187. 2: 'status-2',
  188. 3: 'status-3',
  189. 4: 'status-4',
  190. 5: 'status-5',
  191. 6: 'status-6',
  192. 7: 'status-7',
  193. 8: 'status-8'
  194. }[item.status] || ''
  195. }
  196. })
  197. }).catch(err => {
  198. console.log('getOrderDetails', err.data);
  199. })
  200. },
  201. }
  202. }
  203. </script>
  204. <style>
  205. page {
  206. background: #F7F7F9;
  207. }
  208. </style>
  209. <style lang="scss" scoped>
  210. .item-list{
  211. margin: 28rpx 32rpx 20rpx;
  212. .item{
  213. background: #FFFFFF;
  214. border-radius: 20rpx;
  215. padding-left: 18rpx;
  216. margin-bottom: 24rpx;
  217. .text{
  218. margin-left: 20rpx;
  219. flex: 1;
  220. padding: 30rpx 32rpx 52rpx;
  221. box-shadow: -6rpx 0rpx 20rpx -18rpx rgba(0,0,0,0.5);
  222. }
  223. .up{
  224. border-bottom: 1px solid #EBEBEB;
  225. padding-bottom: 24rpx;
  226. margin-bottom: 32rpx;
  227. .left{
  228. font-size: 24rpx;
  229. font-weight: 400;
  230. color: #606060;
  231. }
  232. .status{
  233. font-size: 24rpx;
  234. font-weight: 400;
  235. color: #9E9E9E;
  236. &.status-3{
  237. color: #56CE53;
  238. }
  239. &.status-4{
  240. color: #FF6C17;
  241. }
  242. }
  243. }
  244. .down{
  245. .name{
  246. font-size: 28rpx;
  247. font-weight: 500;
  248. color: #363636;
  249. margin-bottom: 20rpx;
  250. }
  251. .idcard{
  252. font-size: 22rpx;
  253. font-weight: 400;
  254. color: #7F7F7F;
  255. }
  256. .right{
  257. font-size: 32rpx;
  258. font-weight: bold;
  259. color: #ED0000;
  260. }
  261. }
  262. }
  263. }
  264. .cart-bottom {
  265. position: relative;
  266. z-index: 1001;
  267. height: 98rpx;
  268. .inner {
  269. position: fixed;
  270. background-color: #fff;
  271. height: 98rpx;
  272. left: 0;
  273. right: 0;
  274. bottom: 0;
  275. padding: 0 20rpx;
  276. padding-left: 0;
  277. .total-price-wrap {
  278. margin-left: 30rpx;
  279. .totalPrice{
  280. font-size: 30rpx;
  281. color: #333;
  282. font-weight: 400;
  283. .num{
  284. font-size: 40rpx;
  285. font-weight: bold;
  286. color: #ED0000;
  287. margin-left: 5px;
  288. }
  289. }
  290. .total{
  291. font-size: 20rpx;
  292. font-weight: 400;
  293. color: #999999;
  294. margin-right: 16rpx;
  295. }
  296. }
  297. .btn {
  298. height: 80rpx;
  299. line-height: 80rpx;
  300. border-radius: 50rpx;
  301. padding: 0 50rpx;
  302. background-color: #eee;
  303. color: #333;
  304. text-align: center;
  305. &.active {
  306. background-color: #FF3C3F;
  307. color: #fff;
  308. }
  309. }
  310. }
  311. }
  312. </style>