Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuy-portal-fe
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
姜敏
2016-05-06 11:29:36 +0800
Commit
50226be02aa59cf980fae81d0390f844caff49ca
2 parents
17794bdd
a78567d3
Merge branch 'release/1.6' of
http://git.dev.yoho.cn/platform/yohobuy-portal-fe
into release/1.6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
client/js/goods/yohoCoin.js
client/js/store/info.js
server/views/pages/store/edit.html
client/js/goods/yohoCoin.js
View file @
50226be
...
...
@@ -144,10 +144,10 @@ function ajaxUploadSubmit(importAuditorId){
productPrices
:
JSON
.
stringify
(
importYohoCoinData
)
}
},
function
(
rs
){
if
(
rs
.
code
==
200
){
if
(
rs
.
data
.
code
==
200
){
common
.
util
.
__tip
(
"批量导入保存成功!"
,
"success"
);
}
else
{
common
.
util
.
__tip
(
rs
.
message
);
common
.
util
.
__tip
(
rs
.
data
.
message
);
}
},
true
);
}
...
...
client/js/store/info.js
View file @
50226be
...
...
@@ -5,7 +5,7 @@ var $ = require('jquery'),
common
=
require
(
'../common/common'
);
var
ENUM
=
{
shopNature
:{
1
:
'旗舰店'
,
2
:
'
直营
店'
},
shopNature
:{
1
:
'旗舰店'
,
2
:
'
专卖
店'
},
shopsType
:{
1
:
'单品店'
,
2
:
'多品店'
},
checkStatus
:{
100
:
'暂存'
,
200
:
'审核中'
,
300
:
'通过'
,
900
:
'驳回'
},
opt
:{
"add"
:
"添加"
,
"delete"
:
"删除"
},
...
...
server/views/pages/store/edit.html
View file @
50226be
...
...
@@ -46,7 +46,7 @@
<select
name=
"shopNature"
id=
"shopNature"
value=
'{{shopNature}}'
required
class=
"form-control"
>
<option
value=
"-1"
>
店铺类型
</option>
<option
value=
"1"
>
旗舰店
</option>
<option
value=
"2"
>
直营
店
</option>
<option
value=
"2"
>
专卖
店
</option>
</select>
</div>
</div>
...
...
Please
register
or
login
to post a comment