Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
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
罗超
confucius
Commits
4905f05c
Commit
4905f05c
authored
Mar 17, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
e411b7b6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
7 deletions
+11
-7
orderlist.vue
src/components/sale/orderlist.vue
+1
-1
viewquotation-form.vue
src/components/sale/viewquotation-form.vue
+6
-2
BasicDocuments.vue
src/pages/financial/financalDocument/BasicDocuments.vue
+1
-1
FinancialDocumentsDetail.vue
...s/financial/financalDocument/FinancialDocumentsDetail.vue
+1
-1
courseoffer.vue
src/pages/sale/courseoffer.vue
+1
-1
myoffer.vue
src/pages/sale/myoffer.vue
+1
-1
No files found.
src/components/sale/orderlist.vue
View file @
4905f05c
...
...
@@ -509,7 +509,7 @@
<continueclass-form
v-if=
"isShowContinueClass"
:save-obj=
"orderObj"
@
close=
"closeContinueClassForm"
@
success=
"refreshClassOrder"
></continueclass-form>
<!-- 查看报价单 -->
<viewquotation-form
v-if=
"isShowviewQuo"
:rId=
"rId"
@
close=
"closeQuota"
@
success=
"refreshView"
>
<viewquotation-form
v-if=
"isShowviewQuo"
:rId=
"rId"
:isShowCancle=
"1"
@
close=
"closeQuota"
@
success=
"refreshView"
>
</viewquotation-form>
</div>
...
...
src/components/sale/viewquotation-form.vue
View file @
4905f05c
...
...
@@ -120,7 +120,7 @@
<q-btn
color=
"primary"
flat
label=
"获取二维码"
></q-btn>
</div>
<div
class=
"col-auto"
>
<q-btn
v-if=
"model&&model.CustomerStatus&&(model.CustomerStatus==1||model.CustomerStatus==2)"
<q-btn
v-if=
"model&&model.CustomerStatus&&(model.CustomerStatus==1||model.CustomerStatus==2)
&&ShowCancle==0
"
color=
"dark"
label=
"撤销报价单"
@
click=
"setOfferStatus"
></q-btn>
</div>
</div>
...
...
@@ -146,7 +146,7 @@
import
print
from
"print-js"
;
import
html2canvas
from
"html2canvas"
;
export
default
{
props
:
[
"rId"
],
props
:
[
"rId"
,
"isShowCancle"
],
data
()
{
return
{
persistent
:
true
,
...
...
@@ -167,6 +167,7 @@
isGengernal
:
false
,
Id
:
0
,
//报价单编号
model
:
{},
//报价单详情
ShowCancle
:
0
//0显示 1 不显示
};
},
created
()
{
...
...
@@ -174,6 +175,9 @@
this
.
Id
=
this
.
rId
;
this
.
getDetails
();
}
if
(
this
.
isShowCancle
){
this
.
ShowCancle
=
this
.
isShowCancle
;
}
},
methods
:
{
//设置报价单状态
...
...
src/pages/financial/financalDocument/BasicDocuments.vue
View file @
4905f05c
...
...
@@ -1339,7 +1339,7 @@
</viewer>
<classinfo-form
v-if=
"isShowClassInfo"
:seting-obj=
"classObjOption"
@
close=
"closeClass"
@
success=
"refreshClass"
></classinfo-form>
<a
id=
'groupTourOrder_DownLoad'
target=
"_blank"
style=
"display:none"
>
1不要删除
</a>
<viewquotationForm
v-if=
"isShowviewQuo"
:rId=
"rId"
@
close=
"closeQuota"
>
<viewquotationForm
v-if=
"isShowviewQuo"
:rId=
"rId"
:isShowCancle=
"1"
@
close=
"closeQuota"
>
</viewquotationForm>
</div>
...
...
src/pages/financial/financalDocument/FinancialDocumentsDetail.vue
View file @
4905f05c
...
...
@@ -844,7 +844,7 @@
<a
id=
'groupTourOrder_DownLoad'
target=
"_blank"
style=
"display:none"
>
1不要删除
</a>
<classinfo-form
v-if=
"isShowClassInfo"
:seting-obj=
"classObjOption"
@
close=
"closeClass"
@
success=
"refreshClass"
>
</classinfo-form>
<viewquotationForm
v-if=
"isShowviewQuo"
:rId=
"rId"
@
close=
"closeQuota"
>
<viewquotationForm
v-if=
"isShowviewQuo"
:rId=
"rId"
:isShowCancle=
"1"
@
close=
"closeQuota"
>
</viewquotationForm>
</div>
</template>
...
...
src/pages/sale/courseoffer.vue
View file @
4905f05c
...
...
@@ -176,7 +176,7 @@
<edittransorder-form
:obj=
"offerObj"
@
save=
"refreshPage()"
></edittransorder-form>
</q-dialog>
<!-- 查看报价单 -->
<viewquotation-form
v-if=
"isShowviewQuo"
:rId=
"rId"
@
close=
"closeQuota"
>
<viewquotation-form
v-if=
"isShowviewQuo"
:rId=
"rId"
:isShowCancle=
"1"
@
close=
"closeQuota"
>
</viewquotation-form>
</div>
...
...
src/pages/sale/myoffer.vue
View file @
4905f05c
...
...
@@ -184,7 +184,7 @@
<edittransorder-form
:obj=
"offerObj"
@
save=
"refreshPage()"
></edittransorder-form>
</q-dialog>
<!-- 查看报价单 -->
<viewquotation-form
v-if=
"isShowviewQuo"
:rId=
"rId"
@
close=
"closeQuota"
>
<viewquotation-form
v-if=
"isShowviewQuo"
:rId=
"rId"
:isShowCancle=
"0"
@
close=
"closeQuota"
>
</viewquotation-form>
</div>
...
...
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