Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hg-front
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
platform
hg-front
Commits
dfcad55f
Commit
dfcad55f
authored
Aug 05, 2024
by
zhangzhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
结算单功能完善
parent
b73bd5b7
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
192 additions
and
64 deletions
+192
-64
settlement-doc.js
api/settlement-doc.js
+1
-1
add.vue
pages/settlement-doc/add.vue
+2
-2
edit.vue
pages/settlement-doc/edit.vue
+188
-60
select-list.vue
pages/settlement-doc/select-list.vue
+1
-1
No files found.
api/settlement-doc.js
View file @
dfcad55f
...
@@ -164,7 +164,7 @@ export const save = (data,Detail) => {
...
@@ -164,7 +164,7 @@ export const save = (data,Detail) => {
}
}
export
const
updateSubmitStatus
=
(
data
)
=>
{
export
const
updateSubmitStatus
=
(
data
)
=>
{
let
url
=
`/service/S_XS_
KK_03
`
let
url
=
`/service/S_XS_
JS_08
`
let
d
=
setResultData
(
data
);
let
d
=
setResultData
(
data
);
return
http
.
post
(
url
,
d
)
return
http
.
post
(
url
,
d
)
}
}
...
...
pages/settlement-doc/add.vue
View file @
dfcad55f
...
@@ -390,7 +390,7 @@
...
@@ -390,7 +390,7 @@
console
.
log
(
val
)
console
.
log
(
val
)
let
ids
=
''
let
ids
=
''
if
(
this
.
formList
.
length
){
if
(
this
.
formList
.
length
){
ids
=
this
.
formList
.
filter
(
item
=>
Number
(
item
.
selectIndex
)
===
val
).
map
(
item
=>
item
.
i
d
).
join
();
ids
=
this
.
formList
.
filter
(
item
=>
Number
(
item
.
selectIndex
)
===
val
).
map
(
item
=>
item
.
rowI
d
).
join
();
}
}
uni
.
navigateTo
({
uni
.
navigateTo
({
...
@@ -576,7 +576,7 @@
...
@@ -576,7 +576,7 @@
cumulativeSettlementTax
:
this
.
orderInfo
.
cumulativeSettlementTax
.
toString
(),
cumulativeSettlementTax
:
this
.
orderInfo
.
cumulativeSettlementTax
.
toString
(),
cumulativePriceTax
:
this
.
orderInfo
.
cumulativePriceTax
.
toString
(),
cumulativePriceTax
:
this
.
orderInfo
.
cumulativePriceTax
.
toString
(),
},).
then
(
res
=>
{
},
formList
).
then
(
res
=>
{
uni
.
hideLoading
();
uni
.
hideLoading
();
if
(
res
.
data
.
__sys__
.
status
===
0
)
{
if
(
res
.
data
.
__sys__
.
status
===
0
)
{
uni
.
showToast
({
uni
.
showToast
({
...
...
pages/settlement-doc/edit.vue
View file @
dfcad55f
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
<text
class=
"text-lg text-bold text-black"
>
详情
</text>
<text
class=
"text-lg text-bold text-black"
>
详情
</text>
</view>
</view>
<view
class=
"form-content-box margin-bottom"
>
<view
class=
"form-content-box margin-bottom"
>
<form>
<form
v-if=
"orderInfo"
>
<view
class=
"cu-form-group"
>
<view
class=
"cu-form-group"
>
<view
class=
"title"
>
<view
class=
"title"
>
<text>
项目名称:
</text>
<text>
项目名称:
</text>
...
@@ -193,7 +193,7 @@
...
@@ -193,7 +193,7 @@
<view
class=
"flex-row header"
>
<view
class=
"flex-row header"
>
<text
class=
"text-lg text-bold text-black"
>
结算清单
</text>
<text
class=
"text-lg text-bold text-black"
>
结算清单
</text>
</view>
</view>
<view
class=
"form-content-box
margin-bottom
"
>
<view
class=
"form-content-box"
>
<view
v-for=
"(item,k) in subList"
:key=
"k"
class=
"sub-item-box"
>
<view
v-for=
"(item,k) in subList"
:key=
"k"
class=
"sub-item-box"
>
<form
class=
"item-form"
>
<form
class=
"item-form"
>
<view
class=
"cu-form-group"
>
<view
class=
"cu-form-group"
>
...
@@ -317,10 +317,7 @@
...
@@ -317,10 +317,7 @@
<text>
{{
item
.
createdDate
}}
</text>
<text>
{{
item
.
createdDate
}}
</text>
</view>
</view>
</view>
</view>
</form>
</form>
</view>
</view>
</view>
</view>
<view
v-if=
"subList.length
<
=
0
"
class=
"empty-box"
>
<view
v-if=
"subList.length
<
=
0
"
class=
"empty-box"
>
...
@@ -337,6 +334,22 @@
...
@@ -337,6 +334,22 @@
@
confirm=
"onConfirm"
@
close=
"onCancel"
></u-calendar>
@
confirm=
"onConfirm"
@
close=
"onCancel"
></u-calendar>
<u-modal
:show=
"show"
title=
"提示"
:content=
'content'
:showCancelButton=
"true"
@
confirm=
"onSave"
<u-modal
:show=
"show"
title=
"提示"
:content=
'content'
:showCancelButton=
"true"
@
confirm=
"onSave"
@
cancel=
"onCancel"
:asyncClose=
"true"
></u-modal>
@
cancel=
"onCancel"
:asyncClose=
"true"
></u-modal>
<uni-popup
ref=
"popup"
type=
"center"
>
<view
class=
"pop-content"
>
<view
class=
"close-box"
>
<text
class=
"text-title"
>
请选择
</text>
<text
class=
"cuIcon-close text-black"
@
tap=
"onClose"
></text>
</view>
<view
class=
"flex-col btn-box-list"
>
<button
class=
"cu-btn bg-blue"
@
tap=
"onNavToSelectList(1)"
>
合同
</button>
<button
v-if=
"['1','2'].includes(contractInfo.contractType)"
class=
"cu-btn bg-blue"
@
tap=
"onNavToSelectList(3)"
>
签证单
</button>
<button
v-if=
"contractInfo.contractType == '2'"
class=
"cu-btn bg-blue"
@
tap=
"onNavToSelectList(2)"
>
扣款单
</button>
</view>
</view>
</uni-popup>
</view>
</view>
</
template
>
</
template
>
...
@@ -350,7 +363,7 @@
...
@@ -350,7 +363,7 @@
import
{
import
{
getParamsData
getParamsData
}
from
"@/api/product-warehousing.js"
;
}
from
"@/api/product-warehousing.js"
;
import
{
getList
,
getSubList
,
saveSubList
,
save
,
getProList2
}
from
"@/api/settlement-doc.js"
;
import
{
getList
,
getSubList
,
saveSubList
,
save
,
getProList2
,
updateSubmitStatus
}
from
"@/api/settlement-doc.js"
;
export
default
{
export
default
{
data
()
{
data
()
{
...
@@ -362,7 +375,7 @@
...
@@ -362,7 +375,7 @@
minDate
:
moment
().
subtract
(
2
,
'M'
).
format
(
"YYYY-MM-DD"
),
minDate
:
moment
().
subtract
(
2
,
'M'
).
format
(
"YYYY-MM-DD"
),
content
:
"请确认是否进行审核操作?"
,
content
:
"请确认是否进行审核操作?"
,
statusBarHeight
:
uni
.
getStorageSync
(
"statusHeight"
)
||
0
,
statusBarHeight
:
uni
.
getStorageSync
(
"statusHeight"
)
||
0
,
orderInfo
:
{}
,
orderInfo
:
''
,
id
:
''
,
id
:
''
,
submitStatusEnum
:{
submitStatusEnum
:{
3
:
'已提交'
,
3
:
'已提交'
,
...
@@ -379,7 +392,10 @@
...
@@ -379,7 +392,10 @@
taxPointsList
:[],
taxPointsList
:[],
taxPointsIndex
:
-
1
,
taxPointsIndex
:
-
1
,
settlementTypeList
:[],
settlementTypeList
:[],
settlementTypeIndex
:
-
1
settlementTypeIndex
:
-
1
,
contractInfo
:{
contractType
:
'1'
}
};
};
},
},
onLoad
(
option
)
{
onLoad
(
option
)
{
...
@@ -435,7 +451,7 @@
...
@@ -435,7 +451,7 @@
if
(
Number
(
this
.
orderInfo
.
taxPoints
)
>
0
){
if
(
Number
(
this
.
orderInfo
.
taxPoints
)
>
0
){
this
.
orderInfo
.
thisPriceTax
=
(
num
*
(
1
+
Number
(
this
.
orderInfo
.
taxPoints
)
/
100
)).
toFixed
(
2
);
//含税金额
this
.
orderInfo
.
thisPriceTax
=
(
num
*
(
1
+
Number
(
this
.
orderInfo
.
taxPoints
)
/
100
)).
toFixed
(
2
);
//含税金额
this
.
orderInfo
.
cumulativePriceTax
=
this
.
orderInfo
.
thisPriceTax
;
// 累计含税金额
this
.
orderInfo
.
cumulativePriceTax
=
this
.
orderInfo
.
thisPriceTax
;
// 累计含税金额
this
.
orderInfo
.
thisSettlementTax
=
this
.
orderInfo
.
thisPriceTax
-
num
;
// 税额
this
.
orderInfo
.
thisSettlementTax
=
(
this
.
orderInfo
.
thisPriceTax
-
num
).
toFixed
(
2
)
;
// 税额
this
.
orderInfo
.
cumulativeSettlementTax
=
this
.
orderInfo
.
thisSettlementTax
;
// 累计税额
this
.
orderInfo
.
cumulativeSettlementTax
=
this
.
orderInfo
.
thisSettlementTax
;
// 累计税额
}
}
...
@@ -451,17 +467,6 @@
...
@@ -451,17 +467,6 @@
this
.
show
=
true
this
.
show
=
true
}
else
{
}
else
{
this
.
isEdit
=
true
;
this
.
isEdit
=
true
;
if
(
this
.
orderInfo
.
taxPoints
){
this
.
taxPointsIndex
=
this
.
taxPointsList
.
findIndex
(
item
=>
item
.
value
==
this
.
orderInfo
.
taxPoints
)
}
if
(
this
.
orderInfo
.
settlementType
){
this
.
settlementTypeIndex
=
this
.
settlementTypeList
.
findIndex
(
item
=>
item
.
value
==
this
.
orderInfo
.
settlementType
)
}
if
(
this
.
orderInfo
.
priceTaxSeparation
){
this
.
priceTaxSeparationIndex
=
this
.
priceTaxSeparationList
.
findIndex
(
item
=>
item
.
value
==
this
.
orderInfo
.
priceTaxSeparation
)
}
this
.
subList
=
this
.
subList
.
map
(
item
=>
{
this
.
subList
=
this
.
subList
.
map
(
item
=>
{
return
{
return
{
...
item
,
...
item
,
...
@@ -493,31 +498,16 @@
...
@@ -493,31 +498,16 @@
},
},
onSave
()
{
onSave
()
{
this
.
show
=
false
;
this
.
show
=
false
;
if
(
this
.
submitType
==
3
){
this
.
onUpdateAndSave
()
}
else
{
uni
.
showLoading
({
uni
.
showLoading
({
title
:
"加载中..."
title
:
"加载中..."
})
})
if
(
this
.
submitType
==
3
){
saveSubList
(
this
.
subList
).
then
(
res
=>
{
uni
.
hideLoading
();
if
(
res
.
data
.
__sys__
.
status
===
0
)
{
save
(
this
.
orderInfo
,
this
.
subList
).
then
(
res2
=>
{
if
(
res2
.
data
.
__sys__
.
status
===
0
){
uni
.
showToast
({
icon
:
"success"
,
title
:
"提交成功"
})
setTimeout
(()
=>
{
this
.
onGetList
();
},
1500
)
}
})
}
})
}
else
{
updateSubmitStatus
({
updateSubmitStatus
({
...
this
.
orderInfo
,
...
this
.
orderInfo
,
reviewStatus
:
3
,
reviewStatus
:
3
,
signingDate
:
moment
(
this
.
orderInfo
.
signing
Date
).
format
(
"YYYYMMDD"
)
contractDate
:
moment
(
this
.
orderInfo
.
contract
Date
).
format
(
"YYYYMMDD"
)
}).
then
(
res
=>
{
}).
then
(
res
=>
{
uni
.
hideLoading
();
uni
.
hideLoading
();
if
(
res
.
data
.
__sys__
.
status
===
0
)
{
if
(
res
.
data
.
__sys__
.
status
===
0
)
{
...
@@ -526,7 +516,7 @@
...
@@ -526,7 +516,7 @@
title
:
"提交成功"
title
:
"提交成功"
})
})
setTimeout
(()
=>
{
setTimeout
(()
=>
{
this
.
onBack
();
this
.
getList
();
},
1500
)
},
1500
)
}
}
})
})
...
@@ -587,6 +577,17 @@
...
@@ -587,6 +577,17 @@
contractDate
:
moment
(
list
[
0
].
contractDate
).
format
(
"YYYY-MM-DD"
),
contractDate
:
moment
(
list
[
0
].
contractDate
).
format
(
"YYYY-MM-DD"
),
signingDate
:
moment
(
list
[
0
].
signingDate
).
format
(
"YYYY-MM-DD"
)
signingDate
:
moment
(
list
[
0
].
signingDate
).
format
(
"YYYY-MM-DD"
)
}
}
if
(
this
.
orderInfo
.
taxPoints
){
this
.
taxPointsIndex
=
this
.
taxPointsList
.
findIndex
(
item
=>
item
.
value
==
this
.
orderInfo
.
taxPoints
)
}
if
(
this
.
orderInfo
.
settlementType
){
this
.
settlementTypeIndex
=
this
.
settlementTypeList
.
findIndex
(
item
=>
item
.
value
==
this
.
orderInfo
.
settlementType
)
}
if
(
this
.
orderInfo
.
priceTaxSeparation
){
this
.
priceTaxSeparationIndex
=
this
.
priceTaxSeparationList
.
findIndex
(
item
=>
item
.
value
==
this
.
orderInfo
.
priceTaxSeparation
)
}
this
.
onGetSubList
()
this
.
onGetSubList
()
}
}
...
@@ -615,6 +616,31 @@
...
@@ -615,6 +616,31 @@
}
}
})
})
},
},
onNavToSelect
()
{
let
checkedId
=
''
;
if
(
this
.
subList
.
length
){
checkedId
=
this
.
subList
.
filter
(
item
=>
item
.
isEdit
)?.
map
(
item
=>
item
.
id
).
join
();
}
this
.
mainId
=
this
.
id
;
uni
.
navigateTo
({
url
:
`/pages/payment-order/index?mainId=
${
this
.
id
}
&checkedId=
${
checkedId
}
`
,
events
:
{
acceptDataFromOpenedPage
:
(
data
)
=>
{
this
.
isEdit
=
true
;
let
list
=
data
.
data
.
map
(
item
=>
{
return
{
...
item
,
totalContractPriceIncluding
:
Number
(
item
.
totalContractPriceIncluding
),
isEdit
:
true
}
});
this
.
subList
=
[...
list
,...
this
.
subList
];
console
.
log
(
this
.
subList
,
99999
)
this
.
$forceUpdate
();
}
}
})
},
onOpenCheck
()
{
onOpenCheck
()
{
if
(
this
.
isEdit
){
if
(
this
.
isEdit
){
uni
.
showToast
({
uni
.
showToast
({
...
@@ -627,35 +653,105 @@
...
@@ -627,35 +653,105 @@
contractNumber
:
this
.
orderInfo
.
contractNumber
contractNumber
:
this
.
orderInfo
.
contractNumber
}).
then
(
res
=>
{
}).
then
(
res
=>
{
console
.
log
(
res
,
99999
)
console
.
log
(
res
,
99999
)
if
(
res
.
data
.
__sys__
.
status
===
0
){
let
list
=
toJsonData
(
res
.
data
.
__blocks__
.
result
.
rows
,
res
.
data
.
__blocks__
.
result
.
meta
.
columns
);
if
(
list
.
length
&&
list
.
length
==
1
){
this
.
contractInfo
=
list
[
0
];
this
.
$refs
.
popup
.
open
();
}
}
})
})
},
},
onNavToSelect
()
{
onClose
(){
this
.
$refs
.
popup
.
close
();
let
checkedId
=
''
;
},
onNavToSelectList
(
val
)
{
console
.
log
(
val
)
let
ids
=
''
if
(
this
.
subList
.
length
){
if
(
this
.
subList
.
length
){
checkedId
=
this
.
subList
.
filter
(
item
=>
item
.
isEdit
)?.
map
(
item
=>
item
.
id
).
join
();
ids
=
this
.
subList
.
filter
(
item
=>
Number
(
item
.
selectIndex
)
===
val
&&
item
.
isEdit
).
map
(
item
=>
item
.
id
).
join
();
}
}
this
.
mainId
=
this
.
id
;
this
.
onClose
()
;
uni
.
navigateTo
({
uni
.
navigateTo
({
url
:
`/pages/
payment-order/index?mainId=
${
this
.
id
}
&checkedId=
${
checkedId
}
`
,
url
:
`/pages/
settlement-doc/select-list?selectIndex=
${
val
}
&contractNumber=
${
this
.
contractInfo
.
contractNumber
}
&contractType=
${
this
.
contractInfo
.
contractType
}
&ids=
${
ids
}
`
,
events
:
{
events
:
{
acceptDataFromOpenedPage
:
(
data
)
=>
{
acceptDataFromOpenedPage2
:
(
data
)
=>
{
console
.
log
(
data
)
if
(
data
){
this
.
isEdit
=
true
;
this
.
isEdit
=
true
;
let
list
=
data
.
data
.
map
(
item
=>
{
this
.
subList
.
push
({
return
{
...
data
,
...
item
,
totalContractPriceIncluding
:
Number
(
item
.
totalContractPriceIncluding
),
isEdit
:
true
isEdit
:
true
}
});
});
this
.
subList
=
[...
list
,...
this
.
subList
];
console
.
log
(
this
.
subList
,
99999
)
this
.
$forceUpdate
();
this
.
$forceUpdate
();
this
.
onCalculatePrice
();
}
}
}
}
}
})
})
},
onUpdateAndSave
()
{
this
.
show
=
false
;
uni
.
showLoading
({
title
:
"加载中..."
})
let
list
=
this
.
subList
.
filter
(
item
=>
!
item
.
id
);
let
formData
=
{
...
this
.
orderInfo
,
projCode
:
this
.
orderInfo
.
projCode
,
projName
:
this
.
orderInfo
.
projName
,
contractNumber
:
this
.
orderInfo
.
contractNumber
,
contractName
:
this
.
orderInfo
.
contractName
,
settlementNumber
:
''
,
settlementType
:
this
.
settlementTypeList
[
this
.
settlementTypeIndex
].
value
,
taxPoints
:
this
.
taxPointsList
[
this
.
taxPointsIndex
].
value
,
priceTaxSeparation
:
this
.
priceTaxSeparationList
[
this
.
priceTaxSeparationIndex
].
value
,
contractDate
:
this
.
orderInfo
.
contractDate
,
thisSettlementAmount
:
this
.
orderInfo
.
thisSettlementAmount
.
toString
(),
thisSettlementTax
:
this
.
orderInfo
.
thisSettlementTax
.
toString
(),
thisPriceTax
:
this
.
orderInfo
.
thisPriceTax
.
toString
(),
totalContractPrice
:
this
.
orderInfo
.
totalContractPrice
,
cumulativeSettlementAmount
:
this
.
orderInfo
.
cumulativeSettlementAmount
.
toString
(),
cumulativeSettlementTax
:
this
.
orderInfo
.
cumulativeSettlementTax
.
toString
(),
cumulativePriceTax
:
this
.
orderInfo
.
cumulativePriceTax
.
toString
(),
}
if
(
list
.
length
){
saveSubList
(
list
).
then
(
res
=>
{
if
(
res
.
data
.
__sys__
.
status
===
0
){
let
formList
=
toJsonData
(
res
.
data
.
__blocks__
.
detail1
.
rows
,
res
.
data
.
__blocks__
.
detail1
.
meta
.
columns
);
this
.
onUpdateMainData
(
formData
,
formList
)
}
})
}
else
{
let
formList
=
this
.
subList
.
map
(
item
=>
{
return
{
...
item
,
unitPrice
:
item
.
unitPrice
.
toString
(),
totalPrice
:
item
.
totalPrice
.
toString
()
}
})
this
.
onUpdateMainData
(
formData
,
formList
)
}
},
onUpdateMainData
(
formData
,
list
){
save
(
formData
,
list
).
then
(
res
=>
{
uni
.
hideLoading
();
if
(
res
.
data
.
__sys__
.
status
===
0
)
{
uni
.
showToast
({
icon
:
"success"
,
title
:
"提交成功"
})
setTimeout
(()
=>
{
this
.
isEdit
=
false
;
this
.
onGetList
();
},
1500
)
}
})
}
}
}
}
}
}
...
@@ -855,7 +951,7 @@
...
@@ -855,7 +951,7 @@
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
align-items
:
center
;
align-items
:
center
;
width
:
100%
;
.header
{
.header
{
display
:
flex
;
display
:
flex
;
flex-direction
:
row
;
flex-direction
:
row
;
...
@@ -871,13 +967,14 @@
...
@@ -871,13 +967,14 @@
}
}
.form-content-box
{
.form-content-box
{
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
width
:
100%
;
width
:
100%
;
padding
:
12
upx
0
;
padding
:
12
upx
0
;
border-radius
:
4
upx
;
border-radius
:
4
upx
;
//
box-shadow
:
0
0
8
upx
rgba
(
0
,
0
,
0
,
0.34
);
//
box-shadow
:
0
0
8
upx
rgba
(
0
,
0
,
0
,
0.34
);
background-color
:
#ffffff
;
background-color
:
#ffffff
;
.cu-form-group
{
.cu-form-group
{
height
:
32px
;
height
:
32px
;
min-height
:
32px
;
min-height
:
32px
;
...
@@ -982,6 +1079,7 @@
...
@@ -982,6 +1079,7 @@
}
}
.content-part-2
{
.content-part-2
{
margin-bottom
:
120
upx
;
.form-content-box
{
.form-content-box
{
display
:
flex
;
display
:
flex
;
background-color
:
transparent
;
background-color
:
transparent
;
...
@@ -1000,7 +1098,7 @@
...
@@ -1000,7 +1098,7 @@
border-radius
:
12
upx
;
border-radius
:
12
upx
;
background-color
:
#ffffff
;
background-color
:
#ffffff
;
box-shadow
:
0
4
upx
6
upx
rgba
(
0
,
0
,
0
,
0.34
);
box-shadow
:
0
4
upx
6
upx
rgba
(
0
,
0
,
0
,
0.34
);
margin-bottom
:
120
upx
;
margin-bottom
:
24
upx
;
}
}
.form-item-label
{
.form-item-label
{
...
@@ -1022,4 +1120,33 @@
...
@@ -1022,4 +1120,33 @@
align-items
:
center
;
align-items
:
center
;
padding
:
0
24
upx
;
padding
:
0
24
upx
;
}
}
.pop-content
{
display
:
flex
;
flex-direction
:
column
;
background-color
:
#ffffff
;
width
:
60vw
;
padding
:
24
upx
30
upx
;
border-radius
:
12
upx
;
box-shadow
:
rgba
(
0
,
0
,
0
,
0.34
);
.close-box{
display
:
flex
;
justify-content
:
space-between
;
margin-bottom
:
24
upx
;
align-items
:
center
;
.text-title{
color
:
#333333
;
font-size
:
36
upx
;
font-weight
:
bold
;
}
.text-black
{
font-size
:
52
upx
;
}
}
.btn-box-list
{
.cu-btn{
height
:
80
upx
;
margin
:
16
upx
0
;
}
}
}
</
style
>
</
style
>
\ No newline at end of file
pages/settlement-doc/select-list.vue
View file @
dfcad55f
...
@@ -217,7 +217,7 @@
...
@@ -217,7 +217,7 @@
let
thisEngineeringQuantity
=
this
.
projectDataList
[
this
.
current
].
provisionalQuantity
||
1
let
thisEngineeringQuantity
=
this
.
projectDataList
[
this
.
current
].
provisionalQuantity
||
1
this
.
eventChannel
.
emit
(
'acceptDataFromOpenedPage2'
,
{
this
.
eventChannel
.
emit
(
'acceptDataFromOpenedPage2'
,
{
i
d
:
this
.
projectDataList
[
this
.
current
].
id
,
rowI
d
:
this
.
projectDataList
[
this
.
current
].
id
,
settlementBasis
:
this
.
selectTypeEnum
[
this
.
selectIndex
],
settlementBasis
:
this
.
selectTypeEnum
[
this
.
selectIndex
],
taskName
:
''
,
taskName
:
''
,
engineeringContent
:
""
,
engineeringContent
:
""
,
...
...
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