master
laiiihz 5 years ago
parent a68bf8c0db
commit 767ef0bddb

@ -38,7 +38,7 @@ MobSDK {
SinaWeibo {
appKey "3484799074"
appSecret "0cc08d31b4d63dc81fbb7a2559999fb3"
callbackUri "https://www.reecook.cn"
callbackUri "https://reecook.cn"
}
QZone {
appId "101876843"

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<DevInfor>
<SinaWeibo AppKey="3484799074" AppSecret="0cc08d31b4d63dc81fbb7a2559999fb3" RedirectUrl="https://www.reecook.cn" />
<SinaWeibo AppKey="3484799074" AppSecret="0cc08d31b4d63dc81fbb7a2559999fb3" RedirectUrl="https://reecook.cn" />
<TencentWeibo Enable="false" />
<Douban Enable="false" />
<QZone AppId="101876843" AppKey="6f367bfad98978e22c2e11897dd74f00" />

@ -297,7 +297,7 @@ class AttentionApi {
}
class WebApi {
static const String recookHttp = "https://www.reecook.cn/";
static const String recookHttp = "https://reecook.cn/";
// static const String inviteRegist = "${recookHttp}download.html?code=";
static const String goodsDetail = "https://h5.reecook.cn/#/goods/detail/";
static const String inviteRegist =

@ -1356,7 +1356,7 @@ class _HomePageState extends BaseStoreState<HomePage>
_mobShareInit() {
ShareSDKRegister register = ShareSDKRegister();
register.setupSinaWeibo("3484799074", "0cc08d31b4d63dc81fbb7a2559999fb3",
"https://www.reecook.cn");
"https://reecook.cn");
register.setupQQ("101876843", "6f367bfad98978e22c2e11897dd74f00");
SharesdkPlugin.regist(register);
}

@ -519,7 +519,11 @@ class _LivePageState extends State<LivePage> with WidgetsBindingObserver {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
LiveBuyingWidget(key: _globalBuyingWidgetKey),
Container(
GestureDetector(
onTap: () {
_focusNode.unfocus();
},
child: Container(
height: 300,
child: ListView.builder(
reverse: true,
@ -536,6 +540,7 @@ class _LivePageState extends State<LivePage> with WidgetsBindingObserver {
itemCount: chatObjects.length,
),
),
),
Container(
height: rSize(32),
width: rSize(150),

@ -118,8 +118,8 @@ class _LivePickGoodsPageState extends State<LivePickGoodsPage>
controller: _tabController,
isScrollable: true,
tabs: [
Tab(text: '直播车'),
Tab(text: '热门商品'),
Tab(text: '直播车'),
Tab(text: '历史直播'),
Tab(text: '全部商品'),
],
@ -141,12 +141,12 @@ class _LivePickGoodsPageState extends State<LivePickGoodsPage>
child: TabBarView(
controller: _tabController,
children: [
GoodsCartView(
HotGoodsView(
onPick: () {
setState(() {});
},
),
HotGoodsView(
GoodsCartView(
onPick: () {
setState(() {});
},

@ -112,7 +112,7 @@ class WeChatUtils {
var userId = UserManager.instance.user.info.id;
var model = fluwx.WeChatShareMiniProgramModel(
path: "pages/goods/detail?goods_id=$goodsId&code=$invitationNo&userId=$userId",
webPageUrl: "www.reecook.cn",
webPageUrl: "reecook.cn",
miniProgramType: _wxType,
userName: AppConfig.WX_APP_MINIPRO_USERNAME,
// scene: fluWX.WeChatScene.SESSION,

@ -2,7 +2,7 @@ name: recook
description: Recook Market App.
publish_to: "none"
version: 1.3.5+195
version: 1.3.6+196
# sdk min version to 2.2.2
# to support ... feature

Loading…
Cancel
Save