Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
85a20c2a
Commit
85a20c2a
authored
Nov 29, 2024
by
zhengyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
客户详情中报价单列表跟进按钮跳转修正
parent
3b9defc0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
query.vue
src/views/ecw/customer/query.vue
+9
-1
No files found.
src/views/ecw/customer/query.vue
View file @
85a20c2a
...
...
@@ -377,7 +377,7 @@
<el-dropdown-menu
slot=
"dropdown"
>
<el-dropdown-item
@
click.native=
"$router.push('/offer/detail?offerId=' + scope.row.offerId)"
v-hasPermi=
"['ecw:offer:show']"
>
{{
$t
(
"
详情
"
)
}}
</el-dropdown-item>
<el-dropdown-item
@
click.native=
"$router.push('/offer/edit?id=' + scope.row.offerId)"
v-if=
"[1, 2, 3, 7].indexOf(scope.row.status) > -1"
v-hasPermi=
"['ecw:offer:update']"
>
{{
$t
(
"
编辑
"
)
}}
</el-dropdown-item>
<el-dropdown-item
@
click.native=
"
$router.push('/offer/logListCustomerCommon?offerId=' + scope.row.offerId)"
v-if=
"[1, 3, 7].indexOf(scope.row.status) > -1"
v-hasPermi=
"['ecw:offer:loglist']"
>
{{
$t
(
"
跟进
"
)
}}
</el-dropdown-item>
<el-dropdown-item
@
click.native=
"
handleAddOffer(scope.row)"
v-if=
"[1, 3, 7].indexOf(scope.row.status) > -1"
>
{{
$t
(
"
跟进
"
)
}}
</el-dropdown-item>
<el-dropdown-item
@
click.native=
"$router.push(`/offer/result?offerId=$
{scope.row.offerId}
&
number=${scope.row.number}`)" v-if="[3, 7].indexOf(scope.row.status) > -1" v-hasPermi="['ecw:offer:result']">
{{
$t
(
"
结果
"
)
}}
</el-dropdown-item>
<el-dropdown-item
@
click.native=
"$router.push('/offer/special?offerId=' + scope.row.offerId)"
v-if=
"[1, 3, 7].indexOf(scope.row.status) > -1"
v-hasPermi=
"['ecw:offer:discount', 'ecw:offer:commission']"
>
{{
$t
(
"
特价
"
)
}}
</el-dropdown-item>
<el-dropdown-item
@
click.native=
"cancel(scope.row.offerId)"
v-if=
"[1, 3, 7].indexOf(scope.row.status) > -1"
v-hasPermi=
"['ecw:offer:cancel']"
>
{{
$t
(
"
取消
"
)
}}
</el-dropdown-item>
...
...
@@ -1051,6 +1051,14 @@ export default {
}
},
methods
:
{
handleAddOffer
(
row
)
{
console
.
log
(
row
)
this
.
curData
=
row
this
.
customerFollowVisible
=
true
this
.
$nextTick
(()
=>
{
this
.
$refs
[
"
customerFollow
"
].
handleAdd
()
})
},
getUserProfile
()
{
getUserProfile
().
then
((
res
)
=>
{
this
.
userId
=
res
.
data
.
id
...
...
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