Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
xysBooking
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2024-01-29 10:43:37 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
10a64d2e1a44def023b07bbf0c97b4ad98a5f98f
10a64d2e
1 parent
7e4af5e9
fix 修复订单详情状态判断问题,已使用状态为9
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
9 deletions
.env.development
src/components/qrCode.vue
src/components/qrCodeSearch.vue
.env.development
View file @
10a64d2
...
...
@@ -6,8 +6,8 @@ VITE_BASE = /
# VITE_OPENID = o8BRf1gLDWieH3Y3JvbrI_4IjaME
# VITE_OPENID = oJLZq5t9PIKLW9tm1oSUNAuPwssA
# VITE_OPENID = oJLZq5uT_6GwIh2tQWh1F9IoHZ3U
VITE_OPENID = o5CsxuF5AfUirRn4VUwaCSNZrUoM
# VITE_OPENID =
#
VITE_OPENID = o5CsxuF5AfUirRn4VUwaCSNZrUoM
VITE_OPENID = o5CsxuLo0afvJXB8xu6quygh4MPY
# B端账号
VITE_ID = 13761653761
...
...
@@ -17,7 +17,8 @@ VITE_PIN =
# 反向代理服务器地址
# VITE_PROXY_TARGET = https://oa-dev.onwall.cn
VITE_PROXY_TARGET = http://oa.onwall.cn
# VITE_PROXY_TARGET = http://oa.onwall.cn
VITE_PROXY_TARGET = https://oa.jcedu.org
# PC端地址
VITE_MOBILE_URL = http://localhost:5173/
...
...
src/components/qrCode.vue
View file @
10a64d2
<!--
* @Date: 2024-01-16 10:06:47
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-01-29 10:
09:15
* @LastEditTime: 2024-01-29 10:
41:49
* @FilePath: /xysBooking/src/components/qrCode.vue
* @Description: 预约码卡组件
-->
...
...
@@ -137,14 +137,14 @@ const qr_code_status = {
'1': '未激活',
'3': '待使用',
'5': '被取消',
'
7': '已使用'
'
9': '已使用',
};
const STATUS_CODE = {
APPLY: '1',
SUCCESS: '3',
CANCELED: '5',
USED: '
7
'
USED: '
9
'
};
// const refreshBtn = async () => {
...
...
src/components/qrCodeSearch.vue
View file @
10a64d2
<!--
* @Date: 2024-01-16 10:06:47
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-01-29 10:
02:05
* @LastEditTime: 2024-01-29 10:
42:11
* @FilePath: /xysBooking/src/components/qrCodeSearch.vue
* @Description: 预约码卡组件
-->
...
...
@@ -98,14 +98,14 @@ const qr_code_status = {
'1': '未激活',
'3': '待使用',
'5': '被取消',
'
7': '已使用'
'
9': '已使用',
};
const STATUS_CODE = {
APPLY: '1',
SUCCESS: '3',
CANCELED: '5',
USED: '
7
'
USED: '
9
'
};
const formatStatus = (status) => {
...
...
Please
register
or
login
to post a comment