Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ElectricitySheep
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
黄媛媛
ElectricitySheep
Commits
9f730dbd
Commit
9f730dbd
authored
Mar 15, 2022
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2
parent
3fe5d7d9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
702 additions
and
1086 deletions
+702
-1086
edit.vue
src/components/coffeeManage/edit.vue
+1
-1
index.vue
src/components/coffeeManage/index.vue
+680
-1071
orderList.vue
src/components/coffeeManage/orderList.vue
+21
-14
No files found.
src/components/coffeeManage/edit.vue
View file @
9f730dbd
...
...
@@ -2511,7 +2511,7 @@
this
.
addMsg
.
MaterialId
=
val
.
Id
this
.
addMsg
.
CarouselImageList
=
val
.
ImageList
this
.
addMsg
.
SellingPrice
=
val
.
SellPrice
this
.
addMsg
.
OriginalPrice
=
val
.
Money
this
.
addMsg
.
OriginalPrice
=
val
.
SellPrice
this
.
addMsg
.
CostPrice
=
val
.
Money
this
.
addMsg
.
Unit
=
val
.
Units
||
'件'
this
.
addMsg
.
InventoryNum
=
val
.
InventoryNum
...
...
src/components/coffeeManage/index.vue
View file @
9f730dbd
This diff is collapsed.
Click to expand it.
src/components/coffeeManage/orderList.vue
View file @
9f730dbd
...
...
@@ -58,8 +58,8 @@
<el-option
label=
"资产类"
:value=
"2"
></el-option>
<el-option
label=
"教室类"
:value=
"3"
></el-option>
</el-select>
<el-checkbox
v-model=
"IsSelectPayMoney"
true-label=
"1"
false-label=
"0"
style=
"margin-left: 15px;font-size:14px"
@
change=
"(msg.pageIndex = 1), getList()"
>
只看已付款
</el-checkbox>
<el-checkbox
v-model=
"IsSelectPayMoney"
true-label=
"1"
false-label=
"0"
style=
"margin-left: 15px;font-size:14px"
@
change=
"(msg.pageIndex = 1), getList()"
>
只看已付款
</el-checkbox>
</div>
<div
style=
"
display: flex;
...
...
@@ -80,7 +80,6 @@
clearable
style=
"margin-top: 10px; width: 200px"
class=
"input-with-select"
placeholder=
"请输入主播名称"
v-model=
"msg.AnchorName"
size=
"small"
>
</el-input>
-->
</div>
<div
style=
"
display: flex;
...
...
@@ -526,11 +525,11 @@
<img
@
click=
"getOrderSend(item)"
v-if=
"item.OrderStatus == 3"
class=
"app-order-icon"
src=
"../../assets/img/userman/change.png"
alt=
""
/>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"线下付款"
<
!--
<
el-tooltip
class=
"item"
effect=
"dark"
content=
"线下付款"
v-if=
"item.OrderStatus == 1 || item.OrderStatus == 7"
placement=
"top"
>
<img
@
click=
"Offpayment(item)"
v-if=
"item.OrderStatus == 1 || item.OrderStatus == 7"
class=
"app-order-icon"
src=
"../../assets/img/userman/OfflinePayment.png"
alt=
""
/>
</el-tooltip>
</el-tooltip>
-->
</
template
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"查看订单详情"
placement=
"top"
>
...
...
@@ -927,7 +926,7 @@
AnchorName
:
""
,
IsSelectPayMoney
:
0
,
IsOffline
:
-
1
,
GoodsEduType
:
0
,
GoodsEduType
:
0
,
},
IsSelectPayMoney
:
0
,
platList
:
[],
...
...
@@ -1893,34 +1892,42 @@
cancelButtonText
:
'取消'
,
type
:
'warning'
}).
then
(()
=>
{
const
loading
=
that
.
$loading
({
lock
:
true
,
text
:
'单据生成中...'
,
spinner
:
'el-icon-loading'
,
});
that
.
i_post
(
"/api/order/SetEduGoodsFreightCostFinance"
,
{
OrderId
:
id
},
(
res
)
=>
{
loading
.
close
()
if
(
res
.
data
.
resultCode
==
1
)
{
console
.
log
(
1884
,
res
)
that
.
$message
({
type
:
'success'
,
message
:
'操作成功'
});
that
.
getList
()
}
},()
=>
{
loading
.
close
()
});
})
},
// 是否显示运费制单按钮
isShowzhidan
(
item
){
const
flag
=
item
.
DetailList
.
some
(
e
=>
{
return
e
.
FreightFinanceId
==
0
&&
e
.
FreightCostMoney
>
0
isShowzhidan
(
item
)
{
const
flag
=
item
.
DetailList
.
some
(
e
=>
{
return
e
.
FreightFinanceId
==
0
&&
e
.
FreightCostMoney
>
0
})
if
(
item
.
FreightMoney
>
0
&&
flag
)
{
if
(
item
.
FreightMoney
>
0
&&
flag
)
{
return
true
}
else
{
return
false
}
else
{
return
false
}
}
},
};
</
script
>
<
style
scoped
>
...
...
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