Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
G
GangShi-un2
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
黄旭新
GangShi-un2
Commits
dd3a86a2
提交
dd3a86a2
authored
4月 27, 2021
作者:
彭涛
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
bug修复
上级
01f85102
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
20 个修改的文件
包含
62 行增加
和
54 行删除
+62
-54
GroupCompany.vue
pages/group/GroupCompany.vue
+3
-1
index.vue
pages/index/index.vue
+6
-2
login.vue
pages/login/login.vue
+2
-2
myInfo.vue
pages/myInfo/myInfo.vue
+12
-12
order.vue
pages/order/order.vue
+1
-3
api.js
static/util/api.js
+2
-2
vendor.js.map
unpackage/dist/dev/.sourcemap/mp-weixin/common/vendor.js.map
+1
-1
companyAuthentication.js.map
...-weixin/pages/authentication/companyAuthentication.js.map
+1
-1
GroupCompany.js.map
.../dev/.sourcemap/mp-weixin/pages/group/GroupCompany.js.map
+1
-1
index.js.map
...ge/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map
+1
-1
login.js.map
...ge/dist/dev/.sourcemap/mp-weixin/pages/login/login.js.map
+1
-1
myInfo.js.map
.../dist/dev/.sourcemap/mp-weixin/pages/myInfo/myInfo.js.map
+1
-1
order.js.map
...ge/dist/dev/.sourcemap/mp-weixin/pages/order/order.js.map
+1
-1
vendor.js
unpackage/dist/dev/mp-weixin/common/vendor.js
+2
-2
GroupCompany.js
unpackage/dist/dev/mp-weixin/pages/group/GroupCompany.js
+4
-2
index.js
unpackage/dist/dev/mp-weixin/pages/index/index.js
+6
-2
login.js
unpackage/dist/dev/mp-weixin/pages/login/login.js
+2
-2
myInfo.js
unpackage/dist/dev/mp-weixin/pages/myInfo/myInfo.js
+12
-12
order.js
unpackage/dist/dev/mp-weixin/pages/order/order.js
+1
-3
api.js
unpackage/dist/dev/mp-weixin/static/util/api.js
+2
-2
没有找到文件。
pages/group/GroupCompany.vue
浏览文件 @
dd3a86a2
...
...
@@ -213,6 +213,7 @@
tabIndex
:
1
,
// tab栏(现货类型拼团有tab栏,价差类型没有tab栏(tabIndex=3),并且电客只能帮普通会员参加价差拼包)
contractElectricity
:
''
,
// 已拼团电量
limit
:
''
,
// 拼团电量上限;如果为null,则表示为空,后台没有进行设置
remindId
:
null
,
// 需要提醒企业认证的企业id
}
},
methods
:
{
...
...
@@ -287,6 +288,7 @@
},
// 选择企业
checkEnterprise
(
enterpriseId
,
contractId
,
userType
,
i
)
{
this
.
remindId
=
enterpriseId
this
.
isSatisfy
=
true
// userType=3是为中级会员, 中级会员没有合同
if
(
userType
==
3
)
{
...
...
@@ -336,7 +338,7 @@
handleClcik
()
{
if
(
this
.
btnText
==
'提醒企业认证'
)
{
get
(
api
.
remindAuthenticate
,
{
userId
:
this
.
user
Id
userId
:
this
.
remind
Id
}).
then
(
res
=>
{
if
(
res
.
code
==
200
)
{
uni
.
showToast
({
...
...
pages/index/index.vue
浏览文件 @
dd3a86a2
...
...
@@ -243,8 +243,12 @@
that
.
getSalesInformation
()
},
onShow
()
{
this
.
getAllPackageCompanies
()
this
.
getStatistics
()
// //获取所有正在参与拼包的企业
// that.getAllPackageCompanies()
// //获取企业/用电量/电客数据
// that.getStatistics()
// //获取行业资讯列表
// that.getSalesInformation()
//获取推荐套餐 电客 高级会员 游客才能看见
if
(
this
.
isEstablish
)
{
this
.
getRecommendedPackageList
()
...
...
pages/login/login.vue
浏览文件 @
dd3a86a2
...
...
@@ -187,11 +187,11 @@
url
=
url
+
'&culiangcontractId='
+
that
.
culiangcontractId
}
uni
.
reLaunch
({
uni
.
navigateTo
({
url
:
url
})
}
else
{
uni
.
reLaunch
({
uni
.
navigateTo
({
url
:
'/pages/register/register'
})
}
...
...
pages/myInfo/myInfo.vue
浏览文件 @
dd3a86a2
...
...
@@ -608,22 +608,22 @@
that
.
statusBarHeight
=
statusBarHeight
*
2
}
if
(
that
.
userId
&&
that
.
userId
!=
null
)
{
// 获取用户信息(企业与电客)
that
.
getUesrInfo
()
//
if (that.userId && that.userId != null) {
//
// 获取用户信息(企业与电客)
//
that.getUesrInfo()
// 获取待处理合同数量
that
.
getMyContractWaitHandleCount
()
//
// 获取待处理合同数量
//
that.getMyContractWaitHandleCount()
// 获取拼包记录
that
.
getMyJoinPackageCount
()
//
// 获取拼包记录
//
that.getMyJoinPackageCount()
// 获取企业会员的电客信息
that
.
getMyElectricI
()
//
// 获取企业会员的电客信息
//
that.getMyElectricI()
//获取收益
that
.
getAllIncome
()
}
//
//获取收益
//
that.getAllIncome()
//
}
}
},
methods
:
{
...
...
pages/order/order.vue
浏览文件 @
dd3a86a2
...
...
@@ -113,9 +113,7 @@
this
.
tabbar
=
true
}
this
.
getEnterpriseOrder
()
this
.
getSataus
()
// this.getSataus()
},
components
:
{
pickerAddress
...
...
static/util/api.js
浏览文件 @
dd3a86a2
const
erp
=
erp
||
{};
//wxb21370ac25ee51b0,//wx45bb68de16ddddb7
const
DOMAIN
=
'http://192.168.1.107:9099/'
;
// 峰煜
//
const DOMAIN = 'https://dev.diaosaas.com/diaoyun/' //测试
//
const DOMAIN = 'http://192.168.1.107:9099/'; // 峰煜
const
DOMAIN
=
'https://dev.diaosaas.com/diaoyun/'
//测试
// const DOMAIN = 'http://192.168.1.178:9099/' // 国禄
// const DOMAIN = 'http://192.168.1.197:9099/' // 志就
// const DOMAIN = 'https://fire.huoshitou.net/diaoyun/' // 正式
...
...
unpackage/dist/dev/.sourcemap/mp-weixin/common/vendor.js.map
浏览文件 @
dd3a86a2
差异被折叠。
点击展开。
unpackage/dist/dev/.sourcemap/mp-weixin/pages/authentication/companyAuthentication.js.map
浏览文件 @
dd3a86a2
This source diff could not be displayed because it is too large. You can
view the blob
instead.
unpackage/dist/dev/.sourcemap/mp-weixin/pages/group/GroupCompany.js.map
浏览文件 @
dd3a86a2
差异被折叠。
点击展开。
unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map
浏览文件 @
dd3a86a2
差异被折叠。
点击展开。
unpackage/dist/dev/.sourcemap/mp-weixin/pages/login/login.js.map
浏览文件 @
dd3a86a2
差异被折叠。
点击展开。
unpackage/dist/dev/.sourcemap/mp-weixin/pages/myInfo/myInfo.js.map
浏览文件 @
dd3a86a2
This source diff could not be displayed because it is too large. You can
view the blob
instead.
unpackage/dist/dev/.sourcemap/mp-weixin/pages/order/order.js.map
浏览文件 @
dd3a86a2
差异被折叠。
点击展开。
unpackage/dist/dev/mp-weixin/common/vendor.js
浏览文件 @
dd3a86a2
...
...
@@ -16505,8 +16505,8 @@ Object.defineProperty(exports, "__esModule", { value: true });exports.default =
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
,
{
value
:
true
});
exports
.
default
=
void
0
;
var
erp
=
erp
||
{};
//wxb21370ac25ee51b0,//wx45bb68de16ddddb7
var
DOMAIN
=
'http://192.168.1.107:9099/'
;
// 峰煜
// const DOMAIN = 'https://dev.diaosaas.com/diaoyun/'
//测试
// const
DOMAIN = 'http://192.168.1.107:9099/'; // 峰煜
var
DOMAIN
=
'https://dev.diaosaas.com/diaoyun/'
;
//测试
// const DOMAIN = 'http://192.168.1.178:9099/' // 国禄
// const DOMAIN = 'http://192.168.1.197:9099/' // 志就
// const DOMAIN = 'https://fire.huoshitou.net/diaoyun/' // 正式
...
...
unpackage/dist/dev/mp-weixin/pages/group/GroupCompany.js
浏览文件 @
dd3a86a2
...
...
@@ -372,7 +372,8 @@ var _api = _interopRequireDefault(__webpack_require__(/*! ../../static/util/api.
contractId
:
null
,
// 普通会员--合同id,中级会员没有合同
tabIndex
:
1
,
// tab栏(现货类型拼团有tab栏,价差类型没有tab栏(tabIndex=3),并且电客只能帮普通会员参加价差拼包)
contractElectricity
:
''
,
// 已拼团电量
limit
:
''
// 拼团电量上限;如果为null,则表示为空,后台没有进行设置
limit
:
''
,
// 拼团电量上限;如果为null,则表示为空,后台没有进行设置
remindId
:
null
// 需要提醒企业认证的企业id
};
},
methods
:
{
...
...
@@ -447,6 +448,7 @@ var _api = _interopRequireDefault(__webpack_require__(/*! ../../static/util/api.
},
// 选择企业
checkEnterprise
:
function
checkEnterprise
(
enterpriseId
,
contractId
,
userType
,
i
)
{
this
.
remindId
=
enterpriseId
;
this
.
isSatisfy
=
true
;
// userType=3是为中级会员, 中级会员没有合同
if
(
userType
==
3
)
{
...
...
@@ -496,7 +498,7 @@ var _api = _interopRequireDefault(__webpack_require__(/*! ../../static/util/api.
handleClcik
:
function
handleClcik
()
{
var
_this
=
this
;
if
(
this
.
btnText
==
'提醒企业认证'
)
{
(
0
,
_fun
.
get
)(
_api
.
default
.
remindAuthenticate
,
{
userId
:
this
.
user
Id
}).
userId
:
this
.
remind
Id
}).
then
(
function
(
res
)
{
if
(
res
.
code
==
200
)
{
uni
.
showToast
({
...
...
unpackage/dist/dev/mp-weixin/pages/index/index.js
浏览文件 @
dd3a86a2
...
...
@@ -404,8 +404,12 @@ var _fun = __webpack_require__(/*! ../../static/util/fun.js */ 50);var _methods;
that
.
getSalesInformation
();
},
onShow
:
function
onShow
()
{
this
.
getAllPackageCompanies
();
this
.
getStatistics
();
// //获取所有正在参与拼包的企业
// that.getAllPackageCompanies()
// //获取企业/用电量/电客数据
// that.getStatistics()
// //获取行业资讯列表
// that.getSalesInformation()
//获取推荐套餐 电客 高级会员 游客才能看见
if
(
this
.
isEstablish
)
{
this
.
getRecommendedPackageList
();
...
...
unpackage/dist/dev/mp-weixin/pages/login/login.js
浏览文件 @
dd3a86a2
...
...
@@ -319,11 +319,11 @@ var _default = { onLoad: function onLoad(options) {uni.hideHomeButton();var that
url
=
url
+
'&culiangcontractId='
+
that
.
culiangcontractId
;
}
uni
.
reLaunch
({
uni
.
navigateTo
({
url
:
url
});
}
else
{
uni
.
reLaunch
({
uni
.
navigateTo
({
url
:
'/pages/register/register'
});
}
...
...
unpackage/dist/dev/mp-weixin/pages/myInfo/myInfo.js
浏览文件 @
dd3a86a2
...
...
@@ -740,22 +740,22 @@ var app = getApp();var _default = { data: function data() {return { contractNum:
that
.
statusBarHeight
=
statusBarHeight
*
2
;
}
if
(
that
.
userId
&&
that
.
userId
!=
null
)
{
// 获取用户信息(企业与电客)
that
.
getUesrInfo
();
//
if (that.userId && that.userId != null) {
//
// 获取用户信息(企业与电客)
// that.getUesrInfo()
// 获取待处理合同数量
that
.
getMyContractWaitHandleCount
();
//
// 获取待处理合同数量
// that.getMyContractWaitHandleCount()
// 获取拼包记录
that
.
getMyJoinPackageCount
();
//
// 获取拼包记录
// that.getMyJoinPackageCount()
// 获取企业会员的电客信息
that
.
getMyElectricI
();
//
// 获取企业会员的电客信息
// that.getMyElectricI()
//获取收益
that
.
getAllIncome
();
}
//
//获取收益
// that.getAllIncome()
//
}
}
},
methods
:
{
...
...
unpackage/dist/dev/mp-weixin/pages/order/order.js
浏览文件 @
dd3a86a2
...
...
@@ -277,9 +277,7 @@ var _fun = __webpack_require__(/*! @/static/util/fun */ 50);function _interopReq
this
.
tabbar
=
true
;
}
this
.
getEnterpriseOrder
();
this
.
getSataus
();
// this.getSataus()
},
components
:
{
pickerAddress
:
pickerAddress
},
...
...
unpackage/dist/dev/mp-weixin/static/util/api.js
浏览文件 @
dd3a86a2
const
erp
=
erp
||
{};
//wxb21370ac25ee51b0,//wx45bb68de16ddddb7
const
DOMAIN
=
'http://192.168.1.107:9099/'
;
// 峰煜
//
const DOMAIN = 'https://dev.diaosaas.com/diaoyun/' //测试
//
const DOMAIN = 'http://192.168.1.107:9099/'; // 峰煜
const
DOMAIN
=
'https://dev.diaosaas.com/diaoyun/'
//测试
// const DOMAIN = 'http://192.168.1.178:9099/' // 国禄
// const DOMAIN = 'http://192.168.1.197:9099/' // 志就
// const DOMAIN = 'https://fire.huoshitou.net/diaoyun/' // 正式
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论