This commit is contained in:
liupopo
2024-01-15 14:06:53 +08:00
commit 19049bd439
457 changed files with 24246 additions and 0 deletions

17
src/App.vue Normal file
View File

@@ -0,0 +1,17 @@
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: 'App',
created() {
console.log('resss', 11111111111111111111111111)
},
mounted() {
},
}
</script>

13
src/api/Common/Upload.js Normal file
View File

@@ -0,0 +1,13 @@
import request from '@/utils/request'
// 上传图片
export function imageUpload(data){
return request({
url: '/jlcyry/file/upload',
method: 'post',
data,
headers:{'Content-Type':'multipart/form-data'}
})
}
export const uploadFile = '/api/base/v1/basemanufactorsubscription/pictureUpload'
export const uploadimg_tuiku = '/api/base/v1/basemanufacturerretwareveh/pictureUpload'

View File

@@ -0,0 +1,25 @@
import request from '@/utils/request'
//区域获取省
export function getProvince(data) {
return request({
url: '/system/region/getProvince',
method: 'get'
})
}
//根据省sid获取该省的所有市
export function getCity(data) {
return request({
url: '/system/region/getCity',
method: 'get',
params: data
})
}
//根据市sid获取该市的所有县区
export function getCounty(data) {
return request({
url: '/system/region/getCounty',
method: 'get',
params: data
})
}

View File

@@ -0,0 +1,100 @@
import request from '@/utils/request'
// 根据登陆人sid查询分公司sid常用接口
export function getPathSidByUserSid(data) {
return request({
url: '/portal/v1/sysstafforg/getPathSidByUserSid',
method: 'get',
params: data
})
}
// 根据当前登录人orgSidPath(全路径sid)查询分公司
export function getOrgSidByPath(data) {
return request({
url: '/portal/v1/sysstafforg/getOrgSidByPath',
method: 'get',
params: data
})
}
// 当前用户创建申请时判断该用户是否有该菜单的操作权限
export function selectHaveMessage(data) {
return request({
url: '/portal/v1/sysuser/selectHaveMessage ',
method: 'post',
data: data,
headers: { 'Content-Type': 'application/json' }
})
}
// 根据分公司sid查询分公司名称
export function fetchBySid(sid) {
return request({
url: 'portal/v1/sysorganization/fetchBySid/' + sid,
method: 'get'
})
}
// 根据分公司Sid获取分公司下部门对应的采购系统
export function fetchDetailsByUseOrgSid(data) {
return request({
url: '/base/v1/basepurchasesystem/fetchDetailsByUseOrgSid/' + data,
method: 'GET'
})
}
// 获取下拉框
export function typeValues(data) {
return request({
url: '/portal/v1/dictcommon/typeValues',
method: 'get',
params: data
})
}
// 根据用户sid获取本分公司下的银行账号
export function selAccountByOrgSid(data) {
return request({
url: '/fin/v1/finmanufacturerbank/selAccountByOrgSid',
method: 'get',
params: data
})
}
// 品牌下拉
export function brandDown(data) {
return request({
url: '/base/v1/basevehiclebrand/namesDown',
method: 'get',
params: data
})
}
// 根据当前用户orgSidPath的管理层级获取相应的信息集团获取所有分公司信息、事业部获取旗下的分公司信息、分公司获取该分公司的信息
export function selectOrgByLevel(data) {
return request({
url: '/base/v1/basevehicleout/selectOrgByLevel',
method: 'post',
params: data
})
}
// 查询角色列表
export function roleList(data) {
return request({
url: '/portal/v1/sysrole/listAll',
method: 'post',
data: data,
headers: { 'Content-Type': 'application/json' }
})
}
// 根据当前登录用户分公司sid获取本分公司下存放地点
export function fetchByUseOrgSid(data) {
return request({
url: 'scm/v1/scmwarehouse/fetchByUseOrgSid',
method: 'get',
params: data
})
}

View File

@@ -0,0 +1,13 @@
import request from '@/utils/request'
// 请求按钮权限
export default {
// 查询分页列表输入当前路径和userSid返回
buttonPermission: function(params) {
return request({
url: '/demopackage/v1/demo/buttonPermission',
method: 'post',
data: params
})
}
}

35
src/api/User/login.js Normal file
View File

@@ -0,0 +1,35 @@
import request from '@/utils/request'
import qs from 'qs'
class User {
login(data) { // 登录
return request({
url: '/system/user/login',
method: 'post',
data
})
}
logout(data) { // 退出
return request({
url: '/portal/v1/sysuser/signOut',
method: 'post',
data: qs.stringify(data)
})
}
updatePassword(data) { // 退出修改密码
return request({
url: '/portal/v1/sysuser/updatePassword',
method: 'post',
data: qs.stringify(data)
})
}
reGetPwd(data) {
return request({
url: `/system/user/reGetPwd/${data.userName}/${data.userPhone}`,
method: 'post',
data: qs.stringify(data)
})
}
}
export default new User()

50
src/api/brank/brank.js Normal file
View File

@@ -0,0 +1,50 @@
import request from '@/utils/request'
export default {
addInfo: function(data) {
return request({
baseURL: "/api/crm",
url: '/v1/loanbankinformation/save',
method: 'post',
data: data
});
},
fetchBySid: function(sid) {
return request({
baseURL: '/api/crm',
url: '/v1/loanbankinformation/getBankInfBySid/' + sid
})
},
updateData: function(data) {
return request({
baseURL: "/api/crm",
url: '/v1/loanbankinformation/update',
method: 'post',
data: data
});
},
delBySids: function(sid) {
return request({
baseURL: '/api/crm',
url: 'v1/loanbankinformation/delete/' + sid,
method: 'delete'
})
},
// 查询分页列表
listPage: function(params) {
return request({
baseURL: '/api/crm',
url: '/v1/loanbankinformation/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
}

View File

@@ -0,0 +1,81 @@
import request from '@/utils/request'
export default {
// 查询提货卡分页列表
listPage: function(params) {
return request({
url: '/lpkgiftcard/cardStatisticsList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 导出提货卡报表
exportExcel: function(data) {
return request({
url: '/lpkgiftcard/cardStatisticsListExport',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
// 查询企业卡分页列表
empCardStatisticsList: function(params) {
return request({
url: '/empcard/empCardStatisticsList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 导出企业卡报表
empCardStatisticsListExport: function(data) {
return request({
url: '/empcard/empCardStatisticsListExport',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
// 查询福利卡分页列表
empCardGiftStatisticsList: function(params) {
return request({
url: '/empcardgift/empCardGiftStatisticsList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 导出福礼卡报表
empCardStatisticsListExport: function(data) {
return request({
url: '/empcard/empCardStatisticsListExport',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
}

View File

@@ -0,0 +1,53 @@
import request from '@/utils/request'
export default {
// 获取商品列表
goodsListPage: function(data) {
return request({
url: '/lpkgoods/goodsListPage',
method: 'post',
data: data
});
},
// 新增、保存商品
saveGoods: function(data) {
return request({
url: '/lpkgoods/saveGoods',
method: 'post',
data: data
});
},
// 初始化商品
goodsInit: function(data) {
return request({
url: '/lpkgoods/goodsInit/'+data,
method: 'get'
});
},
// 删除商品
deleteGoods: function(data) {
return request({
url: '/lpkgoods/deleteGoods/'+data,
method: 'delete'
});
},
// 修改商品是否属于小程序状态
updateAppletUseTo: function(sid,isEnable) {
return request({
url: '/lpkgoods/appletUseTo/'+sid+"/"+isEnable
});
},
// 修改上架/下架状态
updateIsEnable: function(sid,isEnable) {
return request({
url: '/lpkgoods/appletGrounding/'+sid+"/"+isEnable
});
},
}

View File

@@ -0,0 +1,117 @@
import request from '@/utils/request'
export default {
// 礼包设置
// 获取礼包列表
giftBagListPage: function(data) {
return request({
url: '/lpkgiftbag/giftBagListPage',
method: 'post',
data: data
});
},
// 获取发放网点列表
bankList: function(data) {
return request({
url: '/lpkbank/listAll',
method: 'get',
data: data
});
},
// 礼包选择商品时,返回的商品列表
getGoods: function(data) {
return request({
url: '/lpkgoods/getGoods',
method: 'post',
data: data
});
},
// 新增、保存礼包
saveGiftBag: function(data) {
return request({
url: '/lpkgiftbag/saveGiftBag',
method: 'post',
data: data
});
},
// 初始化礼包
giftBagInit: function(data) {
return request({
url: '/lpkgiftbag/giftBagInit/'+data,
method: 'get'
});
},
// 企业卡设置
// 企业卡发行记录
recordListPage: function(data) {
return request({
url: '/empcardbuildrecord/recordListPage',
method: 'post',
data: data
});
},
// 发行记录详细
recordDetails: function(data) {
return request({
url: '/empcard/recordDetails',
method: 'post',
data: data
});
},
// 导出
exportExcel: function(data) {
return request({
url: '/empcard/exportExcel',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: { 'Content-Type': 'application/json' }
})
},
// 获取提货卡页面 礼包列表
giftBagList: function(data) {
return request({
url: '/lpkgiftbag/giftBagList',
method: 'get',
data: data
});
},
// 发行企业卡
generateCard: function(data) {
return request({
url: '/empcard/generateCard',
method: 'post',
data: data
});
},
// 发放提货卡
cardGrant: function(data) {
return request({
url: '/lpkgiftcard/cardGrant',
method: 'post',
data: data
});
},
}

View File

@@ -0,0 +1,187 @@
import request from '@/utils/request'
// 接口文档名称:潜在客户信息
// Pc端客户基础信息条件分页查询数据的列表
export function pagerList(data) {
return request({
url: '/crm/v1/crmcustomertemp/listPage',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
})
}
// 客户查询
export function listPageByOrgPathSid(data) {
return request({
url: '/crm/v1/crmcustomertemp/listPageByOrgPathSid',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
})
}
// 添加 已改
export function savePcCustomerInfo(data) {
return request({
url: '/crm/v1/crmcustomertemp/save',
data: data,
method: 'post',
headers: {
'Content-Type': 'application/json'
}
})
}
// -- 修改 已改
export function updatePcCustomerInfo(data) {
return request({
url: '/crm/v1/crmcustomertemp/update/' + data.sid,
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
})
}
// 详情、编辑回显 已改
export function getPcCustomerInfoBySid(data) {
return request({
url: '/crm/v1/crmcustomertemp/fetchSid/' + data,
method: 'get'
})
}
// 删除 已改
export function deleteBySids(data) {
return request({
url: '/crm/v1/crmcustomertemp/del/',
method: 'delete',
data: data,
headers: {
'Content-Type': 'application/json'
}
})
}
// 推送财务数据--是否确定车架号选择否
export function sendFinCustomer(data, orgCode) {
return request({
url: '/crm/v1/crmcustomertemp/sendFinCustomer/' + orgCode,
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
})
}
// 推送财务数据--是否确定车架号选择是
export function sendFinCustomerTrue(data) {
return request({
url: '/crm/v1/crmcustomertemp/sendFinCustomerTrue',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
})
}
// 推送财务数据--是否确定车架号选择是,选择车辆
export function vehicleCrmList(data) {
return request({
url: '/base/v1/basevehicle/vehicleCrmList',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
})
}
// Pc端分页查询中介单位经销商
export function getPcDistributorList(data) {
return request({
url: '/base/v1/basedistributor/getPcDistributorList',
method: 'get'
})
}
// 挂靠公司模糊查询下拉框
export function namesDown(data) {
return request({
url: '/base/v1/baseaffiliatcompany/namesDown',
method: 'get',
params: data
})
}
// 据客户名称模糊搜索客户名称下拉框
export function KeHuNamesDown(data) {
return request({
url: '/crm/v1/crmcustomer/namesDown',
method: 'get',
params: data
})
}
// Pc端保存登记单信息
export function saveCustomersAll(data) {
return request({
url: '/crm/v1/crmcustomer/saveCustomersAll', data,
method: 'post',
// data: data,
headers: {
'Content-Type': 'application/json'
}
})
}
// Pc端修改登记单信息
export function updateCustomersAll(data) {
return request({
url: '/crm/v1/crmcustomer/updateCustomersAll/' + data,
method: 'post',
// data: data,
headers: {
'Content-Type': 'application/json'
}
})
}
// Pc端登记单修改回显及详情信息
export function selectCustomersAll(data) {
return request({
url: '/crm/v1/crmcustomer/selectCustomersAll?sid=' + data,
method: 'get'
})
}
//
export function listPage(data) {
return request({
url: '/crm/v1/crmcustomer/listPage',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
})
}
// Pc端根据sid查询客户基础信息是否存在
export function getPcCustomerMobileAndName(mobile, name) {
return request({
url: '/crm/v1/crmcustomer/getPcCustomerMobileAndName?mobile=' + mobile + '&name=' + name,
method: 'get'
})
}

View File

@@ -0,0 +1,114 @@
import request from '@/utils/request'
export default {
// 11111111111111111111111
// 行业品类 分类列表
industryListPage: function(params) {
return request({
baseURL: '/api/crm',
url: '/v1/industrydictionary/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 行业品类 通过sid删除一条或多条记录
industryDelBySids: function(sid) {
return request({
baseURL: '/api/crm',
url: '/v1/industrydictionary/delete/' + sid,
method: 'delete'
})
},
// 行业品类 保存行业品类
saveindustry: function(params) {
return request({
baseURL: '/api/crm',
url: '/v1/industrydictionary/save',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 行业品类 修改行业品类
updateindustry: function(params) {
return request({
baseURL: '/api/crm',
url: '/v1/industrydictionary/update',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 行业品类 通过sid查询一条记录
industryFetchBySid: function(sid) {
return request({
baseURL: '/api/crm',
url: '/v1/industrydictionary/getIndustryBySid/' + sid
})
},
// 类别维护 类别列表
classListPage: function(params) {
return request({
baseURL: '/api/crm',
url: '/v1/projtypedictionary/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 类别维护 通过sid删除一条或多条记录
classDelBySids: function(sid) {
return request({
baseURL: '/api/crm',
url: '/v1/projtypedictionary/delete/' + sid,
method: 'delete'
})
},
// 类别维护 保存行业品类
saveClass: function(params) {
return request({
baseURL: '/api/crm',
url: '/v1/projtypedictionary/save',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 类别维护 修改行业品类
updateClass: function(params) {
return request({
baseURL: '/api/crm',
url: '/v1/projtypedictionary/update',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
// 类别维护 通过sid查询一条记录
classFetchBySid: function(sid) {
return request({
baseURL: '/api/crm',
url: '/v1/projtypedictionary/getProjTypeBySid/' + sid
})
},
}

View File

@@ -0,0 +1,50 @@
import request from '@/utils/request'
export default {
addInfo: function(data) {
return request({
baseURL: "/api/crm",
url: '/v1/enterpriseinformation/save',
method: 'post',
data: data
});
},
fetchBySid: function(sid) {
return request({
baseURL: '/api/crm',
url: '/v1/enterpriseinformation/getEnterpriseBySid/' + sid
})
},
updateData: function(data) {
return request({
baseURL: "/api/crm",
url: '/v1/enterpriseinformation/update',
method: 'post',
data: data
});
},
delBySids: function(sid) {
return request({
baseURL: '/api/crm',
url: '/v1/enterpriseinformation/delete/' + sid,
method: 'delete'
})
},
// 查询分页列表
listPage: function(params) {
return request({
baseURL: '/api/crm',
url: '/v1/enterpriseinformation/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
}

View File

@@ -0,0 +1,58 @@
import request from '@/utils/request'
let tokens = window.sessionStorage.getItem('tokenValue')
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/cyf/flowmeter/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
addInfo: function(data) {
return request({
url: '/cyf/flowmeter/save',
method: 'post',
data: data
});
},
fetchBySid: function(sid) {
return request({
url: '/cyf/flowmeter/getTankBySid/' + sid
})
},
updateData: function(data) {
return request({
url: '/cyf/flowmeter/update',
method: 'post',
data: data
});
},
delBySids: function(sid) {
return request({
url: '/cyf/flowmeter/delete/' + sid,
method: 'delete'
})
},
flowmeterList: function(params) {
return request({
url: '/cyf/flowmeter/flowmeterList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
}

197
src/api/gfApi/index.js Normal file
View File

@@ -0,0 +1,197 @@
import request from '@/utils/request'
let tokens = window.sessionStorage.getItem('tokenValue')
export default {
// 获取供应商信息
getSupplierList: function(params) {
return request({
url: '/gf/supplier/getSupplierList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
// 查询合同
getContract: function(params) {
return request({
url: '/gf/supplier/getContract',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
// 物料管理列表
getMaterielList: function(params) {
return request({
url: '/gf/materiel/getMaterielList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
// 获取仓库列表
getWarehouse: function(params) {
return request({
url: '/gf/warehouse/getWarehouse',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
// 获取物料品牌列表
getMaterialBrandList: function(params) {
return request({
url: '/gf/materialBrand/getMaterialBrandList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
// 获取物料组
getMaterialGroup: function() {
return request({
url: '/gf/materialBrand/getMaterialGroup',
method: 'get'
})
},
// 获取出库申请
getOutStock: function(params) {
return request({
url: '/gf/outStock/getOutStock ',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
// 查看出库申请详细信息
getOutStockInfo: function(id) {
return request({
url: '/gf/outStock/getOutStockInfo/' + id,
method: 'get',
})
},
// 获取出库记录列表
getOutStockMaterielList: function(params) {
return request({
url: '/gf/outStock/getOutStockMaterielList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
// 获取入库申请
getInStockList: function(params) {
return request({
url: '/gf/inStock/getInStockList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
// 获取入库记录列表
getInStockMaterielList: function(params) {
return request({
url: '/gf/inStock/getInStockMaterielList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
// 查看出库申请详细信息
getInStockInfo: function(id) {
return request({
url: '/gf/inStock/getInStockInfo/' + id,
method: 'get',
})
},
// 获取出入库记录
getStockRecordList: function(params) {
return request({
url: '/gf/stockRecord/getStockRecordList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
// 获取库存管理
getInventoryList: function(params) {
return request({
url: '/gf/inventory/getInventoryList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
// 获取出入库合同管理
getPurchaseContractList: function(params) {
return request({
url: '/gf/purchaseContract/getPurchaseContractList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
// 获取出库类型
getOutType: function() {
return request({
url: '/gf/outStock/getOutType',
method: 'get'
})
},
// 获取入库类型
getInType: function() {
return request({
url: '/gf/inStock/getInType',
method: 'get'
})
},
// 获取代理商
getAgentList: function() {
return request({
url: '/gf/stockRecord/getAgentList ',
method: 'get'
})
},
// 获取审核状态
getStatus: function() {
return request({
url: '/gf/stockRecord/getStatus',
method: 'get'
})
},
}

View File

@@ -0,0 +1,172 @@
import request from '@/utils/request'
export default {
// 礼包设置
// 获取礼包列表
giftBagListPage: function(data) {
return request({
url: '/lpkgiftbag/giftBagListPage',
method: 'post',
data: data
});
},
// 修改上架/下架状态
updateIsEnable: function(sid,isEnable) {
return request({
url: '/lpkgiftbag/isGrounding/'+sid+"/"+isEnable
});
},
// 获取发放网点列表
bankList: function(data) {
return request({
url: '/lpkbank/listAll',
method: 'get',
data: data
});
},
// 礼包选择商品时,返回的商品列表
getGoods: function(data) {
return request({
url: '/lpkgoods/getGoods',
method: 'post',
data: data
});
},
// 新增、保存礼包
saveGiftBag: function(data) {
return request({
url: '/lpkgiftbag/saveGiftBag',
method: 'post',
data: data
});
},
// 初始化礼包
giftBagInit: function(data) {
return request({
url: '/lpkgiftbag/giftBagInit/'+data,
method: 'get'
});
},
// 提货卡设置
// 提货卡发行记录
recordListPage: function(data) {
return request({
url: '/lpkcardbuildrecord/recordListPage',
method: 'post',
data: data
});
},
// 发行记录详细
recordDetails: function(data) {
return request({
url: '/lpkgiftcard/recordDetails',
method: 'post',
data: data
});
},
// 导出
exportExcel: function(data) {
return request({
url: '/lpkgiftcard/exportExcel',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: { 'Content-Type': 'application/json' }
})
},
// 作废提货卡
cancelCard: function(sid) {
return request({
url: '/lpkgiftcard/cancelCard/'+sid,
method: 'get'
});
},
// 获取提货卡页面 礼包列表
giftBagList: function(data) {
return request({
url: '/lpkgiftbag/giftBagList',
method: 'get',
data: data
});
},
// 发行提货卡
generateCard: function(data) {
return request({
url: '/lpkgiftcard/generateCard',
method: 'post',
data: data
});
},
// 发放提货卡
cardGrant: function(data) {
return request({
url: '/lpkgiftcard/cardGrant',
method: 'post',
data: data
});
},
// 小程序礼包
// 获取礼包列表
appletGiftBagListPage: function(data) {
return request({
url: '/appletgiftbag/giftBagListPage',
method: 'post',
data: data
});
},
// 修改小程序礼包上架/下架状态
updateAppletgiftbagState: function(sid,isEnable) {
return request({
url: '/appletgiftbag/isGrounding//'+sid+"/"+isEnable
});
},
// 新增、保存礼包
saveAppletGiftBag: function(data) {
return request({
url: '/appletgiftbag/saveGiftBag',
method: 'post',
data: data
});
},
// 初始化礼包
AppletGiftBagInit: function(data) {
return request({
url: '/appletgiftbag/giftBagInit/'+data,
method: 'get'
});
},
}

View File

@@ -0,0 +1,50 @@
import request from '@/utils/request'
export default {
// 获取网点列表
bankListPage: function(data) {
return request({
url: '/lpkbank/listPage',
method: 'post',
data: data
});
},
// 新增网点
saveBank: function(data) {
return request({
url: '/lpkbank/save',
method: 'post',
data: data
});
},
// 修改网点
updateBank: function(data) {
return request({
url: '/lpkbank/update',
method: 'post',
data: data
});
},
// 初始化网点
bankInit: function(data) {
return request({
url: '/lpkbank/getLpkBankBySid/'+data,
method: 'get'
});
},
// 删除网点
deleteBank: function(data) {
return request({
url: '/lpkbank/delete/'+data,
method: 'delete'
});
},
}

100
src/api/oilTank/oilTank.js Normal file
View File

@@ -0,0 +1,100 @@
import request from '@/utils/request'
let tokens = window.sessionStorage.getItem('tokenValue')
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/cyf/tankinfo/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
selectTankInformation: function(params) {
return request({
url: '/cyf/tankinfo/selectTankInformation',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
addInfo: function(data) {
return request({
url: '/cyf/tankinfo/save',
method: 'post',
data: data
});
},
crudeinfoList: function(params) {
return request({
url: '/cyf/crudeinfo/list',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
selectRecordBySid: function(sid) {
return request({
url: '/cyf/crudeinventory/selectRecordBySid/' + sid,
method: 'get'
})
},
fetchBySid: function(sid) {
return request({
url: '/cyf/crudeinfo/getCrudeBySid/' + sid
})
},
updateData: function(data) {
return request({
url: '/cyf/crudeinfo/update',
method: 'post',
data: data
});
},
delBySids: function(sid) {
return request({
url: '/cyf/crudeinfo/delete/' + sid,
method: 'delete'
})
},
// 保存每次读取库存
saveInfo: function(data) {
return request({
url: '/cyf/crudeinventory/save',
method: 'post',
data: data
});
},
// 登记库存列表
crudeinventoryList: function(data) {
return request({
url: '/cyf/crudeinventory/listPage',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
});
},
}

View File

@@ -0,0 +1,47 @@
import request from '@/utils/request'
let tokens = window.sessionStorage.getItem('tokenValue')
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/cyf/crudeinfo/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
addInfo: function(data) {
return request({
url: '/cyf/crudeinfo/save',
method: 'post',
data: data
});
},
fetchBySid: function(sid) {
return request({
url: '/cyf/crudeinfo/getCrudeBySid/' + sid
})
},
updateData: function(data) {
return request({
url: '/cyf/crudeinfo/update',
method: 'post',
data: data
});
},
delBySids: function(sid) {
return request({
url: '/cyf/crudeinfo/delete/' + sid,
method: 'delete'
})
},
}

View File

@@ -0,0 +1,117 @@
import request from '@/utils/request'
let tokens = window.sessionStorage.getItem('tokenValue')
export default {
// 获取油罐
tankList: function(params) {
return request({
url: '/cyf/tankinfo/tankList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
// 获取油罐by Sid
tankLisBySid: function(sid) {
return request({
url: '/cyf/tankinfo/listByType/' + sid
})
},
// 获取入库信息 Sid
selectStorageBySid: function(sid) {
return request({
url: 'cyf/crudestorage/selectStorageBySid/' + sid,
method: 'get',
})
},
// 获取出库信息 Sid
getCrudeBySid: function(sid) {
return request({
url: 'cyf/crudeoutbound/getCrudeBySid/' + sid,
method: 'get',
})
},
// 入库
logPagerList: function(params) {
return request({
url: '/cyf/crudestorage/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
intAddInfo: function(data) {
return request({
url: '/cyf/crudestorage/save',
method: 'post',
data: data
});
},
// 出库
// 查询分页列表
in112PagerList: function(params) {
return request({
url: '/cyf/crudeoutbound/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
outAddInfo: function(data) {
return request({
url: '/cyf/crudeoutbound/save',
method: 'post',
data: data
});
},
crudeinfoList: function(params) {
return request({
url: '/cyf/crudeinfo/list',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
fetchBySid: function(sid) {
return request({
url: '/cyf/crudeinfo/getCrudeBySid/' + sid
})
},
updateData: function(data) {
return request({
url: '/cyf/crudeinfo/update',
method: 'post',
data: data
});
},
delBySids: function(sid) {
return request({
url: '/cyf/crudeinfo/delete/' + sid,
method: 'delete'
})
},
}

105
src/api/order/order.js Normal file
View File

@@ -0,0 +1,105 @@
import request from '@/utils/request'
export default {
// 获取订单列表
orderList: function(data) {
return request({
url: '/lpksreservoorder/orderList',
method: 'post',
data: data
});
},
// 获取所有门店
getAllStore: function(data) {
return request({
url: '/lpkstore/getAllStore',
method: 'delete',
data: data
});
},
// 导出报表
exportExcel: function(data) {
return request({
url: '/lpksreservoorder/exportExcel',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
// 获取配货列表
distributionList: function(data) {
return request({
url: '/lpksreservoorder/orderListByStore',
method: 'post',
data: data
});
},
// 导出报表
distributionExportExcel: function(data) {
return request({
url: '/lpksreservoorder/exportExcelByStore',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
// 获取支行汇总列表
bankOrderList: function(data) {
return request({
url: '/lpksreservoorder/orderListByBank',
method: 'post',
data: data
});
},
// 导出支行报表
bankOrderExportExcel: function(data) {
return request({
url: '/lpksreservoorder/exportExcelByBank',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
// 获取支行汇总列表
ZOrderList: function(data) {
return request({
url: '/lpksreservoorder/orderListByZ',
method: 'post',
data: data
});
},
// 导出总报表
allOrderExportExcel: function(data) {
return request({
url: '/lpksreservoorder/exportExcelByZ',
method: 'post',
responseType: 'blob', // 表明返回服务器返回的数据类型
data: data,
headers: {
'Content-Type': 'application/json'
}
});
},
}

View File

@@ -0,0 +1,55 @@
import request from '@/utils/request'
export default {
// 获取支行选择列表
bankSelect: function(data) {
return request({
url: '/lpkbank/listAll',
method: 'get'
});
},
// 获取提货点列表
storeListPage: function(data) {
return request({
url: '/lpkstore/storeListPage',
method: 'post',
data: data
});
},
// 新增、保存提货点
saveStore: function(data) {
return request({
url: '/lpkstore/saveStore',
method: 'post',
data: data
});
},
// 初始化提货点
storeInit: function(data) {
return request({
url: '/lpkstore/storeInit/'+data,
method: 'get'
});
},
// 删除提货点
deleteStore: function(data) {
return request({
url: '/lpkstore/deleteStore/'+data,
method: 'delete'
});
},
// 修改状态
updateIsEnable: function(sid,isEnable) {
return request({
url: '/lpkstore/updateIsEnable/'+sid+"/"+isEnable
});
},
}

30
src/api/portal/Upload.js Normal file
View File

@@ -0,0 +1,30 @@
import request from '@/utils/request'
import qs from 'qs'
// 统一请求路径前缀
const base = process.env.VUE_APP_URL
// 文件上传接口
export const uploadFile = process.env.VUE_APP_BASE_API + '/file/upload'
// export const uploadFile = process.env.VUE_APP_BASE_API + '/customer/file/upload'
// 上传图片
// export function imageUpload(data) {
// return request({
// url: '/portal/file/upload',
// method: 'post',
// data,
// headers: { 'Content-Type': 'multipart/form-data' }
// })
// }
// 移除图片
export function deleteFilesOss(data) {
return request({
url: '/base/v1/baseVehicleAppendixs/deleteFilesOss',
method: 'post',
data: qs.stringify(data),
// headers: { 'Content-Type': 'multipart/form-data' }
})
}

View File

@@ -0,0 +1,34 @@
import request from '@/utils/request'
// 获取省/portal/v1/regions/getProvince
export function getProvince(data) {
return request({
url: '/portal/v1/regions/getProvince',data,
method: 'get',
params:data,
})
}
// 根据省sid获取该省的所有市
export function getCity(data) {
return request({
url: '/portal/v1/regions/getCity',
params:data,
method: 'get',
})
}
// 根据市sid获取该市的所有县区
export function getCounty(data) {
return request({
url: '/portal/v1/regions/getCounty',
method: 'get',
params:data,
})
}
// // 区域列表(省市县均可用)
// export function selectsList(data) {
// return request({
// url: '/portal/v1/regions/selectsList', data,
// method: 'post',
// headers: { 'Content-Type': 'application/json' }
// })
// }

View File

@@ -0,0 +1,97 @@
import request from '@/utils/request'
let tokens = window.sessionStorage.getItem('tokenValue')
export default {
// 获取原料
inventoryList: function(params) {
return request({
url: '/cyf/rawinventory/inventoryList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
// 入库
logPagerList: function(params) {
return request({
url: '/cyf/rawstorage/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
intAddInfo: function(data) {
return request({
url: '/cyf/rawstorage/save',
method: 'post',
data: data
});
},
// 出库
// 查询分页列表
in112PagerList: function(params) {
return request({
url: '/cyf/rawoutbound/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
outAddInfo: function(data) {
return request({
url: '/cyf/rawoutbound/save',
method: 'post',
data: data
});
},
crudeinfoList: function(params) {
return request({
url: '/cyf/crudeinfo/list',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
fetchBySid: function(sid) {
return request({
url: '/cyf/crudeinfo/getCrudeBySid/' + sid
})
},
updateData: function(data) {
return request({
url: '/cyf/crudeinfo/update',
method: 'post',
data: data
});
},
delBySids: function(sid) {
return request({
url: '/cyf/crudeinfo/delete/' + sid,
method: 'delete'
})
},
}

View File

@@ -0,0 +1,69 @@
import request from '@/utils/request'
let tokens = window.sessionStorage.getItem('tokenValue')
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/cyf/rawinventory/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
addInfo: function(data) {
return request({
url: '/cyf/rawinventory/save',
method: 'post',
data: data
});
},
rawMaterialType: function(params) {
return request({
url: '/cyf/rawtype/typeList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
fetchBySid: function(sid) {
return request({
url: '/cyf/crudeinfo/getCrudeBySid/' + sid
})
},
updateData: function(data) {
return request({
url: '/cyf/crudeinfo/update',
method: 'post',
data: data
});
},
delBySids: function(sid) {
return request({
url: '/cyf/crudeinfo/delete/' + sid,
method: 'delete'
})
},
// 保存每次读取库存
saveInfo: function(data) {
return request({
url: '/cyf/crudeinventory/save',
method: 'post',
data: data
});
},
}

View File

@@ -0,0 +1,48 @@
import request from '@/utils/request'
let tokens = window.sessionStorage.getItem('tokenValue')
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/cyf/rawtype/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
addInfo: function(data) {
return request({
url: '/cyf/rawtype/save',
method: 'post',
data: data
});
},
fetchBySid: function(sid) {
return request({
url: '/cyf/rawtype/getTypeBySid/' + sid
})
},
updateData: function(data) {
return request({
url: '/cyf/rawtype/update',
method: 'post',
data: data
});
},
delBySids: function(sid) {
return request({
url: '/cyf/rawtype/delete/' + sid,
method: 'delete'
})
},
}

View File

@@ -0,0 +1,50 @@
import request from '@/utils/request'
export default {
addInfo: function(data) {
return request({
baseURL: "/api/crm",
url: '/v1/warehouselocation/save',
method: 'post',
data: data
});
},
fetchBySid: function(sid) {
return request({
baseURL: '/api/crm',
url: '/v1/warehouselocation/getWarehouseBySid//' + sid
})
},
updateData: function(data) {
return request({
baseURL: "/api/crm",
url: '/v1/warehouselocation/update',
method: 'post',
data: data
});
},
delBySids: function(sid) {
return request({
baseURL: '/api/crm',
url: '/v1/warehouselocation/delete/' + sid,
method: 'delete'
})
},
// 查询分页列表
listPage: function(params) {
return request({
baseURL: '/api/crm',
url: '/v1/warehouselocation/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json'
}
})
},
}

View File

@@ -0,0 +1,62 @@
import request from '@/utils/request'
let tokens = window.sessionStorage.getItem('tokenValue')
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/cyf/supplier/listPage',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
addInfo: function(data) {
return request({
url: '/cyf/supplier/save',
method: 'post',
data: data
});
},
fetchBySid: function(sid) {
return request({
url: '/cyf/supplier/getSupplierBySid/' + sid
})
},
updateData: function(data) {
return request({
url: '/cyf/supplier/update',
method: 'post',
data: data
});
},
delBySids: function(sid) {
return request({
url: '/cyf/supplier/delete/' + sid,
method: 'delete'
})
},
// 供应商 数据字典
supplierList: function(params) {
return request({
url: '/cyf/supplier/supplierList',
method: 'post',
data: params,
headers: {
'Content-Type': 'application/json',
'token': tokens
}
})
},
}

View File

@@ -0,0 +1,47 @@
import request from '@/utils/request'
import qs from 'qs'
const tokens = window.sessionStorage.getItem('token')
//
export function rolemenus(data) {
return request({
url: '/system/v1/rolemenus/' + data.roleSid,
method: 'get',
params: data
})
}
// 获取左侧菜单
export function getrolemenus(data) {
return request({
baseURL: '/api',
url: '/portal/v1/sysmenu/sourcemenutree',
method: 'POST',
async: false,
// data: {userSid: data.userSid, sourceSid: '000011'},
data: data,
headers: { 'Content-Type': 'application/json',
'token': tokens }
})
}
// 获取角色的主页菜单
export function sourcesofrole(data) {
return request({
url: '/system/v1/rolemenus/sourcesofrole',
method: 'POST',
data: data,
headers: { 'Content-Type': 'application/json' }
})
}
// 根据token值获取登录后的用户信息
export function loginDetails(data) {
return request({
baseURL: '/api',
url: '/portal/v1/sysuser/loginDetails',
method: 'post',
data: data,
headers: {
'Content-Type': 'application/json'
}
})
}

View File

@@ -0,0 +1,38 @@
import request from '@/utils/request'
import qs from 'qs'
//获取菜单 分页列表
export function login1(data) {
return request({
url: '/portal/v1/sysuser/login',
method: 'POST',
data: data,
headers: {'Content-Type': 'application/json',
// 'token':tokens
}
})
}
class user {
login(data) { // 登录
return request({
url: '/portal/v1/sysuser/login',
method: 'post',
data
})
}
logout() { // 退出
return request({
url: '/vue-admin-template/user/logout',
method: 'post'
})
}
updatePassword(data) { // 退出修改密码
return request({
url: '/system/user/updatePassword',
method: 'post',
data: qs.stringify(data)
})
}
}

72
src/api/user.js Normal file
View File

@@ -0,0 +1,72 @@
import request from '@/utils/request'
// eslint-disable-next-line no-unused-vars
import qs from 'qs'
// 登录
export function doLogin(data) {
return request({
url: '/sysuser/doLogin',
method: 'post',
data: data,
headers: { 'Content-Type': 'application/json' }
})
}
// 获取登录人员信息
export function getUserById(sid) {
return request({
url: '/cyf/sys/getUserById/' + sid
})
}
// 登录
export function login(data) {
return request({
url: '/portal/v1/sysuser/login',
method: 'post',
data: data,
headers: { 'Content-Type': 'application/json' }
})
}
// 用户注册
export function registUser(data) {
return request({
url: '/system/user/save',
method: 'post',
data,
headers: { 'Content-Type': 'application/x-www-form-urlencoded;' }
})
}
// 获取手机验证码
export function getVerificationCode(data) {
return request({
url: '/system/user/getVerificationCode',
method: 'get',
params: data
})
}
// 获取登录验证码
export function imgCode() {
return request({
url: '/system/api/defaultBlendCode?temm=' + new Date().getTime(),
method: 'get'
})
}
// 获取用信息
export function getInfo(token) {
return request({
url: '/system/user/loginDetails',
method: 'post'
})
}
export function logout(data) { // 退出
return request({
url: '/portal/v1/sysuser/signOut',
method: 'post',
data: qs.stringify(data)
})
}

View File

@@ -0,0 +1,17 @@
import request from '@/utils/request'
export default {
// 获取用户列表
customerListPage: function(data) {
return request({
url: '/lpkcustomer/customerListPage',
method: 'post',
data: data
});
},
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

BIN
src/assets/home/anrui.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

BIN
src/assets/home/bIcon1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

BIN
src/assets/home/bIcon2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

BIN
src/assets/home/bIcon3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

BIN
src/assets/home/bIcon4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

BIN
src/assets/home/bIcon5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

BIN
src/assets/home/bIcon6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

BIN
src/assets/home/bIcon7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
src/assets/home/bIcon8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
src/assets/home/bj.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 600 KiB

BIN
src/assets/home/bj.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
src/assets/home/line.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 B

BIN
src/assets/home/ltBg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
src/assets/home/ltIcon1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

BIN
src/assets/home/ltIcon2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
src/assets/home/ltIcon3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
src/assets/home/ltIcon4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
src/assets/home/notice.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 944 B

BIN
src/assets/home/rtBg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
src/assets/images/arrow.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
src/assets/images/btn.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
src/assets/images/cdgl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
src/assets/images/cxjl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
src/assets/images/czsc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
src/assets/images/dy.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
src/assets/images/head.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

BIN
src/assets/images/info.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
src/assets/images/jcxx.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
src/assets/images/jggl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
src/assets/images/jlsc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
src/assets/images/jsgl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
src/assets/images/jsxd.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 640 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
src/assets/images/place.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
src/assets/images/qjsh.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
src/assets/images/ryda.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
src/assets/images/rzgl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
src/assets/images/sjcc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
src/assets/images/sjzd.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
src/assets/images/tjfx.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
src/assets/images/tjfx2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 B

BIN
src/assets/images/xgmm.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
src/assets/images/xtbg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
src/assets/images/xtgl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

BIN
src/assets/images/xxzx.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
src/assets/images/zwsm.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Some files were not shown because too many files have changed in this diff Show More