diff --git a/ruoyi-ui/src/assets/logo/logo.png b/ruoyi-ui/src/assets/logo/logo.png index 0e1b671d..bcb123e6 100644 Binary files a/ruoyi-ui/src/assets/logo/logo.png and b/ruoyi-ui/src/assets/logo/logo.png differ diff --git a/ruoyi-ui/src/views/bid/clientquote/index.vue b/ruoyi-ui/src/views/bid/clientquote/index.vue index fcfa8c7e..c0f15b61 100644 --- a/ruoyi-ui/src/views/bid/clientquote/index.vue +++ b/ruoyi-ui/src/views/bid/clientquote/index.vue @@ -89,14 +89,14 @@ export default { // Create draft then navigate addClientQuote({ status: "draft", currency: "CNY", items: [] }).then(res => { const id = res.data && res.data.quoteId; - if (id) this.$router.push({ path: "/bid/clientquote/detail", query: { quoteId: id } }); - else this.$router.push({ path: "/bid/clientquote/detail", query: { quoteId: "__new__" } }); + if (id) this.$router.push({ path: "/quotemgr/clientquote/detail", query: { quoteId: id } }); + else this.$router.push({ path: "/quotemgr/clientquote/detail", query: { quoteId: "__new__" } }); }).catch(() => { - this.$router.push({ path: "/bid/clientquote/detail", query: { quoteId: "__new__" } }); + this.$router.push({ path: "/quotemgr/clientquote/detail", query: { quoteId: "__new__" } }); }); }, goDetail(row) { - this.$router.push({ path: "/bid/clientquote/detail", query: { quoteId: row.quoteId } }); + this.$router.push({ path: "/quotemgr/clientquote/detail", query: { quoteId: row.quoteId } }); }, handleDelete(row) { this.$modal.confirm("确认删除报价单【" + row.quoteNo + "】?").then(() => { diff --git a/ruoyi-ui/src/views/bid/comparison/index.vue b/ruoyi-ui/src/views/bid/comparison/index.vue index 1cdea943..5133a413 100644 --- a/ruoyi-ui/src/views/bid/comparison/index.vue +++ b/ruoyi-ui/src/views/bid/comparison/index.vue @@ -74,10 +74,10 @@ export default { }, resetQuery() { this.queryParams = { pageNum: 1, pageSize: 10, rfqNo: null, rfqTitle: null }; this.getList(); }, goCompare(row) { - this.$router.push({ path: "/bid/comparison/detail", query: { rfqId: row.rfqId } }); + this.$router.push({ path: "/procurement/comparison/detail", query: { rfqId: row.rfqId } }); }, goRfqDetail(row) { - this.$router.push({ path: "/bid/rfq/detail", query: { rfqId: row.rfqId } }); + this.$router.push({ path: "/procurement/rfq/detail", query: { rfqId: row.rfqId } }); }, statusType(s) { const m = { draft: "info", open: "primary", closed: "success", cancelled: "danger" }; diff --git a/ruoyi-ui/src/views/bid/quotation/index.vue b/ruoyi-ui/src/views/bid/quotation/index.vue index 639477e9..d08a9b1f 100644 --- a/ruoyi-ui/src/views/bid/quotation/index.vue +++ b/ruoyi-ui/src/views/bid/quotation/index.vue @@ -1,144 +1,289 @@