Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
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
hujun
tl_estate
Commits
8d82340b
Commit
8d82340b
authored
Jul 12, 2018
by
xishifeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
查看数量限制修改
parent
64f297c2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
shop_detail_pc.html
application/app_broker/view/index/shop_detail_pc.html
+3
-2
shop_detail_pc.js
public/app/js/shop_detail_pc.js
+3
-1
No files found.
application/app_broker/view/index/shop_detail_pc.html
View file @
8d82340b
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
<body
style=
"display: none;"
>
<body
style=
"display: none;"
>
<div
id=
"app"
>
<div
id=
"app"
>
<main>
<main>
<section
v-if=
"d
.lookShopArr && (d.lookShopArr.isPanParty || (d.lookShopArr.residue_num>0))
"
>
<section
v-if=
"d
ataCode==200
"
>
<table>
<table>
<tbody>
<tbody>
<tr>
<tr>
...
@@ -127,7 +127,8 @@
...
@@ -127,7 +127,8 @@
</tbody>
</tbody>
</table>
</table>
</section>
</section>
<section
v-else
>
查看数量已达上限
</section>
<section
v-else-if=
"dataCode==102"
>
查看数量已达上限
</section>
<section
v-else
></section>
</main>
</main>
</div>
</div>
<script
src=
"/app/js/libs/require.min.js"
data-js=
"/app/js/shop_detail_pc.js"
data-main=
"/app/js/main"
data-norem=
"yes"
defer
async=
"true"
></script>
<script
src=
"/app/js/libs/require.min.js"
data-js=
"/app/js/shop_detail_pc.js"
data-main=
"/app/js/main"
data-norem=
"yes"
defer
async=
"true"
></script>
...
...
public/app/js/shop_detail_pc.js
View file @
8d82340b
...
@@ -6,11 +6,11 @@ require(['vue', 'css!style/shop_detail_pc.css', 'jquery0325', 'common'],function
...
@@ -6,11 +6,11 @@ require(['vue', 'css!style/shop_detail_pc.css', 'jquery0325', 'common'],function
el
:
'#app'
,
el
:
'#app'
,
data
:
{
data
:
{
user_info_obj
,
user_info_obj
,
dataCode
:
200
,
d
:
{}
d
:
{}
},
},
created
:
function
()
{
created
:
function
()
{
var
_this
=
this
;
var
_this
=
this
;
document
.
body
.
style
.
display
=
'block'
;
$
.
ajax
({
$
.
ajax
({
type
:
'get'
,
type
:
'get'
,
url
:
'/broker/getShopDetail'
,
url
:
'/broker/getShopDetail'
,
...
@@ -24,7 +24,9 @@ require(['vue', 'css!style/shop_detail_pc.css', 'jquery0325', 'common'],function
...
@@ -24,7 +24,9 @@ require(['vue', 'css!style/shop_detail_pc.css', 'jquery0325', 'common'],function
beforeSend
:
function
()
{},
beforeSend
:
function
()
{},
success
:
function
(
_data
)
{
success
:
function
(
_data
)
{
if
(
typeof
_data
===
'object'
)
{
if
(
typeof
_data
===
'object'
)
{
_this
.
dataCode
=
_data
[
'code'
];
if
(
_data
[
'code'
]
==
'200'
)
{
if
(
_data
[
'code'
]
==
'200'
)
{
document
.
body
.
style
.
display
=
'block'
;
_this
.
d
=
_data
.
data
;
_this
.
d
=
_data
.
data
;
}
else
{
}
else
{
layerTipsX
(
_data
[
'msg'
]);
layerTipsX
(
_data
[
'msg'
]);
...
...
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