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
0a9ddf39
Commit
0a9ddf39
authored
Aug 07, 2022
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化报价单
parent
e4061001
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
156 additions
and
86 deletions
+156
-86
index.vue
src/components/WorkFlow/index.vue
+11
-9
edit.vue
src/views/ecw/offer/edit.vue
+138
-72
edit.vue
src/views/ecw/order/edit.vue
+6
-4
index.vue
src/views/ecw/order/index.vue
+1
-1
No files found.
src/components/WorkFlow/index.vue
View file @
0a9ddf39
<
template
>
<div>
<my-process-viewer
ref=
"processViewer"
:value=
"bpmnXML"
:prefix=
"prefix"
:activityData=
"activityData"
:processInstanceData=
"processInstanceData"
:taskData=
"taskData"
style=
"height:500px; margin-bottom:10px"
/>
<div
style=
"height:350px; overflow:hidden;"
>
<my-process-viewer
ref=
"processViewer"
:value=
"bpmnXML"
:prefix=
"prefix"
:activityData=
"activityData"
:processInstanceData=
"processInstanceData"
:taskData=
"taskData"
style=
"height:500px; margin-top: -80px"
/>
</div>
<el-form
label-position=
"left"
label-width=
"100px"
>
<el-form-item
label=
"抄送"
>
<el-select
v-model=
"valueSync"
multiple
placeholder=
"请选择抄送人"
style=
"width:100%"
>
...
...
src/views/ecw/offer/edit.vue
View file @
0a9ddf39
This diff is collapsed.
Click to expand it.
src/views/ecw/order/edit.vue
View file @
0a9ddf39
...
...
@@ -232,7 +232,6 @@
<div>
{{fee.clearanceUSD || 0}}美元
</div>
</el-descriptions-item>
<el-descriptions-item
label=
"其他费用"
>
<!--TODO 缺少其他费用字段-->
<el-input
v-model=
"form.otherFee"
placeholder=
""
style=
"width:100px"
></el-input>
<selector
v-model=
"form.otherFeeCurrencyId"
:options=
"currencyList"
label-field=
"titleZh"
value-field=
"id"
defaultable
style=
"width:100px"
/>
</el-descriptions-item>
...
...
@@ -250,12 +249,15 @@
<el-col
:span=
"2"
>
{{index+1}}.{{item.label}}
</el-col>
<el-col
:span=
"4"
>
<el-select
placeholder=
"请选择优惠"
v-model=
"selectedCoupons[item.value]"
:data-type=
"item.value"
clearable
>
<
template
v-for=
"
coupon
in couponList"
>
<el-option
v-if=
"coupon.type == +item.value"
:key=
"coupon.couponId"
:label=
"coupon.titleZh"
:value=
"coupon.couponId"
></el-option>
<
template
v-for=
"
(coupon, index)
in couponList"
>
<el-option
v-if=
"coupon.type == +item.value"
:key=
"coupon.couponId
+ '_' + index
"
:label=
"coupon.titleZh"
:value=
"coupon.couponId"
></el-option>
</
template
>
</el-select>
</el-col>
<el-col
:span=
"2"
v-if=
"getCoupon(selectedCoupons[item.value])"
>
-{{getCoupon(selectedCoupons[item.value]).reduceAmount}} 美元
</el-col>
<el-col
:span=
"2"
v-if=
"getCoupon(selectedCoupons[item.value])"
>
-{{getCoupon(selectedCoupons[item.value]).reduceAmount}}
{{currentcyMap[getCoupon(selectedCoupons[item.value]).reduceCurrencyId]}}
</el-col>
<el-col
:span=
"5"
v-if=
"getCoupon(selectedCoupons[item.value])"
>
有效期:{{getCoupon(selectedCoupons[item.value]).endTime || '永久有效'}}
</el-col>
</el-row>
<el-descriptions
:column=
"1"
border
>
...
...
src/views/ecw/order/index.vue
View file @
0a9ddf39
...
...
@@ -133,7 +133,7 @@
<el-table-column
label=
"体积/重量"
align=
"center"
prop=
"sumWeight"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
totalVolume
}}
m³ /
{{
row
.
totalWeight
}}
Kg
</
template
>
</el-table-column>
<el-table-column
label=
"始发仓"
align=
"center"
prop=
"departureName"
/>
<el-table-column
label=
"运输方式/目的地"
align=
"center"
prop=
"transportId"
>
<
template
slot-scope=
"{row}"
>
<dict-tag
:type=
"DICT_TYPE.ECW_TRANSPORT_TYPE"
:value=
"row.transportId"
/>
/
{{
row
.
objectiveName
}}
...
...
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