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
4efd75c2
Commit
4efd75c2
authored
Feb 13, 2025
by
honghy
Committed by
wux
Feb 26, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
需求95 报价单页面和列表调整
parent
82222c0e
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
468 additions
and
143 deletions
+468
-143
offer.js
src/api/ecw/offer.js
+9
-0
en_US.json
src/i18n/languages/en_US.json
+6
-2
dict.js
src/utils/dict.js
+4
-0
detail.vue
src/views/ecw/offer/detail.vue
+43
-7
edit.vue
src/views/ecw/offer/edit.vue
+216
-75
index.vue
src/views/ecw/offer/index.vue
+181
-55
result.vue
src/views/ecw/offer/result.vue
+9
-4
No files found.
src/api/ecw/offer.js
View file @
4efd75c2
...
@@ -43,6 +43,15 @@ export function getOfferPage(query) {
...
@@ -43,6 +43,15 @@ export function getOfferPage(query) {
})
})
}
}
// 汇总
export
function
statistics
(
query
)
{
return
request
({
url
:
"
/ecw/offer/statistics
"
,
method
:
"
get
"
,
params
:
query
})
}
// 导出报价单管理 Excel
// 导出报价单管理 Excel
export
function
exportOfferExcel
(
query
)
{
export
function
exportOfferExcel
(
query
)
{
return
request
({
return
request
({
...
...
src/i18n/languages/en_US.json
View file @
4efd75c2
...
@@ -4941,6 +4941,10 @@
...
@@ -4941,6 +4941,10 @@
"标题(英文)"
:
"Title (English)"
,
"标题(英文)"
:
"Title (English)"
,
"标题(法文)"
:
"Title (French)"
,
"标题(法文)"
:
"Title (French)"
,
"是否确认删除广告设置编号为'{0}'的数据项?"
:
"Are you sure you want to delete the advertisement setting with ID '{0}'?"
,
"是否确认删除广告设置编号为'{0}'的数据项?"
:
"Are you sure you want to delete the advertisement setting with ID '{0}'?"
,
"渠道已关闭,禁止下单"
:
"The channel has been closed and orders are prohibited"
"渠道已关闭,禁止下单"
:
"The channel has been closed and orders are prohibited"
,
"询盘来源"
:
"Inquiry Source"
,
"货物状态"
:
"Goods Status"
,
"厂家"
:
"Manufacturer"
,
"厂家电话"
:
"Manufacturer Phone"
,
"预计发货时间"
:
"Estimated Delivery Time"
}
}
src/utils/dict.js
View file @
4efd75c2
...
@@ -170,6 +170,10 @@ export const DICT_TYPE = {
...
@@ -170,6 +170,10 @@ export const DICT_TYPE = {
CUSTOMER_FOLLOWUP_TYPE
:
"
customer_followup_type
"
,
//跟进类型
CUSTOMER_FOLLOWUP_TYPE
:
"
customer_followup_type
"
,
//跟进类型
CUSTOMER_FOLLOWUP_METHOD
:
"
customer_followup_method
"
,
//跟进方式
CUSTOMER_FOLLOWUP_METHOD
:
"
customer_followup_method
"
,
//跟进方式
CUSTOMER_FOLLOWUP_SALE_STAGE
:
"
sale_stage
"
,
//销售阶段
CUSTOMER_FOLLOWUP_SALE_STAGE
:
"
sale_stage
"
,
//销售阶段
ECW_OFFER_CUSTOMER_STATUS
:
"
ecw_offer_customer_status
"
,
//客户状态
ECW_OFFER_CARGO_STATUS
:
"
ecw_offer_cargo_status
"
,
//货物状态
ECW_OFFER_INQUIRY_SOURCE
:
"
ecw_offer_inquiry_source
"
,
//询盘来源
ECW_OFFER_REASON_DICT
:
"
ecw_offer_reason_dict
"
,
//输单原因
CUSTOMER_FOLLOWUP_RESULT_TYPE
:
"
customer_followup_result_type
"
,
//跟进结果
CUSTOMER_FOLLOWUP_RESULT_TYPE
:
"
customer_followup_result_type
"
,
//跟进结果
CUSTOMER_FOLLOWUP_STATUS
:
"
customer_followup_status
"
,
//跟进状态
CUSTOMER_FOLLOWUP_STATUS
:
"
customer_followup_status
"
,
//跟进状态
CUSTOMER_QUERY_NUMBER_FIELD
:
"
customer_query_number_field
"
,
//客户查询数字字段
CUSTOMER_QUERY_NUMBER_FIELD
:
"
customer_query_number_field
"
,
//客户查询数字字段
...
...
src/views/ecw/offer/detail.vue
View file @
4efd75c2
...
@@ -38,7 +38,20 @@
...
@@ -38,7 +38,20 @@
{{
consignorData
.
socialNumber
?
"
(
"
+
consignorData
.
socialNumber
+
"
)
"
:
""
}}
{{
consignorData
.
socialNumber
?
"
(
"
+
consignorData
.
socialNumber
+
"
)
"
:
""
}}
</el-descriptions-item>
</el-descriptions-item>
</el-descriptions>
</el-descriptions>
<el-descriptions
:column=
"4"
border
class=
"card"
v-if=
"list.consignorId"
:labelStyle=
"
{ width: '110px' }" style="margin-top: 0">
<el-descriptions-item
:label=
"$t('销售阶段') + ':'"
>
<dict-tag
:type=
"DICT_TYPE.CUSTOMER_FOLLOWUP_SALE_STAGE"
:value=
"list.saleStage"
/>
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('客户状态') + ':'"
>
<dict-tag
:type=
"DICT_TYPE.ECW_OFFER_CUSTOMER_STATUS"
:value=
"list.customerStatus"
/>
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('货物状态') + ':'"
>
<dict-tag
:type=
"DICT_TYPE.ECW_OFFER_CARGO_STATUS"
:value=
"list.cargoStatus"
/>
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('询盘来源') + ':'"
>
<dict-tag
:type=
"DICT_TYPE.ECW_OFFER_INQUIRY_SOURCE"
:value=
"list.inquirySource"
/>
</el-descriptions-item>
</el-descriptions>
<el-descriptions
:column=
"3"
border
class=
"card"
v-if=
"list.consigneeId"
:labelStyle=
"
{ width: '110px' }">
<el-descriptions
:column=
"3"
border
class=
"card"
v-if=
"list.consigneeId"
:labelStyle=
"
{ width: '110px' }">
<el-descriptions-item
:label=
"$t('收货人') + ':'"
>
<el-descriptions-item
:label=
"$t('收货人') + ':'"
>
{{
consigneeData
.
contactsName
||
$t
(
"
无
"
)
}}
{{
consigneeData
.
contactsName
||
$t
(
"
无
"
)
}}
...
@@ -124,6 +137,26 @@
...
@@ -124,6 +137,26 @@
<
template
>
{{
$t
(
"
全包价
"
)
}}
{{
row
.
oneSeaFreight
}}
{{
currentcyMap
[
row
.
seaFreightCurrency
]
}}
/
{{
unitMap
[
row
.
seaFreightVolume
]
}}
</
template
>
<
template
>
{{
$t
(
"
全包价
"
)
}}
{{
row
.
oneSeaFreight
}}
{{
currentcyMap
[
row
.
seaFreightCurrency
]
}}
/
{{
unitMap
[
row
.
seaFreightVolume
]
}}
</
template
>
</template>
</template>
<
template
v-else-if=
"!row.oneSeaFreight && !row.oneClearanceFreight"
>
{{
$t
(
"
未报价
"
)
}}
</
template
>
<
template
v-else-if=
"!row.oneSeaFreight && !row.oneClearanceFreight"
>
{{
$t
(
"
未报价
"
)
}}
</
template
>
<
template
v-else-if=
"row.specialPriceType"
>
<div
style=
"color: red;font-weight: 700;"
>
{{
$t
(
"
原价
"
)
}}
</div>
<div>
{{
$t
(
"
运费
"
)
}}
:
{{
row
.
originalSeaFreight
}}
{{
currentcyMap
[
row
.
seaFreightCurrency
]
}}
/
{{
unitMap
[
row
.
seaFreightVolume
]
}}
</div>
<div>
{{
$t
(
"
清关费
"
)
}}
:
{{
row
.
originalClearanceFreight
}}
{{
currentcyMap
[
row
.
clearanceFreightCurrency
]
}}
/
{{
unitMap
[
row
.
clearanceFreightVolume
]
}}
</div>
<div
style=
"color: red;font-weight: 700;"
>
{{
$t
(
"
特价
"
)
}}
</div>
<div>
{{
$t
(
"
运费
"
)
}}
:
{{
row
.
oneSeaFreight
}}
{{
currentcyMap
[
row
.
seaFreightCurrency
]
}}
/
{{
unitMap
[
row
.
seaFreightVolume
]
}}
</div>
<div>
{{
$t
(
"
清关费
"
)
}}
:
{{
row
.
oneClearanceFreight
}}
{{
currentcyMap
[
row
.
clearanceFreightCurrency
]
}}
/
{{
unitMap
[
row
.
clearanceFreightVolume
]
}}
</div>
</
template
>
<
template
v-else
>
<
template
v-else
>
<div>
{{
$t
(
"
运费
"
)
}}
:
{{
row
.
oneSeaFreight
}}
{{
currentcyMap
[
row
.
seaFreightCurrency
]
}}
/
{{
unitMap
[
row
.
seaFreightVolume
]
}}
</div>
<div>
{{
$t
(
"
运费
"
)
}}
:
{{
row
.
oneSeaFreight
}}
{{
currentcyMap
[
row
.
seaFreightCurrency
]
}}
/
{{
unitMap
[
row
.
seaFreightVolume
]
}}
</div>
<div
v-if=
"row.oneClearanceFreight"
>
{{
$t
(
"
清关费
"
)
}}
:
{{
row
.
oneClearanceFreight
}}
{{
currentcyMap
[
row
.
clearanceFreightCurrency
]
}}
/
{{
unitMap
[
row
.
clearanceFreightVolume
]
}}
</div>
<div
v-if=
"row.oneClearanceFreight"
>
{{
$t
(
"
清关费
"
)
}}
:
{{
row
.
oneClearanceFreight
}}
{{
currentcyMap
[
row
.
clearanceFreightCurrency
]
}}
/
{{
unitMap
[
row
.
clearanceFreightVolume
]
}}
</div>
...
@@ -159,12 +192,12 @@
...
@@ -159,12 +192,12 @@
</
template
>
</
template
>
<
template
v-if=
"otherFeeList.length == 0"
>
0
</
template
>
<
template
v-if=
"otherFeeList.length == 0"
>
0
</
template
>
</el-descriptions-item>
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('原价')"
:span=
"2"
>
<!-- <el-descriptions-item :label="$t('原价')" :span="2">--
>
<
template
v-if=
"originalFeeList.length > 0"
v-for=
"item in originalFeeList"
>
<!-- <template v-if="originalFeeList.length > 0" v-for="item in originalFeeList">--
>
<div
:key=
"item.currencyId"
>
{{
item
.
amount
||
0
}}{{
currentcyMap
[
item
.
currencyId
]
}}
</div
>
<!-- <div :key="item.currencyId">{{ item.amount || 0 }}{{ currentcyMap[item.currencyId] }}</div>--
>
</
template
>
<!-- </template>--
>
<
template
v-if=
"originalFeeList.length == 0"
>
0
</
template
>
<!-- <template v-if="originalFeeList.length == 0"> 0 </template>--
>
</el-descriptions-item
>
<!-- </el-descriptions-item>--
>
</el-descriptions>
</el-descriptions>
<div
class=
"card-title"
style=
"padding: 20px 0"
>
{{ $t("优惠信息") }}
</div>
<div
class=
"card-title"
style=
"padding: 20px 0"
>
{{ $t("优惠信息") }}
</div>
...
@@ -225,6 +258,9 @@
...
@@ -225,6 +258,9 @@
<el-descriptions-item
:label=
"$t('预计结束时间')"
>
<el-descriptions-item
:label=
"$t('预计结束时间')"
>
{{ list.stopTime || "/" }}
{{ list.stopTime || "/" }}
</el-descriptions-item>
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('预计发货时间')"
>
{{ list.estimatedShippingTime || "/" }}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('控货')"
>
<el-descriptions-item
:label=
"$t('控货')"
>
{{ list.control ? $t("是") : $t("否") }}
{{ list.control ? $t("是") : $t("否") }}
</el-descriptions-item>
</el-descriptions-item>
...
...
src/views/ecw/offer/edit.vue
View file @
4efd75c2
This diff is collapsed.
Click to expand it.
src/views/ecw/offer/index.vue
View file @
4efd75c2
This diff is collapsed.
Click to expand it.
src/views/ecw/offer/result.vue
View file @
4efd75c2
...
@@ -35,7 +35,12 @@
...
@@ -35,7 +35,12 @@
</el-form-item>
</el-form-item>
</
template
>
</
template
>
<
template
v-else
>
<
template
v-else
>
<el-form-item
:label=
"$t('原因')"
prop=
"reason"
>
<el-form-item
:label=
"$t('原因')"
prop=
"reasonDict"
>
<el-select
v-model=
"form.reasonDict "
clearable
:placeholder=
"$t('请选择')"
>
<el-option
v-for=
"dict in getDictDatas(DICT_TYPE.ECW_OFFER_REASON_DICT)"
:key=
"dict.value"
:label=
"dict.label"
:value=
"parseInt(dict.value)"
/>
</el-select>
</el-form-item>
<el-form-item
:label=
"$t('备注')"
prop=
"reason"
>
<el-input
style=
"width: 500px;"
type=
"textarea"
placeholder=
""
v-model=
"form.reason"
></el-input>
<el-input
style=
"width: 500px;"
type=
"textarea"
placeholder=
""
v-model=
"form.reason"
></el-input>
</el-form-item>
</el-form-item>
</
template
>
</
template
>
...
@@ -94,10 +99,10 @@ export default {
...
@@ -94,10 +99,10 @@ export default {
if
(
this
.
$route
.
query
.
offerId
){
if
(
this
.
$route
.
query
.
offerId
){
this
.
form
.
offerId
=
this
.
$route
.
query
.
offerId
this
.
form
.
offerId
=
this
.
$route
.
query
.
offerId
}
}
},
},
methods
:
{
methods
:
{
/** 提交按钮 */
/** 提交按钮 */
submitForm
()
{
submitForm
()
{
this
.
$refs
[
"
form
"
].
validate
((
valid
)
=>
{
this
.
$refs
[
"
form
"
].
validate
((
valid
)
=>
{
...
@@ -131,4 +136,4 @@ export default {
...
@@ -131,4 +136,4 @@ export default {
}
}
},
},
};
};
</
script
>
</
script
>
\ No newline at end of file
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