Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
W
WX_h5
Project
Project
Details
Activity
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
godwithdh
WX_h5
Commits
2b03b25c
Commit
2b03b25c
authored
Mar 23, 2020
by
godwithdh
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://47.110.145.204:8085/godwithdh/wx_h5
parents
cbf384d1
d9dbfb3b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
9 deletions
+18
-9
host.js
src/libs/host.js
+2
-2
http.js
src/libs/http.js
+8
-4
main.js
src/main.js
+4
-1
operateDetail.vue
src/view/tiip/kanban/operateDetail.vue
+2
-2
track.vue
src/view/tiip/profitAnalysis/track.vue
+2
-0
No files found.
src/libs/host.js
View file @
2b03b25c
...
...
@@ -14,8 +14,8 @@ function urlFun(name){
*/
// default:`http://192.168.4.34:5001`,
// default:`https://weixin.huansi.net/apiproxy/huansi/hszh_HSFabricTradeTest`,
default
:
`https://weixin.huansi.net/apiproxy/huansi/service/proxy/
${
userID
}
`
,
//
default:`https://weixin.huansi.net/apiproxy/huansi/service/proxy/${userID}`,
default
:
`https://weixin.huansi.net/apiproxy/huansi/Tip`
,
/**
* 基本地址
*/
...
...
src/libs/http.js
View file @
2b03b25c
...
...
@@ -14,7 +14,7 @@ Http.install = function (Vue) {
* @param toast 是否提示
* @returns {string}
*/
Vue
.
prototype
.
request
=
function
(
method
,
opts
,
toast
,
header
)
{
Vue
.
prototype
.
request
=
function
(
method
,
opts
,
toast
,
header
=
{}
)
{
let
m
=
methodMap
[
method
];
if
(
m
)
{
let
optsType
=
typeof
(
opts
);
...
...
@@ -33,7 +33,7 @@ Http.install = function (Vue) {
}
let
_params
=
opts
.
hasOwnProperty
(
'params'
)
?
opts
.
params
:
{};
let
url
=
new
HSHttpClient
(
apiURL
(
m
.
host
)
+
m
.
url
,{},
_params
).
newUrl
;
if
(
m
.
method
===
'get'
)
{
return
Vue
.
prototype
.
apiGet
(
url
,
opts
.
data
,
toast
,
header
);
}
else
if
(
m
.
method
===
'post'
)
{
...
...
@@ -53,7 +53,9 @@ Http.install = function (Vue) {
* @param toast 是否显示 modal
* @returns {Promise}
*/
Vue
.
prototype
.
apiPost
=
function
(
url
,
data
,
toast
=
false
,
header
)
{
Vue
.
prototype
.
apiPost
=
function
(
url
,
data
,
toast
=
false
,
header
=
{})
{
!!
store
.
state
.
iProjectId
&&
(
header
.
iProjectId
=
store
.
state
.
iProjectId
);
for
(
let
x
in
header
){
AsInst
.
defaults
.
headers
.
common
[
x
]
=
header
[
x
];
}
...
...
@@ -91,7 +93,9 @@ Http.install = function (Vue) {
* @param data 请求数据
* @returns {Promise}
*/
Vue
.
prototype
.
apiGet
=
function
(
url
,
data
,
toast
=
false
,
header
)
{
Vue
.
prototype
.
apiGet
=
function
(
url
,
data
,
toast
=
false
,
header
=
{})
{
!!
store
.
state
.
iProjectId
&&
(
header
.
iProjectId
=
store
.
state
.
iProjectId
);
if
(
toast
&&
typeof
(
toast
)
===
'boolean'
)
{
loading
();
}
else
if
(
toast
&&
typeof
(
toast
)
===
'string'
)
{
...
...
src/main.js
View file @
2b03b25c
...
...
@@ -66,8 +66,11 @@ FastClick.attach(document.body)
Vue
.
config
.
productionTip
=
false
;
router
.
beforeEach
((
to
,
from
,
next
)
=>
{
if
(
to
.
pa
th
.
indexOf
(
'shopVersion'
)
!=
-
1
&&
to
.
pa
rams
.
hasOwnProperty
(
'iProjectId'
)){
if
(
to
.
params
.
hasOwnProperty
(
'iProjectId'
)){
store
.
dispatch
(
'setIproject'
,
to
.
params
.
iProjectId
);
}
else
if
(
to
.
query
.
hasOwnProperty
(
'iProjectId'
)){
console
.
log
(
to
.
query
.
iProjectId
)
store
.
dispatch
(
'setIproject'
,
to
.
query
.
iProjectId
);
}
if
(
to
.
name
!=
'tiipOperateDetail'
){
store
.
dispatch
(
"CAHNGE_META_INFO"
,
{
title
:
to
.
meta
.
title
})
...
...
src/view/tiip/kanban/operateDetail.vue
View file @
2b03b25c
...
...
@@ -424,9 +424,9 @@ export default {
},
{
width
:
'30%'
,
name
:
'
业务员
'
,
name
:
'
坯数
'
,
align
:
'center'
,
field
:
'
sCreatorHTML
'
,
field
:
'
nInPieceQty
'
,
underline
:
true
}
]
...
...
src/view/tiip/profitAnalysis/track.vue
View file @
2b03b25c
...
...
@@ -157,6 +157,7 @@ import Util from '@/libs/util.js'
import
customerTable
from
'@/components/Table'
import
{
mapState
}
from
'vuex'
import
{
XButton
}
from
'vux'
import
host
from
'@/libs/host.js'
export
default
{
name
:
'profitAnalysisTrack'
,
...
...
@@ -216,6 +217,7 @@ export default {
},
async
mounted
(){
window
.
d
=
this
;
console
.
log
(
host
)
},
async
activated
(){
// window.removeEventListener("resize", this.renderResize, false)
...
...
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