diff --git a/src/api/companyPrice.js b/src/api/companyPrice.js deleted file mode 100755 index 108834c..0000000 --- a/src/api/companyPrice.js +++ /dev/null @@ -1,97 +0,0 @@ -import service from '@/utils/request' - -// @Tags CompanyPrice -// @Summary 创建公司报价 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.CompanyPrice true "创建公司报价" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"创建成功"}" -// @Router /companyPrice/createCompanyPrice [post] -export const createCompanyPrice = (data) => { - return service({ - url: '/companyPrice/createCompanyPrice', - method: 'post', - data - }) -} - -// @Tags CompanyPrice -// @Summary 删除公司报价 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.CompanyPrice true "删除公司报价" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /companyPrice/deleteCompanyPrice [delete] -export const deleteCompanyPrice = (params) => { - return service({ - url: '/companyPrice/deleteCompanyPrice', - method: 'delete', - params - }) -} - -// @Tags CompanyPrice -// @Summary 批量删除公司报价 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body request.IdsReq true "批量删除公司报价" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /companyPrice/deleteCompanyPrice [delete] -export const deleteCompanyPriceByIds = (params) => { - return service({ - url: '/companyPrice/deleteCompanyPriceByIds', - method: 'delete', - params - }) -} - -// @Tags CompanyPrice -// @Summary 更新公司报价 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.CompanyPrice true "更新公司报价" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}" -// @Router /companyPrice/updateCompanyPrice [put] -export const updateCompanyPrice = (data) => { - return service({ - url: '/companyPrice/updateCompanyPrice', - method: 'put', - data - }) -} - -// @Tags CompanyPrice -// @Summary 用id查询公司报价 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query model.CompanyPrice true "用id查询公司报价" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}" -// @Router /companyPrice/findCompanyPrice [get] -export const findCompanyPrice = (params) => { - return service({ - url: '/companyPrice/findCompanyPrice', - method: 'get', - params - }) -} - -// @Tags CompanyPrice -// @Summary 分页获取公司报价列表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query request.PageInfo true "分页获取公司报价列表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}" -// @Router /companyPrice/getCompanyPriceList [get] -export const getCompanyPriceList = (params) => { - return service({ - url: '/companyPrice/getCompanyPriceList', - method: 'get', - params - }) -} diff --git a/src/api/crawl100ppi.js b/src/api/crawl100ppi.js deleted file mode 100755 index 153f3a4..0000000 --- a/src/api/crawl100ppi.js +++ /dev/null @@ -1,113 +0,0 @@ -import service from '@/utils/request' - -// @Tags Crawl100ppi -// @Summary 创建生意社爬虫数据 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.Crawl100ppi true "创建生意社爬虫数据" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"创建成功"}" -// @Router /crawl100ppi/createCrawl100ppi [post] -export const createCrawl100ppi = (data) => { - return service({ - url: '/crawl100ppi/createCrawl100ppi', - method: 'post', - data - }) -} - -// @Tags Crawl100ppi -// @Summary 删除生意社爬虫数据 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.Crawl100ppi true "删除生意社爬虫数据" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /crawl100ppi/deleteCrawl100ppi [delete] -export const deleteCrawl100ppi = (params) => { - return service({ - url: '/crawl100ppi/deleteCrawl100ppi', - method: 'delete', - params - }) -} - -// @Tags Crawl100ppi -// @Summary 批量删除生意社爬虫数据 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body request.IdsReq true "批量删除生意社爬虫数据" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /crawl100ppi/deleteCrawl100ppi [delete] -export const deleteCrawl100ppiByIds = (params) => { - return service({ - url: '/crawl100ppi/deleteCrawl100ppiByIds', - method: 'delete', - params - }) -} - -// @Tags Crawl100ppi -// @Summary 更新生意社爬虫数据 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.Crawl100ppi true "更新生意社爬虫数据" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}" -// @Router /crawl100ppi/updateCrawl100ppi [put] -export const updateCrawl100ppi = (data) => { - return service({ - url: '/crawl100ppi/updateCrawl100ppi', - method: 'put', - data - }) -} - -// @Tags Crawl100ppi -// @Summary 用id查询生意社爬虫数据 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query model.Crawl100ppi true "用id查询生意社爬虫数据" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}" -// @Router /crawl100ppi/findCrawl100ppi [get] -export const findCrawl100ppi = (params) => { - return service({ - url: '/crawl100ppi/findCrawl100ppi', - method: 'get', - params - }) -} - -// @Tags Crawl100ppi -// @Summary 分页获取生意社爬虫数据列表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query request.PageInfo true "分页获取生意社爬虫数据列表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}" -// @Router /crawl100ppi/getCrawl100ppiList [get] -export const getCrawl100ppiList = (params) => { - return service({ - url: '/crawl100ppi/getCrawl100ppiList', - method: 'get', - params - }) -} - -// @Tags Crawl100ppi -// @Summary 批量重新同步爬虫数据 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body request.IdsReq true "批量重新同步爬虫数据" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"同步成功"}" -// @Router /crawl100ppi/syncCrawl100ppi [put] -export const syncCrawl100ppi = (params) => { - return service({ - url: '/crawl100ppi/syncCrawl100ppi', - method: 'put', - params - }) -} diff --git a/src/api/crawlFieldReplace.js b/src/api/crawlFieldReplace.js deleted file mode 100755 index dc54dcd..0000000 --- a/src/api/crawlFieldReplace.js +++ /dev/null @@ -1,97 +0,0 @@ -import service from '@/utils/request' - -// @Tags CrawlFieldReplace -// @Summary 创建crawlFieldReplace表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.CrawlFieldReplace true "创建crawlFieldReplace表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"创建成功"}" -// @Router /crawlFieldReplace/createCrawlFieldReplace [post] -export const createCrawlFieldReplace = (data) => { - return service({ - url: '/crawlFieldReplace/createCrawlFieldReplace', - method: 'post', - data - }) -} - -// @Tags CrawlFieldReplace -// @Summary 删除crawlFieldReplace表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.CrawlFieldReplace true "删除crawlFieldReplace表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /crawlFieldReplace/deleteCrawlFieldReplace [delete] -export const deleteCrawlFieldReplace = (params) => { - return service({ - url: '/crawlFieldReplace/deleteCrawlFieldReplace', - method: 'delete', - params - }) -} - -// @Tags CrawlFieldReplace -// @Summary 批量删除crawlFieldReplace表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body request.IdsReq true "批量删除crawlFieldReplace表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /crawlFieldReplace/deleteCrawlFieldReplace [delete] -export const deleteCrawlFieldReplaceByIds = (params) => { - return service({ - url: '/crawlFieldReplace/deleteCrawlFieldReplaceByIds', - method: 'delete', - params - }) -} - -// @Tags CrawlFieldReplace -// @Summary 更新crawlFieldReplace表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.CrawlFieldReplace true "更新crawlFieldReplace表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}" -// @Router /crawlFieldReplace/updateCrawlFieldReplace [put] -export const updateCrawlFieldReplace = (data) => { - return service({ - url: '/crawlFieldReplace/updateCrawlFieldReplace', - method: 'put', - data - }) -} - -// @Tags CrawlFieldReplace -// @Summary 用id查询crawlFieldReplace表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query model.CrawlFieldReplace true "用id查询crawlFieldReplace表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}" -// @Router /crawlFieldReplace/findCrawlFieldReplace [get] -export const findCrawlFieldReplace = (params) => { - return service({ - url: '/crawlFieldReplace/findCrawlFieldReplace', - method: 'get', - params - }) -} - -// @Tags CrawlFieldReplace -// @Summary 分页获取crawlFieldReplace表列表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query request.PageInfo true "分页获取crawlFieldReplace表列表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}" -// @Router /crawlFieldReplace/getCrawlFieldReplaceList [get] -export const getCrawlFieldReplaceList = (params) => { - return service({ - url: '/crawlFieldReplace/getCrawlFieldReplaceList', - method: 'get', - params - }) -} diff --git a/src/api/product.js b/src/api/product.js deleted file mode 100755 index 598d67f..0000000 --- a/src/api/product.js +++ /dev/null @@ -1,97 +0,0 @@ -import service from '@/utils/request' - -// @Tags Product -// @Summary 创建产品表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.Product true "创建产品表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"创建成功"}" -// @Router /product/createProduct [post] -export const createProduct = (data) => { - return service({ - url: '/product/createProduct', - method: 'post', - data - }) -} - -// @Tags Product -// @Summary 删除产品表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.Product true "删除产品表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /product/deleteProduct [delete] -export const deleteProduct = (params) => { - return service({ - url: '/product/deleteProduct', - method: 'delete', - params - }) -} - -// @Tags Product -// @Summary 批量删除产品表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body request.IdsReq true "批量删除产品表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /product/deleteProduct [delete] -export const deleteProductByIds = (params) => { - return service({ - url: '/product/deleteProductByIds', - method: 'delete', - params - }) -} - -// @Tags Product -// @Summary 更新产品表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.Product true "更新产品表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}" -// @Router /product/updateProduct [put] -export const updateProduct = (data) => { - return service({ - url: '/product/updateProduct', - method: 'put', - data - }) -} - -// @Tags Product -// @Summary 用id查询产品表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query model.Product true "用id查询产品表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}" -// @Router /product/findProduct [get] -export const findProduct = (params) => { - return service({ - url: '/product/findProduct', - method: 'get', - params - }) -} - -// @Tags Product -// @Summary 分页获取产品表列表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query request.PageInfo true "分页获取产品表列表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}" -// @Router /product/getProductList [get] -export const getProductList = (params) => { - return service({ - url: '/product/getProductList', - method: 'get', - params - }) -} diff --git a/src/api/productCategory.js b/src/api/productCategory.js deleted file mode 100755 index 11b6c2c..0000000 --- a/src/api/productCategory.js +++ /dev/null @@ -1,97 +0,0 @@ -import service from '@/utils/request' - -// @Tags ProductCategory -// @Summary 创建农资行情分类表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.ProductCategory true "创建农资行情分类表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"创建成功"}" -// @Router /productCategory/createProductCategory [post] -export const createProductCategory = (data) => { - return service({ - url: '/productCategory/createProductCategory', - method: 'post', - data - }) -} - -// @Tags ProductCategory -// @Summary 删除农资行情分类表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.ProductCategory true "删除农资行情分类表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /productCategory/deleteProductCategory [delete] -export const deleteProductCategory = (params) => { - return service({ - url: '/productCategory/deleteProductCategory', - method: 'delete', - params - }) -} - -// @Tags ProductCategory -// @Summary 批量删除农资行情分类表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body request.IdsReq true "批量删除农资行情分类表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /productCategory/deleteProductCategory [delete] -export const deleteProductCategoryByIds = (params) => { - return service({ - url: '/productCategory/deleteProductCategoryByIds', - method: 'delete', - params - }) -} - -// @Tags ProductCategory -// @Summary 更新农资行情分类表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.ProductCategory true "更新农资行情分类表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}" -// @Router /productCategory/updateProductCategory [put] -export const updateProductCategory = (data) => { - return service({ - url: '/productCategory/updateProductCategory', - method: 'put', - data - }) -} - -// @Tags ProductCategory -// @Summary 用id查询农资行情分类表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query model.ProductCategory true "用id查询农资行情分类表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}" -// @Router /productCategory/findProductCategory [get] -export const findProductCategory = (params) => { - return service({ - url: '/productCategory/findProductCategory', - method: 'get', - params - }) -} - -// @Tags ProductCategory -// @Summary 分页获取农资行情分类表列表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query request.PageInfo true "分页获取农资行情分类表列表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}" -// @Router /productCategory/getProductCategoryList [get] -export const getProductCategoryList = (params) => { - return service({ - url: '/productCategory/getProductCategoryList', - method: 'get', - params - }) -} diff --git a/src/api/productPrice.js b/src/api/productPrice.js deleted file mode 100755 index 31d019d..0000000 --- a/src/api/productPrice.js +++ /dev/null @@ -1,97 +0,0 @@ -import service from '@/utils/request' - -// @Tags ProductPrice -// @Summary 创建产品价格 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.ProductPrice true "创建产品价格" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"创建成功"}" -// @Router /productPrice/createProductPrice [post] -export const createProductPrice = (data) => { - return service({ - url: '/productPrice/createProductPrice', - method: 'post', - data - }) -} - -// @Tags ProductPrice -// @Summary 删除产品价格 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.ProductPrice true "删除产品价格" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /productPrice/deleteProductPrice [delete] -export const deleteProductPrice = (params) => { - return service({ - url: '/productPrice/deleteProductPrice', - method: 'delete', - params - }) -} - -// @Tags ProductPrice -// @Summary 批量删除产品价格 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body request.IdsReq true "批量删除产品价格" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /productPrice/deleteProductPrice [delete] -export const deleteProductPriceByIds = (params) => { - return service({ - url: '/productPrice/deleteProductPriceByIds', - method: 'delete', - params - }) -} - -// @Tags ProductPrice -// @Summary 更新产品价格 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.ProductPrice true "更新产品价格" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}" -// @Router /productPrice/updateProductPrice [put] -export const updateProductPrice = (data) => { - return service({ - url: '/productPrice/updateProductPrice', - method: 'put', - data - }) -} - -// @Tags ProductPrice -// @Summary 用id查询产品价格 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query model.ProductPrice true "用id查询产品价格" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}" -// @Router /productPrice/findProductPrice [get] -export const findProductPrice = (params) => { - return service({ - url: '/productPrice/findProductPrice', - method: 'get', - params - }) -} - -// @Tags ProductPrice -// @Summary 分页获取产品价格列表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query request.PageInfo true "分页获取产品价格列表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}" -// @Router /productPrice/getProductPriceList [get] -export const getProductPriceList = (params) => { - return service({ - url: '/productPrice/getProductPriceList', - method: 'get', - params - }) -} diff --git a/src/api/sourcePrice.js b/src/api/sourcePrice.js deleted file mode 100755 index a2f001e..0000000 --- a/src/api/sourcePrice.js +++ /dev/null @@ -1,97 +0,0 @@ -import service from '@/utils/request' - -// @Tags SourcePrice -// @Summary 创建nzhq_source_price表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.SourcePrice true "创建nzhq_source_price表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"创建成功"}" -// @Router /sourcePrice/createSourcePrice [post] -export const createSourcePrice = (data) => { - return service({ - url: '/sourcePrice/createSourcePrice', - method: 'post', - data - }) -} - -// @Tags SourcePrice -// @Summary 删除nzhq_source_price表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.SourcePrice true "删除nzhq_source_price表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /sourcePrice/deleteSourcePrice [delete] -export const deleteSourcePrice = (params) => { - return service({ - url: '/sourcePrice/deleteSourcePrice', - method: 'delete', - params - }) -} - -// @Tags SourcePrice -// @Summary 批量删除nzhq_source_price表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body request.IdsReq true "批量删除nzhq_source_price表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /sourcePrice/deleteSourcePrice [delete] -export const deleteSourcePriceByIds = (params) => { - return service({ - url: '/sourcePrice/deleteSourcePriceByIds', - method: 'delete', - params - }) -} - -// @Tags SourcePrice -// @Summary 更新nzhq_source_price表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.SourcePrice true "更新nzhq_source_price表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}" -// @Router /sourcePrice/updateSourcePrice [put] -export const updateSourcePrice = (data) => { - return service({ - url: '/sourcePrice/updateSourcePrice', - method: 'put', - data - }) -} - -// @Tags SourcePrice -// @Summary 用id查询nzhq_source_price表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query model.SourcePrice true "用id查询nzhq_source_price表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}" -// @Router /sourcePrice/findSourcePrice [get] -export const findSourcePrice = (params) => { - return service({ - url: '/sourcePrice/findSourcePrice', - method: 'get', - params - }) -} - -// @Tags SourcePrice -// @Summary 分页获取nzhq_source_price表列表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query request.PageInfo true "分页获取nzhq_source_price表列表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}" -// @Router /sourcePrice/getSourcePriceList [get] -export const getSourcePriceList = (params) => { - return service({ - url: '/sourcePrice/getSourcePriceList', - method: 'get', - params - }) -} diff --git a/src/api/systemArea.js b/src/api/systemArea.js deleted file mode 100755 index e76253a..0000000 --- a/src/api/systemArea.js +++ /dev/null @@ -1,97 +0,0 @@ -import service from '@/utils/request' - -// @Tags SystemArea -// @Summary 创建地区 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.SystemArea true "创建地区" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"创建成功"}" -// @Router /systemArea/createSystemArea [post] -export const createSystemArea = (data) => { - return service({ - url: '/systemArea/createSystemArea', - method: 'post', - data - }) -} - -// @Tags SystemArea -// @Summary 删除地区 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.SystemArea true "删除地区" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /systemArea/deleteSystemArea [delete] -export const deleteSystemArea = (params) => { - return service({ - url: '/systemArea/deleteSystemArea', - method: 'delete', - params - }) -} - -// @Tags SystemArea -// @Summary 批量删除地区 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body request.IdsReq true "批量删除地区" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" -// @Router /systemArea/deleteSystemArea [delete] -export const deleteSystemAreaByIds = (params) => { - return service({ - url: '/systemArea/deleteSystemAreaByIds', - method: 'delete', - params - }) -} - -// @Tags SystemArea -// @Summary 更新地区 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data body model.SystemArea true "更新地区" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}" -// @Router /systemArea/updateSystemArea [put] -export const updateSystemArea = (data) => { - return service({ - url: '/systemArea/updateSystemArea', - method: 'put', - data - }) -} - -// @Tags SystemArea -// @Summary 用id查询地区 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query model.SystemArea true "用id查询地区" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}" -// @Router /systemArea/findSystemArea [get] -export const findSystemArea = (params) => { - return service({ - url: '/systemArea/findSystemArea', - method: 'get', - params - }) -} - -// @Tags SystemArea -// @Summary 分页获取地区列表 -// @Security ApiKeyAuth -// @accept application/json -// @Produce application/json -// @Param data query request.PageInfo true "分页获取地区列表" -// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}" -// @Router /systemArea/getSystemAreaList [get] -export const getSystemAreaList = (params) => { - return service({ - url: '/systemArea/getSystemAreaList', - method: 'get', - params - }) -} diff --git a/src/view/companyPrice/companyPrice.vue b/src/view/companyPrice/companyPrice.vue deleted file mode 100755 index f9e4655..0000000 --- a/src/view/companyPrice/companyPrice.vue +++ /dev/null @@ -1,458 +0,0 @@ - - - - - - - - 创建日期 - - - - - - - - - — - - - - - 查询 - 重置 - - - - - - 新增 - 删除 - - - - - - {{ formatProduct(scope.row.productId) }} - - - - - - - - - {{ formatOnlyDate(scope.row.publishDate) }} - - - - {{ formatDate(scope.row.createdAt) }} - - - - - - - - - 查看详情 - - 变更 - 删除 - - - - - - - - - - - {{ type==='create'?'添加':'修改' }} - - 确 定 - 取 消 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 查看详情 - - - - - {{ formData.ID }} - - - {{ formatProduct(formData.productId) }} - - - {{ formData.productPriceId }} - - - {{ formData.sourceId }} - - - {{ formData.companyName }} - - - {{ formData.producer }} - - - {{ formData.price }} - - - {{ formData.priceUnit }} - - - {{ formatOnlyDate(formData.publishDate) }} - - - {{ formatDate(formData.createdAt) }} - - - {{ formatDate(formData.updatedAt) }} - - - - - - - - - diff --git a/src/view/companyPrice/companyPriceForm.vue b/src/view/companyPrice/companyPriceForm.vue deleted file mode 100755 index 2844783..0000000 --- a/src/view/companyPrice/companyPriceForm.vue +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 保存 - 返回 - - - - - - - - - diff --git a/src/view/crawl100ppi/crawl100ppi.vue b/src/view/crawl100ppi/crawl100ppi.vue deleted file mode 100755 index 2fc72af..0000000 --- a/src/view/crawl100ppi/crawl100ppi.vue +++ /dev/null @@ -1,581 +0,0 @@ - - - - - - - - - - - - - 创建日期 - - - - - - - - - — - - - - - 查询 - 重置 - - - - - - 新增 - 删除 - 重新同步 - - - - - - - - - - - - - - - - - - {{ formatCrawlStatus(scope.row.status) }} - - - - - {{ formatDate(scope.row.createdAt) }} - - - - - - - - - 查看 - - 变更 - 重新同步 - 删除 - - - - - - - - - - - {{ type==='create'?'添加':'修改' }} - - 确 定 - 取 消 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 查看详情 - - - - - {{ formData.ID }} - - - {{ formData.code }} - - - {{ formData.name }} - - - {{ formData.norm }} - - - {{ formData.producer }} - - - {{ formData.priceType }} - - - {{ formData.priceUnit }} - - - {{ formData.price }} - - - {{ formData.areaDetail }} - - - {{ formData.dealer }} - - - {{ formData.publishDate }} - - - {{ formData.uniqueCode }} - - - {{ formData.crawlTime }} - - - {{ formatCrawlStatus(formData.status) }} - - - {{ formData.syncError }} - - - {{ formatDate(formData.createdAt) }} - - - {{ formatDate(formData.updatedAt) }} - - - - - - - - - diff --git a/src/view/crawl100ppi/crawl100ppiForm.vue b/src/view/crawl100ppi/crawl100ppiForm.vue deleted file mode 100755 index 4145034..0000000 --- a/src/view/crawl100ppi/crawl100ppiForm.vue +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 保存 - 返回 - - - - - - - - - diff --git a/src/view/crawlFieldReplace/crawlFieldReplace.vue b/src/view/crawlFieldReplace/crawlFieldReplace.vue deleted file mode 100755 index cb041e2..0000000 --- a/src/view/crawlFieldReplace/crawlFieldReplace.vue +++ /dev/null @@ -1,409 +0,0 @@ - - - - - - - 字段名 - - - - - - - - - - 查询 - 重置 - - - - - - 新增 - 删除 - - - - - - - - - - - - - 查看详情 - - 变更 - 删除 - - - - - - - - - - - {{ type==='create'?'添加':'修改' }} - - 确 定 - 取 消 - - - - - - - - - - - - - - - - - - - - - - - - - - 查看详情 - - - - - {{ formData.id }} - - - {{ formData.fieldName }} - - - {{ formData.fieldSource }} - - - {{ formData.fieldReplace }} - - - {{ formData.isSync }} - - - - - - - - - diff --git a/src/view/crawlFieldReplace/crawlFieldReplaceForm.vue b/src/view/crawlFieldReplace/crawlFieldReplaceForm.vue deleted file mode 100755 index 84c19e2..0000000 --- a/src/view/crawlFieldReplace/crawlFieldReplaceForm.vue +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - 保存 - 返回 - - - - - - - - - -@/api/crawlFieldReplace \ No newline at end of file diff --git a/src/view/product/product.vue b/src/view/product/product.vue deleted file mode 100755 index 3df86a7..0000000 --- a/src/view/product/product.vue +++ /dev/null @@ -1,437 +0,0 @@ - - - - - - - - 创建日期 - - - - - - - - - — - - - - - 查询 - 重置 - - - - - - 新增 - 删除 - - - - - - - - {{ formatCategory(scope.row.categoryId) }} - - - - {{ formatBoolean(scope.row.status) }} - - - {{ formatDate(scope.row.createdAt) }} - - - - - - - - 查看详情 - - 变更 - 删除 - - - - - - - - - - - {{type==='create'?'添加':'修改'}} - - 确 定 - 取 消 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 查看详情 - - - - - {{ formData.ID }} - - - {{ formData.code }} - - - {{ formData.name }} - - - {{ formatCategory(formData.categoryId) }} - - - {{ formData.sortWeight }} - - - {{ formatBoolean(formData.status) }} - - - {{ formatDate(formData.createdAt) }} - - - {{ formatDate(formData.updatedAt) }} - - - - - - - - - diff --git a/src/view/product/productForm.vue b/src/view/product/productForm.vue deleted file mode 100755 index d6f1979..0000000 --- a/src/view/product/productForm.vue +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - 保存 - 返回 - - - - - - - - - diff --git a/src/view/productCategory/productCategory.vue b/src/view/productCategory/productCategory.vue deleted file mode 100755 index 726bbf9..0000000 --- a/src/view/productCategory/productCategory.vue +++ /dev/null @@ -1,341 +0,0 @@ - - - - - 新增 - 删除 - - - - - - - - - - - - - 查看详情 - - 变更 - 删除 - - - - - - - - - - - {{type==='create'?'添加':'修改'}} - - 确 定 - 取 消 - - - - - - - - - - - - - - - - - - 查看详情 - - - - - {{ formData.ID }} - - - {{ formData.parentId }} - - - {{ formData.name }} - - - {{ formatDate(formData.createdAt) }} - - - {{ formatDate(formData.updatedAt) }} - - - - - - - - diff --git a/src/view/productCategory/productCategoryForm.vue b/src/view/productCategory/productCategoryForm.vue deleted file mode 100755 index ce36c02..0000000 --- a/src/view/productCategory/productCategoryForm.vue +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - 保存 - 返回 - - - - - - - - - diff --git a/src/view/productPrice/productPrice.vue b/src/view/productPrice/productPrice.vue deleted file mode 100755 index ca8c1ee..0000000 --- a/src/view/productPrice/productPrice.vue +++ /dev/null @@ -1,497 +0,0 @@ - - - - - - - - 创建日期 - - - - - - - - - — - - - - - 查询 - 重置 - - - - - - 新增 - 删除 - - - - - - {{ formatProduct(scope.row.productId) }} - - - {{ formatOnlyDate(scope.row.publishDate) }} - - - - - - - - - {{ formatBoolean(scope.row.status) }} - - - - - {{ formatDate(scope.row.createdAt) }} - - - - - - - - - 查看详情 - - 变更 - 删除 - - - - - - - - - - - {{type==='create'?'添加':'修改'}} - - 确 定 - 取 消 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 查看详情 - - - - - {{ formData.ID }} - - - {{ formatProduct(formData.productId) }} - - - {{ formatOnlyDate(formData.publishDate) }} - - - {{ formData.norm }} - - - {{ formData.areaId }} - - - {{ formData.areaFullname }} - - - {{ formData.priceType }} - - - {{ formData.priceUnit }} - - - {{ formData.priceMin }} - - - {{ formData.priceMax }} - - - {{ formatBoolean(formData.status) }} - - - {{ formData.remark }} - - - {{ formatDate(formData.createdAt) }} - - - {{ formatDate(formData.updatedAt) }} - - - - - - - - - diff --git a/src/view/productPrice/productPriceForm.vue b/src/view/productPrice/productPriceForm.vue deleted file mode 100755 index 48e429b..0000000 --- a/src/view/productPrice/productPriceForm.vue +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 保存 - 返回 - - - - - - - - - diff --git a/src/view/sourcePrice/sourcePrice.vue b/src/view/sourcePrice/sourcePrice.vue deleted file mode 100755 index 48c6d10..0000000 --- a/src/view/sourcePrice/sourcePrice.vue +++ /dev/null @@ -1,641 +0,0 @@ - - - - - - - - 创建日期 - - - - - - - - - — - - - - - 查询 - 重置 - - - - - - 新增 - 删除 - - - - - - {{ formatProduct(scope.row.productId) }} - - - - - - - - - {{ formatPriceType(scope.row.priceType) }} - - - - - - {{ formatOnlyDate(scope.row.publishDate) }} - - - - {{ formatDate(scope.row.createdAt) }} - - - {{ formatDate(scope.row.updatedAt) }} - - - - - {{ scope.row.crawTable }}.{{ scope.row.crawTableId }} - - - - - - - - - - - 查看详情 - - 变更 - 删除 - - - - - - - - - - - {{type==='create'?'添加':'修改'}} - - 确 定 - 取 消 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 查看详情 - - - - - {{ formData.ID }} - - - {{ formData.crawTable }} - - - {{ formData.crawTableId }} - - - {{ formatProduct(formData.productId) }} - - - {{ formData.productPriceId }} - - - {{ formData.companyPriceId }} - - - {{ formData.norm }} - - - {{ formData.areaId }} - - - {{ formData.areaFullname }} - - - {{ formData.producter }} - - - {{ formatPriceType(formData.priceType) }} - - - {{ formData.price }} - - - {{ formData.priceUnit }} - - - {{ formData.companyName }} - - - {{ formatOnlyDate(formData.publishDate) }} - - - {{ formatDate(formData.createdAt) }} - - - {{ formatDate(formData.updatedAt) }} - - - - - - - - 查看爬虫数据详情 - - - - - {{ formData.ID }} - - - {{ formData.code }} - - - {{ formData.name }} - - - {{ formData.norm }} - - - {{ formData.producer }} - - - {{ formData.priceType }} - - - {{ formData.priceUnit }} - - - {{ formData.price }} - - - {{ formData.areaDetail }} - - - {{ formData.dealer }} - - - {{ formData.publishDate }} - - - {{ formData.uniqueCode }} - - - {{ formData.crawlTime }} - - - {{ formData.status }} - - - {{ formData.syncError }} - - - {{ formatDate(formData.createdAt) }} - - - {{ formatDate(formData.updatedAt) }} - - - - - - - - - diff --git a/src/view/sourcePrice/sourcePriceForm.vue b/src/view/sourcePrice/sourcePriceForm.vue deleted file mode 100755 index 5e4f8dd..0000000 --- a/src/view/sourcePrice/sourcePriceForm.vue +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 保存 - 返回 - - - - - - - - - diff --git a/src/view/systemArea/systemArea.vue b/src/view/systemArea/systemArea.vue deleted file mode 100755 index bb2d830..0000000 --- a/src/view/systemArea/systemArea.vue +++ /dev/null @@ -1,387 +0,0 @@ - - - - - - - ID - - - - - - 上级Id - - - - - - 地区级别 - - - - - 查询 - 重置 - - - - - - 新增 - 删除 - - - - - - - - - {{ formatBoolean(scope.row.visible) }} - - - - - - - - - - 查看详情 - - 变更 - 删除 - - - - - - - - - - - {{ type==='create'?'添加':'修改' }} - - 确 定 - 取 消 - - - - - - - - - - - - - - - - - - - - - - - - - - - 查看详情 - - - - - {{ formData.ID }} - - - {{ formData.pid }} - - - {{ formData.name }} - - - {{ formatBoolean(formData.visible) }} - - - {{ formData.weight }} - - - {{ formData.level }} - - - - - - - - - diff --git a/src/view/systemArea/systemAreaForm.vue b/src/view/systemArea/systemAreaForm.vue deleted file mode 100755 index 3419783..0000000 --- a/src/view/systemArea/systemAreaForm.vue +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - 保存 - 返回 - - - - - - - - -