diff --git a/api/AccountPriceFinallReview.js b/api/AccountPriceFinallReview.js
index 1f437c9..40895a0 100644
--- a/api/AccountPriceFinallReview.js
+++ b/api/AccountPriceFinallReview.js
@@ -27,4 +27,31 @@ export const directorLastReviewPayment = (query) => {
url: '/bussiness/baseusercredithistory/goods-credit-period-repeatedly-review',
params: query,
})
+}
+
+export const getCreditPerRepeatReviewlist = (data, query) => {
+ return request({
+ method: 'post',
+ url: '/bussiness/baseusercredithistory/goods-credit-line-repeatedly-review-list',
+ params: query,
+ data: data,
+ })
+}
+
+// 价格终审 的回退
+export const putBackDataLastPrice = (data) => {
+ return request({
+ method: 'put',
+ url: '/bussiness/businessgoods/goods-credit-line-repeatedly-review-back',
+ data,
+ })
+}
+
+/// 价格终审(副总监初审)
+export const directorLastReviewPrice = (data)=> {
+ return request({
+ method: 'put',
+ url: '/bussiness/businessgoods/goods-credit-line-repeatedly-review',
+ data,
+ })
}
\ No newline at end of file
diff --git a/pages/work/AccountPriceFinallReview/children/PriceFinal.vue b/pages/work/AccountPriceFinallReview/children/PriceFinal.vue
new file mode 100644
index 0000000..5a016bb
--- /dev/null
+++ b/pages/work/AccountPriceFinallReview/children/PriceFinal.vue
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+
+
+
+ 发货仓库:
+ {{ row.warehouseName }}
+
+
+ 新考核价(元,含税):
+ {{ row.checkPrice }}
+
+
+ 新开票价(元,含税):
+ {{ row.invoicePrice }}
+
+
+ 原考核价(元,无税):
+ {{ row.oldCheckPrice }}
+
+
+ 原开票价(元,无税):
+ {{ row.oldInvoicePrice }}
+
+
+
+
+ 状态:
+ {{ row.state }}
+
+
+ 更新日期:
+ {{ row.updateTime }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/work/AccountPriceFinallReview/children/components/PriceFinalReview.vue b/pages/work/AccountPriceFinallReview/children/components/PriceFinalReview.vue
new file mode 100644
index 0000000..cdd76a9
--- /dev/null
+++ b/pages/work/AccountPriceFinallReview/children/components/PriceFinalReview.vue
@@ -0,0 +1,181 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file