diff --git a/ruoyi-ui/package.json b/ruoyi-ui/package.json index 6c808379..5b68d81f 100644 --- a/ruoyi-ui/package.json +++ b/ruoyi-ui/package.json @@ -33,9 +33,11 @@ "file-saver": "2.0.5", "fuse.js": "6.4.3", "highlight.js": "9.18.5", + "html2canvas": "^1.4.1", "js-beautify": "1.13.0", "js-cookie": "3.0.1", "jsencrypt": "3.0.0-rc.1", + "jspdf": "^2.5.2", "nprogress": "0.2.0", "quill": "2.0.2", "screenfull": "5.0.2", diff --git a/ruoyi-ui/src/views/bid/purchaseorder/index.vue b/ruoyi-ui/src/views/bid/purchaseorder/index.vue index 2fc39d20..a7a572d7 100644 --- a/ruoyi-ui/src/views/bid/purchaseorder/index.vue +++ b/ruoyi-ui/src/views/bid/purchaseorder/index.vue @@ -49,6 +49,7 @@ + @@ -66,7 +67,6 @@ - 采购明细 @@ -108,38 +108,86 @@ - -
- - {{ detailData.poNo }} - {{ detailData.supplierName }} - ¥{{ detailData.totalAmount }} - {{ statusLabel(detailData.status) }} - {{ detailData.deliveryDate }} - {{ detailData.deliveryAddr }} - - 明细 - - - - - - - + + +
+ +
+
+ +
+
福安德综合报价系统
+
采购单
+
+
{{ detailData.poNo }}
+
+
+ + + + + + + + + + + + + + + + +
采购单号{{ detailData.poNo }}供应商{{ detailData.supplierName }}
总金额¥{{ detailData.totalAmount }}状态{{ statusLabel(detailData.status) }}
交货日期{{ detailData.deliveryDate }}交货地址{{ detailData.deliveryAddr }}
备注{{ detailData.remark }}
+
采购明细
+ + + + + + + + + + + + + + + + + + + + +
物料名称规格型号单位数量单价(元)金额(元)
{{ item.materialName }}{{ item.spec }}{{ item.unit }}{{ item.quantity }}{{ item.unitPrice }}{{ item.totalPrice || ((item.quantity||0)*(item.unitPrice||0)).toFixed(2) }}
合计金额¥{{ detailData.totalAmount }}
+ +
- +
+ 关闭 + 导出 PDF +
+
+ + + diff --git a/ruoyi-ui/src/views/bid/quotation/index.vue b/ruoyi-ui/src/views/bid/quotation/index.vue index 8e8a781e..639477e9 100644 --- a/ruoyi-ui/src/views/bid/quotation/index.vue +++ b/ruoyi-ui/src/views/bid/quotation/index.vue @@ -38,7 +38,7 @@ - + - 添加行 - + 添加行
@@ -131,46 +130,96 @@
- - -
- - {{ detailData.quoteNo }} - {{ detailData.supplierName }} - {{ detailData.rfqNo }} - {{ statusLabel(detailData.status) }} - ¥{{ detailData.totalAmount }} - {{ detailData.deliveryDays }} 天 - - 明细 - - - - - - - + + +
+
+
+ +
+
福安德综合报价系统
+
报价单
+
+
{{ detailData.quoteNo }}
+
+
+ + + + + + + + + + + + + + + + + + + + +
报价单号{{ detailData.quoteNo }}供应商{{ detailData.supplierName }}
关联RFQ{{ detailData.rfqNo }}状态{{ statusLabel(detailData.status) }}
总金额¥{{ detailData.totalAmount }}交货期{{ detailData.deliveryDays }} 天
有效期{{ detailData.validDays }} 天币种{{ detailData.currency }}
备注{{ detailData.note }}
+
报价明细
+ + + + + + + + + + + + + + + + + + + + +
物料名称规格型号单位数量单价(元)金额(元)
{{ item.materialName }}{{ item.spec }}{{ item.unit }}{{ item.quantity }}{{ item.unitPrice }}{{ item.totalPrice || ((item.quantity||0)*(item.unitPrice||0)).toFixed(2) }}
合计金额¥{{ detailData.totalAmount }}
+ +
- +
+ 关闭 + 导出 PDF +
+
+ + + diff --git a/ruoyi-ui/src/views/bid/rfq/detail.vue b/ruoyi-ui/src/views/bid/rfq/detail.vue new file mode 100644 index 00000000..c3ad395d --- /dev/null +++ b/ruoyi-ui/src/views/bid/rfq/detail.vue @@ -0,0 +1,237 @@ + + + + +