Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
horse
Project
Project
Details
Activity
Releases
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
向伟
horse
Commits
2de1e572
Commit
2de1e572
authored
Nov 22, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
35bb17fb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
1 deletion
+32
-1
customerlabel.vue
src/pages/customer/components/customerlabel.vue
+27
-0
customerSetup.vue
src/pages/customer/customerSetup.vue
+5
-1
No files found.
src/pages/customer/components/customerlabel.vue
0 → 100644
View file @
2de1e572
<
template
>
<div
>
标签
</div>
</
template
>
<
script
lang=
"ts"
>
import
{
defineComponent
,
}
from
'vue'
export
default
defineComponent
({
setup
()
{
return
{
}
}
})
</
script
>
src/pages/customer/customerSetup.vue
View file @
2de1e572
...
...
@@ -21,6 +21,8 @@
<customer-Field
v-if=
"tab == 'field'"
></customer-Field>
<clue-rule
v-if=
"tab == 'clue'"
></clue-rule>
<customer-phase
v-if=
"tab == 'phase'"
></customer-phase>
<customer-label
v-if=
"tab == 'label'"
></customer-label>
</div>
</q-page>
</div>
...
...
@@ -30,6 +32,7 @@
import
customerField
from
'./components/customerField.vue'
import
clueRule
from
'./components/clueRule.vue'
import
customerPhase
from
'./components/customerPhase.vue'
import
customerlabel
from
'./components/customerlabel.vue'
import
router
from
'@/router/index'
import
{
...
...
@@ -42,7 +45,8 @@ export default defineComponent({
components
:
{
customerField
,
clueRule
,
customerPhase
customerPhase
,
customerlabel
},
setup
()
{
let
tab
=
ref
<
string
>
(
'phase'
)
...
...
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