123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- import request from '../utils/request';
- // 登录
- export function solicLogin(data, config) {
- return request({
- url: '/tianzong/appSysUser/solic_login',
- method: 'post',
- data: data,
- ...config
- })
- }
- // 首页-扫码
- export function appFindYourShipment(data, config) {
- return request({
- url: '/tianzong/express/appFindYourShipment',
- method: 'post',
- data: data,
- ...config
- })
- }
- // 快递出库-扫码
- export function appDeliveryPersonDeliveries(data, config) {
- return request({
- url: '/tianzong/express/appDeliveryPersonDeliveries',
- method: 'post',
- data: data,
- ...config
- })
- }
- //快件入库-通过手机号后四位获取信息
- export function appGetEmployeeInfoByPhone(data, config) {
- return request({
- url: '/tianzong/express/appGetEmployeeInfoByPhone',
- method: 'post',
- data: data,
- ...config
- })
- }
- //快件入库-快递物流配置列表
- export function appGeLogisticsList(data, config) {
- return request({
- url: '/tianzong/express/appGeLogisticsList',
- method: 'post',
- data: data,
- ...config
- })
- }
- //快件入库-入库
- export function appSaveExpressRecord(data, config) {
- return request({
- url: '/tianzong/express/appSaveExpressRecord',
- method: 'post',
- data: data,
- ...config
- })
- }
- //快件签收-快递单号查询
- export function appFindYourShipmentList(data, config) {
- return request({
- url: '/tianzong/express/appFindYourShipmentList ',
- method: 'post',
- data: data,
- ...config
- })
- }
- //快件签收-图片上传
- export function appUploadTheSignature(data) {
- return request({
- url: '/tianzong/express/appUploadTheSignature',
- method: 'post',
- data: data,
- // ...config
- })
- }
- //快件签收-提件
- export function appDelivery(data) {
- return request({
- url: '/tianzong/express/appDelivery',
- method: 'post',
- data: data,
- emulateJSON: true
- })
- }
- //派件查询-设为滞留
- export function appSetStrands(data) {
- return request({
- url: '/tianzong/express/appSetStrands',
- method: 'post',
- data: data,
- emulateJSON: true
- })
- }
- //派件查询-待派件
- export function appOutboundInquiry(data, config) {
- return request({
- url: '/tianzong/express/appOutboundInquiry',
- method: 'post',
- data: data,
- ...config
- })
- }
- //派件查询-详情
- export function appGetTheDetails(data, config) {
- return request({
- url: '/tianzong/express/appGetTheDetails',
- method: 'post',
- data: data,
- emulateJSON: true
- })
- }
- //数据图表
- export function appStatistics(data) {
- return request({
- url: '/tianzong/express/appStatistics',
- method: 'post',
- data: data,
- emulateJSON: true
- })
- }
- //修改密码
- export function LJYforgetPassword(data) {
- return request({
- url: '/tianzong/appSysUser/LJYforgetPassword',
- method: 'post',
- data: data,
- emulateJSON: true
- })
- }
- //获取信息
- export function getSysUserInfoByUserIdAPI(data) {
- return request({
- url: '/tianzong/personal/getSysUserInfoByUserId.do',
- method: 'post',
- data: data,
- emulateJSON: true
- })
- }
|