Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
d3283bb5
Commit
d3283bb5
authored
Sep 04, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
c1665443
e7d14fd7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
1 deletion
+19
-1
ShoppingReimbursementDetails.vue
...components/ShoppingStore/ShoppingReimbursementDetails.vue
+19
-1
No files found.
src/components/ShoppingStore/ShoppingReimbursementDetails.vue
View file @
d3283bb5
...
@@ -46,7 +46,8 @@
...
@@ -46,7 +46,8 @@
</td>
</td>
<td
class=
"_height_45"
>
<td
class=
"_height_45"
>
<!--公司-->
<!--公司-->
{{
subItem
.
BName
}}
{{
subItem
.
BName
}}
<span
@
click=
"DeleteItem(subItem)"
style=
"color:blue;cursor:pointer;text-decoration:underline;"
>
删除
</span>
</td>
</td>
<td
class=
"more_td"
v-if=
"subIndex==0"
:rowspan=
"item.ShopDetailsList.length"
>
<td
class=
"more_td"
v-if=
"subIndex==0"
:rowspan=
"item.ShopDetailsList.length"
>
<el-input
v-model=
"item.ShopDetailsList[0].EnterTime"
placeholder=
"2019-01-01"
<el-input
v-model=
"item.ShopDetailsList[0].EnterTime"
placeholder=
"2019-01-01"
...
@@ -292,6 +293,23 @@
...
@@ -292,6 +293,23 @@
},
},
err
=>
{}
err
=>
{}
);
);
},
DeleteItem
(
item
)
{
var
that
=
this
;
this
.
Confirm
(
"是否要删除此数据?删除后将不能恢复."
,
function
()
{
var
msg
=
{
Id
:
item
.
Id
};
that
.
apipost
(
"dmcstatistics_post_RemovePriceShopDetails"
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
that
.
Success
(
'删除成功!'
);
that
.
getList
();
}
else
{
that
.
Error
(
res
.
data
.
data
);
}
},
null
);
});
}
}
},
},
mounted
()
{
mounted
()
{
...
...
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