diff --git a/src/api/PurchasingCenter/PurchaseContractRequestFund.js b/src/api/PurchasingCenter/PurchaseContractRequestFund.js
new file mode 100644
index 00000000..350b076a
--- /dev/null
+++ b/src/api/PurchasingCenter/PurchaseContractRequestFund.js
@@ -0,0 +1,73 @@
+import request from '@/utils/request'
+// 初始化合同
+export function initContract() {
+ return request({
+ url: '',
+ method: 'post',
+ data: {
+ type: '1',
+ name: '采购管理_采购请款表_查询数据'
+ }
+ })
+}
+// 查询表1
+export function searchTable1(...params) {
+ return request({
+ url: '',
+ method: 'post',
+ data: {
+ type: '1',
+ name: '采购管理_采购请款表_查询数据',
+ param: '采购合同流水号_check=' + params[2] + '&采购合同流水号=' + params[3] + '&供应商名称_check=' + params[4] + '&供应商名称=' + params[5],
+ Pagination: params[0] + '&' + params[1]
+ }
+ })
+}
+// 查询请款进度
+export function searchCondition(num1) {
+ return request({
+ url: '',
+ method: 'post',
+ data: {
+ type: '1',
+ name: '采购管理_采购请款表_请款进度_查询数据',
+ param: '采购合同流水号=' + num1
+ }
+ })
+}
+// 请款
+export function requestFund(num1, money, time, id) {
+ return request({
+ url: '',
+ method: 'post',
+ data: {
+ type: '2',
+ name: '采购管理_采购请款表_增加数据',
+ param: `采购合同流水号=${num1}&请款金额=${money}&请款人=${id}&请款时间=${time}`
+ }
+ })
+}
+// 取消请款
+export function cancelRequestFund(num1) {
+ return request({
+ url: '',
+ method: 'post',
+ data: {
+ type: '2',
+ name: '采购管理_采购请款表_删除数据',
+ param: '采购请款流水号=' + num1
+ }
+ })
+}
+// 采购合同内容查询
+export function searchContract(num) {
+ return request({
+ url: '',
+ method: 'post',
+ data: {
+ type: '1',
+ name: '采购管理_采购合同内容_查询数据',
+ param: '采购合同流水号=' + num
+ }
+ })
+}
diff --git a/src/icons/svg/BuyerRequestFund.svg b/src/icons/svg/PurchaseContractRequestFund.svg
similarity index 100%
rename from src/icons/svg/BuyerRequestFund.svg
rename to src/icons/svg/PurchaseContractRequestFund.svg
diff --git a/src/views/PurchasingCenter/PurchaseContractRequestFund/index.vue b/src/views/PurchasingCenter/PurchaseContractRequestFund/index.vue
new file mode 100644
index 00000000..e4561580
--- /dev/null
+++ b/src/views/PurchasingCenter/PurchaseContractRequestFund/index.vue
@@ -0,0 +1,265 @@
+
+
+
+ 合同号:
+
+
+
+ 供应商:
+
+ 查询
+
+
+
+
+
+
+ {{ scope.row.采购合同编号 }}
+
+
+
+
+ {{ scope.row.采购合同名称 }}
+
+
+
+
+ {{ scope.row.供应商名称 }}
+
+
+
+
+ {{ scope.row.合同总额 }}
+
+
+
+
+
+
+
+
+
+ 请款
+
+
+
+
+
+
+
+ 取消请款
+
+
+
+
+
+ {{ scope.row.请款金额 }}
+
+
+
+
+ {{ scope.row.请款时间 ? scope.row.请款时间.split(' ')[0] : '' }}
+
+
+
+
+ {{ scope.row.审批情况内容 }}
+
+
+
+
+ {{ scope.row.未通过审批原因 }}
+
+
+
+
+ {{ scope.row.付款情况内容 }}
+
+
+
+
+ {{ scope.row.未付款原因 }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+