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
169e6f13
Commit
169e6f13
authored
Jun 19, 2018
by
xishifeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
业绩暂存
parent
740b465b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
80 deletions
+4
-80
index.html
application/app_broker/view/index/index.html
+1
-2
houseResource.vue
public/appnew/src/components/achieveMain/houseResource.vue
+3
-15
houseResourceLi.vue
public/appnew/src/components/achieveMain/houseResourceLi.vue
+0
-63
No files found.
application/app_broker/view/index/index.html
View file @
169e6f13
<!DOCTYPE html>
<html><head><meta
charset=
utf-8
><meta
name=
viewport
content=
"width=device-width,initial-scale=1"
><title>
同联商业
</title><script
type=
text/javascript
src=
/app/dist/vconsole.min.js
></script><script
type=
text/javascript
>
if
(
~
location
.
origin
.
indexOf
(
'api.tonglianjituan.com'
)){
console
.
log
(
'正式服'
)}
else
{
var
vConsole
=
new
VConsole
()};
</script><link
href=
/app/dist/static/css/app.750242cf94fc6a1c837832b2967fa5df.css
rel=
stylesheet
></head><body><div
id=
app
></div><script
type=
text/javascript
src=
/app/dist/static/js/manifest.3ad1d5771e9b13dbdad2.js
></script><script
type=
text/javascript
src=
/app/dist/static/js/vendor.94d51f6620cb57f6116c.js
></script><script
type=
text/javascript
src=
/app/dist/static/js/app.7f39005f105af47b007a.js
></script></body></html>
<!DOCTYPE html>
<html><head><meta
charset=
utf-8
><meta
name=
viewport
content=
"width=device-width,initial-scale=1"
><title>
同联商业
</title><script
type=
text/javascript
src=
/app/dist/vconsole.min.js
></script><script
type=
text/javascript
>
if
(
~
location
.
origin
.
indexOf
(
'api.tonglianjituan.com'
)){
console
.
log
(
'正式服'
)}
else
{
var
vConsole
=
new
VConsole
()};
</script><link
href=
/app/dist/static/css/app.750242cf94fc6a1c837832b2967fa5df.css
rel=
stylesheet
></head><body><div
id=
app
></div><script
type=
text/javascript
src=
/app/dist/static/js/manifest.3ad1d5771e9b13dbdad2.js
></script><script
type=
text/javascript
src=
/app/dist/static/js/vendor.94d51f6620cb57f6116c.js
></script><script
type=
text/javascript
src=
/app/dist/static/js/app.7f39005f105af47b007a.js
></script></body></html>
\ No newline at end of file
public/appnew/src/components/achieveMain/houseResource.vue
View file @
169e6f13
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<div>
<div>
<header-pulic
:data=
"headerData"
></header-pulic>
<header-pulic
:data=
"headerData"
></header-pulic>
<ul>
<ul>
<li
is=
"house-resource-li"
v-for=
"(item, index) in mainDataList"
></li>
<li
is=
"house-resource-li"
v-for=
"(item, index) in mainDataList"
:data=
"item"
:dataindex=
"index"
></li>
</ul>
</ul>
</div>
</div>
</
template
>
</
template
>
...
@@ -12,25 +12,13 @@
...
@@ -12,25 +12,13 @@
import
achieveHouseResource
from
'@/components/achieveMain/houseResourceLi'
;
import
achieveHouseResource
from
'@/components/achieveMain/houseResourceLi'
;
export
default
{
export
default
{
name
:
''
,
name
:
''
,
props
:
{
data
:
{
type
:
Object
,
default
:
()
=>
({
message
:
'hello'
})
},
dataindex
:
{
type
:
[
Number
,
String
],
default
:
0
}
},
components
:
{
components
:
{
'house-resource-li'
:
achieveHouseResource
'house-resource-li'
:
achieveHouseResource
},
},
data
:
()
=>
({
data
:
()
=>
({
headerData
:
{
headerData
:
{
'title'
:
'房源'
,
'title'
:
'房源'
,
'noborder'
:
tru
e
,
'noborder'
:
fals
e
,
'isBack'
:
true
'isBack'
:
true
},
},
mainDataList
:
[]
mainDataList
:
[]
...
@@ -57,7 +45,7 @@
...
@@ -57,7 +45,7 @@
if
(
response
.
data
.
code
==
200
)
{
if
(
response
.
data
.
code
==
200
)
{
if
(
response
.
data
.
data
){
if
(
response
.
data
.
data
){
if
(
Array
.
isArray
(
response
.
data
.
data
)
&&
response
.
data
.
data
.
length
>
0
){
if
(
Array
.
isArray
(
response
.
data
.
data
)
&&
response
.
data
.
data
.
length
>
0
){
_this
.
mainDataList
=
response
.
data
.
data
_this
.
mainDataList
=
response
.
data
.
data
;
}
else
{
}
else
{
};
};
...
...
public/appnew/src/components/achieveMain/houseResourceLi.vue
deleted
100644 → 0
View file @
740b465b
<
template
>
<li>
<div>
<div>
<div>
恒大国际广场
</div>
<div>
12-55㎡
</div>
<div>
<mark>
小面积
</mark>
<mark>
随时看房
</mark>
<mark>
沿街旺铺
</mark>
</div>
</div>
<div>
20000元/月
</div>
<div>
<div>
已下架
</div>
</div>
</div>
</li>
</
template
>
<
script
>
import
'@/assets/js/layer041002.js'
;
export
default
{
name
:
''
,
props
:
{
data
:
{
type
:
Object
,
default
:
()
=>
({
message
:
'hello'
})
},
dataindex
:
{
type
:
[
Number
,
String
],
default
:
0
}
},
components
:
{
},
data
:
()
=>
({
}),
created
()
{
let
_this
=
this
;
},
mounted
()
{
let
_this
=
this
;
},
methods
:
{
},
computed
:
{
}
}
</
script
>
<
style
scoped
>
</
style
>
\ No newline at end of file
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