diff --git a/src/api/invest/productInfor.js b/src/api/invest/productInfor.js
new file mode 100644
index 0000000..0595fdb
--- /dev/null
+++ b/src/api/invest/productInfor.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询商品基础信息列表
+export function listProductInfor(query) {
+ return request({
+ url: '/invest/productInfor/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询商品基础信息详细
+export function getProductInfor(id) {
+ return request({
+ url: '/invest/productInfor/' + id,
+ method: 'get'
+ })
+}
+
+// 新增商品基础信息
+export function addProductInfor(data) {
+ return request({
+ url: '/invest/productInfor',
+ method: 'post',
+ data
+ })
+}
+
+// 修改商品基础信息
+export function updateProductInfor(data) {
+ return request({
+ url: '/invest/productInfor',
+ method: 'put',
+ data
+ })
+}
+
+// 删除商品基础信息
+export function delProductInfor(id) {
+ return request({
+ url: '/invest/productInfor/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/views/invest/productInfor/index.vue b/src/views/invest/productInfor/index.vue
new file mode 100644
index 0000000..7199f27
--- /dev/null
+++ b/src/views/invest/productInfor/index.vue
@@ -0,0 +1,293 @@
+
+
+
+
查询条件
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+