Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
蒋勇
zhichan
Commits
fda56a5b
Commit
fda56a5b
authored
Nov 28, 2019
by
任建
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rj
parent
c656cd84
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
6 deletions
+23
-6
embed_applications/app/front/entry/public/css/pagecom.css
+0
-0
embed_applications/app/front/vues/pages/tmbigdatadetail/tmbigdatadetail.css
+8
-0
embed_applications/app/front/vues/pages/tmbigdatadetail/tmbigdatadetail.html
+1
-0
embed_applications/app/front/vues/pages/tmbigdatadetail/tmbigdatadetail.js
+5
-4
embed_applications/app/front/vues/pages/wins/wins.js
+9
-2
No files found.
embed_applications/app/front/entry/public/css/pagecom.css
View file @
fda56a5b
This diff is collapsed.
Click to expand it.
embed_applications/app/front/vues/pages/tmbigdatadetail/tmbigdatadetail.css
View file @
fda56a5b
...
@@ -11,6 +11,14 @@
...
@@ -11,6 +11,14 @@
box-sizing
:
border-box
;
box-sizing
:
border-box
;
padding
:
30px
;
padding
:
30px
;
}
}
.tmbigdatadetail-loading
{
width
:
100%
;
height
:
100%
;
position
:
fixed
;
top
:
0
;
left
:
0
;
z-index
:
999
;
}
.tmbigdatadetail-header-title
{
.tmbigdatadetail-header-title
{
width
:
100%
;
width
:
100%
;
overflow
:
hidden
;
overflow
:
hidden
;
...
...
embed_applications/app/front/vues/pages/tmbigdatadetail/tmbigdatadetail.html
View file @
fda56a5b
<div
class=
"tmbigdatadetail"
>
<div
class=
"tmbigdatadetail"
>
<div
class=
"tmbigdatadetail-loading"
v-if=
"loading"
v-loading=
"true"
></div>
<div
class=
"tmbigdatadetail-header"
>
<div
class=
"tmbigdatadetail-header"
>
<div
class=
"tmbigdatadetail-header-title"
>
<div
class=
"tmbigdatadetail-header-title"
>
<div
class=
"name"
>
{{titleName}}
</div>
<div
class=
"name"
>
{{titleName}}
</div>
...
...
embed_applications/app/front/vues/pages/tmbigdatadetail/tmbigdatadetail.js
View file @
fda56a5b
...
@@ -124,7 +124,8 @@
...
@@ -124,7 +124,8 @@
}
}
]
]
},
},
titleName
:
''
titleName
:
''
,
loading
:
false
}
}
},
},
...
@@ -159,9 +160,9 @@
...
@@ -159,9 +160,9 @@
}
else
{
}
else
{
return
return
};
};
this
.
$root
.
loading
=
true
;
this
.
loading
=
true
;
this
.
$root
.
postReq
(
url
,
obj
).
then
((
d
)
=>
{
this
.
$root
.
postReq
(
url
,
obj
).
then
((
d
)
=>
{
this
.
$root
.
loading
=
false
;
this
.
loading
=
false
;
console
.
log
(
d
,
'#######################################'
);
console
.
log
(
d
,
'#######################################'
);
this
.
tableData
=
d
.
data
.
datalist
;
this
.
tableData
=
d
.
data
.
datalist
;
var
echarts
=
this
.
$refs
.
theTotalLogoRef
.
getEchartObj
();
var
echarts
=
this
.
$refs
.
theTotalLogoRef
.
getEchartObj
();
...
@@ -188,7 +189,7 @@
...
@@ -188,7 +189,7 @@
});
});
this
.
$forceUpdate
();
this
.
$forceUpdate
();
}).
catch
(
function
(
e
)
{
}).
catch
(
function
(
e
)
{
this
.
$root
.
loading
=
false
;
this
.
loading
=
false
;
that
.
$message
.
warning
(
`操作失败,请刷新页面后重新操作`
);
that
.
$message
.
warning
(
`操作失败,请刷新页面后重新操作`
);
});
});
}
}
...
...
embed_applications/app/front/vues/pages/wins/wins.js
View file @
fda56a5b
...
@@ -134,9 +134,16 @@
...
@@ -134,9 +134,16 @@
methods
:
{
methods
:
{
/*字数长度 */
/*字数长度 */
selectedCharatCommand
(
v
)
{
selectedCharatCommand
(
v
)
{
console
.
log
(
v
,
"zishuchangdu"
);
this
.
selectedCharat
=
this
.
nameLength
[
v
];
this
.
selectedCharat
=
this
.
nameLength
[
v
];
let
num
=
parseInt
(
this
.
selectedCharat
);
let
num
=
parseInt
(
this
.
selectedCharat
);
/*修改后的值 */
/*修改后的值 */
if
(
this
.
selectedStructure
.
length
>
num
){
this
.
selectedStructure
=
"请选择商标包含结构"
;
};
if
(
this
.
inputLength
>
num
){
this
.
inputValue
=
""
;
};
var
newNum
=
this
.
inputPlaceholder
.
replace
(
/
[
0-9
]
/
,
num
);
var
newNum
=
this
.
inputPlaceholder
.
replace
(
/
[
0-9
]
/
,
num
);
console
.
log
(
this
.
selectedCharat
,
num
,
newNum
);
console
.
log
(
this
.
selectedCharat
,
num
,
newNum
);
this
.
StructureLength
(
num
);
this
.
StructureLength
(
num
);
...
@@ -164,6 +171,7 @@
...
@@ -164,6 +171,7 @@
},
},
/*包含结构 */
/*包含结构 */
selectedStructureCommand
(
v
){
selectedStructureCommand
(
v
){
console
.
log
(
v
,
"123"
);
this
.
selectedStructure
=
this
.
brandStructure
[
v
];
this
.
selectedStructure
=
this
.
brandStructure
[
v
];
console
.
log
(
this
.
selectedStructure
);
console
.
log
(
this
.
selectedStructure
);
},
},
...
@@ -277,7 +285,7 @@
...
@@ -277,7 +285,7 @@
this
.
loading
=
true
;
this
.
loading
=
true
;
this
.
$root
.
postReq
(
'/web/tmquery/toolCtl/getHotWords'
,
obj
).
then
((
d
)
=>
{
this
.
$root
.
postReq
(
'/web/tmquery/toolCtl/getHotWords'
,
obj
).
then
((
d
)
=>
{
this
.
loading
=
false
;
this
.
loading
=
false
;
console
.
log
(
d
);
console
.
log
(
d
,
'123123'
);
this
.
hotCharat
=
d
.
data
;
this
.
hotCharat
=
d
.
data
;
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
this
.
randomColor
();
this
.
randomColor
();
...
@@ -327,7 +335,6 @@
...
@@ -327,7 +335,6 @@
watch
:
{
watch
:
{
inputValue
(
o
,
v
){
inputValue
(
o
,
v
){
this
.
inputValue
=
this
.
inputValue
.
substr
(
0
,
this
.
inputLength
);
this
.
inputValue
=
this
.
inputValue
.
substr
(
0
,
this
.
inputLength
);
console
.
log
(
this
.
inputValue
);
},
},
},
},
...
...
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