Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
self-support
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李俊赕
self-support
Commits
da7e20d1
Commit
da7e20d1
authored
Apr 29, 2021
by
Morson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改错误
parent
04f679e0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
24 deletions
+23
-24
.env.dev.js
.env.dev.js
+14
-14
.env.prod.js
.env.prod.js
+1
-1
.env.test.js
.env.test.js
+1
-1
feedback.vue
src/pages/order/feedback.vue
+7
-8
No files found.
.env.dev.js
View file @
da7e20d1
const
UNI_APP
=
{
ucenterUrl
:
{
apiUrl
:
'http://rest-u.yunya.com'
,
//php端域名请求头
xueUrl
:
'http://xue.yunya.com'
,
//学院
// banshou: 'https://m.banshou.com', //扳手app
},
systemUrl
:
{
apiUrl
:
'http://192.168.1.22'
,
//java端域名请求头
// apiUrl: 'http://apidoc.banshouhui.com:3000/mock/31', // mock端域名请求头
},
qn_base_url
:
'https://qn-static.banshouhui.com/self-support/'
,
,
qn_asset_url
:
'http://deudn.c.pp.cc/'
}
module
.
exports
=
UNI_APP
;
const
UNI_APP
=
{
ucenterUrl
:
{
apiUrl
:
'http://rest-u.yunya.com'
,
//php端域名请求头
xueUrl
:
'http://xue.yunya.com'
,
//学院
// banshou: 'https://m.banshou.com', //扳手app
},
systemUrl
:
{
apiUrl
:
'http://192.168.1.22'
,
//java端域名请求头
// apiUrl: 'http://apidoc.banshouhui.com:3000/mock/31', // mock端域名请求头
},
qn_base_url
:
'https://qn-static.banshouhui.com/self-support/'
,
qn_asset_url
:
'http://deudn.c.pp.cc/'
}
module
.
exports
=
UNI_APP
;
.env.prod.js
View file @
da7e20d1
...
...
@@ -8,7 +8,7 @@ const UNI_APP = {
apiUrl
:
'https://system.banshouhui.com'
,
//java端域名请求头
},
qn_base_url
:
'https://qn-static.banshouhui.com/self-support/'
,
qn_asset_url
:
'http
://deudn.c.pp.cc/
'
qn_asset_url
:
'http
s://qn-static.banshouhui.com
'
}
module
.
exports
=
UNI_APP
;
.env.test.js
View file @
da7e20d1
...
...
@@ -8,6 +8,6 @@ const UNI_APP = {
apiUrl
:
'https://system.dev.banshouhui.com'
,
//java端域名请求头
},
qn_base_url
:
'https://qn-static.banshouhui.com/self-support/'
,
qn_asset_url
:
'http
://deudn.c.pp.cc/
'
qn_asset_url
:
'http
s://qn-static.banshouhui.com
'
}
module
.
exports
=
UNI_APP
;
src/pages/order/feedback.vue
View file @
da7e20d1
...
...
@@ -126,10 +126,8 @@ export default {
nextTraceDatetime
:
''
,
// 下次跟踪时间
remark
:
''
// 备注
},
appointTime
:
{
dateItem
:
{},
timeItem
:
{}
},
dateItem
:
null
,
timeItem
:
null
,
showRemark
:
false
,
submiting
:
false
,
curTab
:
0
,
...
...
@@ -228,7 +226,8 @@ export default {
self
.
showRemark
=
true
;
if
(
self
.
dateList
&&
self
.
timeList
)
{
self
.
timeList
.
map
((
item
,
index
)
=>
{
if
(
self
.
dateList
.
indexOf
(
item
.
pkey
)
>
-
1
)
{
if
(
self
.
dateItem
&&
self
.
dateItem
.
timeRange
.
indexOf
(
item
.
pkey
)
>
-
1
)
{
item
.
disabled
=
true
;
}
else
{
item
.
disabled
=
false
;
...
...
@@ -300,7 +299,7 @@ export default {
// 点击日期选择
console
.
log
(
data
,
'week-data'
);
let
self
=
this
;
self
.
appointTime
.
dateItem
=
data
.
item
self
.
dateItem
=
data
.
item
if
(
self
.
trace
.
reasonType
==
'报备'
)
{
self
.
trace
.
appointmentDatetime
=
null
;
self
.
trace
.
nextTraceDatetime
=
data
.
item
.
day
;
...
...
@@ -323,8 +322,8 @@ export default {
timeChange
(
data
)
{
// 时间段选择变化
console
.
log
(
data
,
'week-data'
);
this
.
trace
.
appointmentDatetimeRange
=
data
.
item
;
this
.
appointTime
.
timeItem
=
data
.
item
this
.
trace
.
appointmentDatetimeRange
=
data
.
item
.
pkey
;
this
.
timeItem
=
data
.
item
},
async
submitForm
()
{
let
self
=
this
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment