index.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. <!-- 收银台 -->
  2. <template>
  3. <s-layout title="收银台">
  4. <view class="bg-white ss-modal-box ss-flex-col">
  5. <!-- 订单信息 -->
  6. <view class="modal-header ss-flex-col ss-col-center ss-row-center">
  7. <view class="money-box ss-m-b-20">
  8. <text class="money-text">{{ fen2yuan(state.orderInfo.price) }}</text>
  9. </view>
  10. <view class="time-text">
  11. <text>{{ payDescText }}</text>
  12. </view>
  13. </view>
  14. <!-- 支付方式 -->
  15. <view class="modal-content ss-flex-1">
  16. <view class="pay-title ss-p-l-30 ss-m-y-30">选择支付方式</view>
  17. <radio-group @change="onTapPay">
  18. <label class="pay-type-item" v-for="item in state.payMethods" :key="item.title">
  19. <view
  20. class="pay-item ss-flex ss-col-center ss-row-between ss-p-x-30 border-bottom"
  21. :class="{ 'disabled-pay-item': item.disabled }"
  22. >
  23. <view class="ss-flex ss-col-center">
  24. <image
  25. class="pay-icon"
  26. v-if="item.disabled"
  27. :src="sheep.$url.static('/static/img/shop/pay/cod_disabled.png')"
  28. mode="aspectFit"
  29. />
  30. <image
  31. class="pay-icon"
  32. v-else
  33. :src="sheep.$url.static(item.icon)"
  34. mode="aspectFit"
  35. />
  36. <text class="pay-title">{{ item.title }}</text>
  37. </view>
  38. <view class="check-box ss-flex ss-col-center ss-p-l-10">
  39. <view class="userInfo-money ss-m-r-10" v-if="item.value === 'wallet'">
  40. 余额: {{ fen2yuan(userWallet.balance) }}元
  41. </view>
  42. <radio
  43. :value="item.value"
  44. color="var(--ui-BG-Main)"
  45. style="transform: scale(0.8)"
  46. :disabled="item.disabled"
  47. :checked="state.payment === item.value"
  48. />
  49. </view>
  50. </view>
  51. </label>
  52. </radio-group>
  53. </view>
  54. <!-- 工具 -->
  55. <view class="modal-footer ss-flex ss-row-center ss-col-center ss-m-t-80 ss-m-b-40">
  56. <button v-if="state.payStatus === 0" class="ss-reset-button past-due-btn">
  57. 检测支付环境中
  58. </button>
  59. <button v-else-if="state.payStatus === -1" class="ss-reset-button past-due-btn" disabled>
  60. 支付已过期
  61. </button>
  62. <button
  63. v-else
  64. class="ss-reset-button save-btn"
  65. @tap="onPay"
  66. :disabled="state.payStatus !== 1"
  67. :class="{ 'disabled-btn': state.payStatus !== 1 }"
  68. >
  69. 立即支付
  70. </button>
  71. </view>
  72. </view>
  73. </s-layout>
  74. </template>
  75. <script setup>
  76. import { computed, reactive } from 'vue';
  77. import { onLoad } from '@dcloudio/uni-app';
  78. import sheep from '@/sheep';
  79. import { fen2yuan, useDurationTime } from '@/sheep/hooks/useGoods';
  80. import PayOrderApi from '@/sheep/api/pay/order';
  81. import PayChannelApi from '@/sheep/api/pay/channel';
  82. import { getPayMethods } from '@/sheep/platform/pay';
  83. import md5 from 'blueimp-md5';
  84. const userWallet = computed(() => sheep.$store('user').userWallet);
  85. // 检测支付环境
  86. const state = reactive({
  87. orderType: 'goods', // 订单类型; goods - 商品订单, recharge - 充值订单
  88. orderInfo: {}, // 支付单信息
  89. payStatus: 0, // 0=检测支付环境, -2=未查询到支付单信息, -1=支付已过期, 1=待支付,2=订单已支付
  90. payMethods: [], // 可选的支付方式
  91. payment: '', // 选中的支付方式
  92. });
  93. const onPay = () => {
  94. if (state.payment === '') {
  95. sheep.$helper.toast('请选择支付方式');
  96. return;
  97. }
  98. if (state.payment === 'wallet') {
  99. uni.showModal({
  100. title: '提示',
  101. content: '确定要支付吗?',
  102. success: function (res) {
  103. if (res.confirm) {
  104. sheep.$platform.pay(state.payment, state.orderType, state.orderInfo.id);
  105. }
  106. },
  107. });
  108. } else {
  109. sheep.$platform.pay(state.payment, state.orderType, state.orderInfo.id);
  110. }
  111. };
  112. // 支付文案提示
  113. const payDescText = computed(() => {
  114. if (state.payStatus === 2) {
  115. return '该订单已支付';
  116. }
  117. if (state.payStatus === 1) {
  118. const time = useDurationTime(state.orderInfo.expireTime);
  119. if (time.ms <= 0) {
  120. state.payStatus = -1;
  121. return '';
  122. }
  123. return `剩余支付时间 ${time.h}:${time.m}:${time.s} `;
  124. }
  125. if (state.payStatus === -2) {
  126. return '未查询到支付单信息';
  127. }
  128. return '';
  129. });
  130. // 状态转换:payOrder.status => payStatus
  131. function checkPayStatus() {
  132. if (state.orderInfo.status === 10
  133. || state.orderInfo.status === 20 ) { // 支付成功
  134. state.payStatus = 2;
  135. return;
  136. }
  137. if (state.orderInfo.status === 30) { // 支付关闭
  138. state.payStatus = -1;
  139. return;
  140. }
  141. state.payStatus = 1; // 待支付
  142. }
  143. // 切换支付方式
  144. function onTapPay(e) {
  145. state.payment = e.detail.value;
  146. }
  147. // 设置支付订单信息
  148. async function setOrder(id) {
  149. // 获得支付订单信息
  150. const { data, code } = await PayOrderApi.getOrder(id);
  151. if (code !== 0 || !data) {
  152. state.payStatus = -2;
  153. return;
  154. }
  155. state.orderInfo = data;
  156. // 获得支付方式
  157. await setPayMethods();
  158. // 设置支付状态
  159. checkPayStatus();
  160. }
  161. // 设置支付订单信息
  162. async function setPayOrder(id) {
  163. // 获得支付订单信息
  164. const { data, code } = await PayOrderApi.getPayOrder(id);
  165. if (code !== 0 || !data) {
  166. state.payStatus = -2;
  167. return;
  168. }
  169. state.orderInfo = data;
  170. // 获得支付方式
  171. await setPayMethods();
  172. // 设置支付状态
  173. checkPayStatus();
  174. }
  175. // 获得支付方式
  176. async function setPayMethods() {
  177. const { data, code } = await PayChannelApi.getEnableChannelCodeList(state.orderInfo.appId)
  178. if (code !== 0) {
  179. return
  180. }
  181. state.payMethods = getPayMethods(data)
  182. }
  183. onLoad((options) => {
  184. if (sheep.$platform.name === 'WechatOfficialAccount'
  185. && sheep.$platform.os === 'ios'
  186. && !sheep.$platform.landingPage.includes('pages/pay/index')) {
  187. location.reload();
  188. return;
  189. }
  190. // 获得支付订单信息
  191. // console.log(options)
  192. let id = options.id;
  193. if (options.orderType) {
  194. state.orderType = options.orderType;
  195. }
  196. if(options.openType == 2){
  197. setPayOrder(id)
  198. }else{
  199. // console.log(123)
  200. setOrder(id);
  201. }
  202. // 刷新钱包的缓存
  203. sheep.$store('user').getWallet();
  204. });
  205. </script>
  206. <style lang="scss" scoped>
  207. .pay-icon {
  208. width: 36rpx;
  209. height: 36rpx;
  210. margin-right: 26rpx;
  211. }
  212. .ss-modal-box {
  213. // max-height: 1000rpx;
  214. .modal-header {
  215. position: relative;
  216. padding: 60rpx 20rpx 40rpx;
  217. .money-text {
  218. color: $red;
  219. font-size: 46rpx;
  220. font-weight: bold;
  221. font-family: OPPOSANS;
  222. &::before {
  223. content: '¥';
  224. font-size: 30rpx;
  225. }
  226. }
  227. .time-text {
  228. font-size: 26rpx;
  229. color: $gray-b;
  230. }
  231. .close-icon {
  232. position: absolute;
  233. top: 10rpx;
  234. right: 20rpx;
  235. font-size: 46rpx;
  236. opacity: 0.2;
  237. }
  238. }
  239. .modal-content {
  240. overflow-y: auto;
  241. .pay-title {
  242. font-size: 26rpx;
  243. font-weight: 500;
  244. color: #333333;
  245. }
  246. .pay-tip {
  247. font-size: 26rpx;
  248. color: #bbbbbb;
  249. }
  250. .pay-item {
  251. height: 86rpx;
  252. }
  253. .disabled-pay-item {
  254. .pay-title {
  255. color: #999999;
  256. }
  257. }
  258. .userInfo-money {
  259. font-size: 26rpx;
  260. color: #bbbbbb;
  261. line-height: normal;
  262. }
  263. }
  264. .save-btn {
  265. width: 710rpx;
  266. height: 80rpx;
  267. border-radius: 40rpx;
  268. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  269. color: $white;
  270. }
  271. .disabled-btn {
  272. background: #e5e5e5;
  273. color: #999999;
  274. }
  275. .past-due-btn {
  276. width: 710rpx;
  277. height: 80rpx;
  278. border-radius: 40rpx;
  279. background-color: #999;
  280. color: #fff;
  281. }
  282. }
  283. </style>