cjbbdd
3 years ago
407 changed files with 2329 additions and 764 deletions
@ -1,85 +0,0 @@ |
|||||
<!--协议条款--> |
|
||||
<template> |
|
||||
<view class="main"> |
|
||||
<u-navbar |
|
||||
title="协议条款" |
|
||||
:safeAreaInsetTop="true" |
|
||||
:fixed="true" |
|
||||
bgColor="#FFFFFF00" |
|
||||
:placeholder="true" |
|
||||
@leftClick="onBackTouched" |
|
||||
/> |
|
||||
<u-skeleton |
|
||||
rows="1" |
|
||||
:loading="true" |
|
||||
:title="false" |
|
||||
rowsHeight="800rpx" |
|
||||
rowsWidth="750rpx" |
|
||||
v-if="agreementData.textmsg == ''" |
|
||||
> |
|
||||
</u-skeleton> |
|
||||
<view v-else style="width: 662rpx;height: auto;position: relative;left: 44rpx;top: 12rpx;background-color: #FFFFFF;border-radius: 20rpx;"> |
|
||||
<u-parse :content="agreementData.textmsg"></u-parse> |
|
||||
</view> |
|
||||
<button class="button" @click="onTouchConfirm">确定</button> |
|
||||
</view> |
|
||||
</template> |
|
||||
|
|
||||
<script> |
|
||||
export default { |
|
||||
/** |
|
||||
* 监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参) |
|
||||
*/ |
|
||||
onLoad() { |
|
||||
|
|
||||
}, |
|
||||
data() { |
|
||||
return { |
|
||||
agreementData : getApp().globalData.agreementData, |
|
||||
}; |
|
||||
}, |
|
||||
methods:{ |
|
||||
/** |
|
||||
* 点击了返回按钮 |
|
||||
*/ |
|
||||
onBackTouched(){ |
|
||||
|
|
||||
uni.navigateBack({ |
|
||||
|
|
||||
}); |
|
||||
}, |
|
||||
/** |
|
||||
* 点击了确定按钮 |
|
||||
*/ |
|
||||
onTouchConfirm(){ |
|
||||
this.agreementData.isAgreed = true; |
|
||||
uni.navigateBack({ |
|
||||
|
|
||||
}) |
|
||||
}, |
|
||||
} |
|
||||
} |
|
||||
</script> |
|
||||
|
|
||||
<style lang="scss" scoped> |
|
||||
.content { |
|
||||
font-size: 24rpx; |
|
||||
width: 662rpx; |
|
||||
height: auto; |
|
||||
color: #333333; |
|
||||
} |
|
||||
.button{ |
|
||||
width: 702rpx; |
|
||||
height: 90rpx; |
|
||||
background: #D49B4B; |
|
||||
opacity: 1; |
|
||||
border-radius: 93rpx; |
|
||||
display: flex; |
|
||||
flex-direction: row; |
|
||||
align-items: center; |
|
||||
justify-content: center; |
|
||||
font-size: 36rpx; |
|
||||
top: 25rpx; |
|
||||
color: #FFFFFF; |
|
||||
} |
|
||||
</style> |
|
@ -0,0 +1,61 @@ |
|||||
|
<!--引导用户关注公众号--> |
||||
|
<template> |
||||
|
<view class="main"> |
||||
|
<view class="back" /> |
||||
|
<u-navbar |
||||
|
title="官方客服" |
||||
|
:safeAreaInsetTop="true" |
||||
|
:fixed="true" |
||||
|
bgColor="#FFFFFF" |
||||
|
:placeholder="true" |
||||
|
@leftClick="onBackTouched" |
||||
|
/> |
||||
|
<view class="body"> |
||||
|
<text>请搜索并关注公众号:兔讯科技</text> |
||||
|
<u-gap height="24rpx" /> |
||||
|
<text>或扫描下方二维码进行关注</text> |
||||
|
<u-gap height="24rpx" /> |
||||
|
<image src="../../static/images/gongzhonghao.jpg" mode="widthFix"></image> |
||||
|
<u-gap height="24rpx" /> |
||||
|
<text>或联系下方电话号码</text> |
||||
|
<u-gap height="24rpx" /> |
||||
|
<text>400-880-8800</text> |
||||
|
<u-gap height="24rpx" /> |
||||
|
<u-text mode="link" text="兔迅科技官网" href="http://www.xiguadianjing.com" /> |
||||
|
<u-gap height="24rpx" /> |
||||
|
</view> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
data() { |
||||
|
return { |
||||
|
|
||||
|
}; |
||||
|
}, |
||||
|
methods:{ |
||||
|
onBackTouched(){ |
||||
|
uni.navigateBack({ |
||||
|
|
||||
|
}); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss" scoped> |
||||
|
.body{ |
||||
|
width: 702rpx; |
||||
|
height: auto; |
||||
|
border-radius: 20rpx; |
||||
|
position: relative; |
||||
|
left: 24rpx; |
||||
|
top: 24rpx; |
||||
|
background-color: #FFFFFF; |
||||
|
display: flex; |
||||
|
flex-direction: column; |
||||
|
align-items: center; |
||||
|
justify-content: flex-start; |
||||
|
} |
||||
|
</style> |
After Width: | Height: | Size: 26 KiB |
@ -0,0 +1,4 @@ |
|||||
|
|
||||
|
require('./common/runtime.js') |
||||
|
require('./common/vendor.js') |
||||
|
require('./common/main.js') |
@ -0,0 +1,29 @@ |
|||||
|
{ |
||||
|
"pages": [ |
||||
|
"pages/main/main", |
||||
|
"pages/MineCenter/MineCenter", |
||||
|
"pages/TiXian/TiXian", |
||||
|
"pages/Wallet/Wallet", |
||||
|
"pages/WxLogin/WxLogin", |
||||
|
"pages/Verified/Verified", |
||||
|
"pages/CooperationApply/CooperationApply", |
||||
|
"pages/AddNewCustomer/AddNewCustomer", |
||||
|
"pages/RzAndFyView/RzAndFyView", |
||||
|
"pages/PartnerArea/PartnerArea", |
||||
|
"pages/SkipView/SkipView", |
||||
|
"pages/HelpView/HelpView", |
||||
|
"pages/BusinessStyle/BusinessStyle", |
||||
|
"pages/CustomerService/CustomerService" |
||||
|
], |
||||
|
"subPackages": [], |
||||
|
"window": { |
||||
|
"navigationBarTextStyle": "black", |
||||
|
"navigationBarTitleText": "uView", |
||||
|
"navigationBarBackgroundColor": "#FFFFFF", |
||||
|
"backgroundColor": "#FFFFFF", |
||||
|
"navigationStyle": "custom" |
||||
|
}, |
||||
|
"preloadRule": {}, |
||||
|
"usingComponents": {}, |
||||
|
"sitemapLocation": "sitemap.json" |
||||
|
} |
@ -0,0 +1,3 @@ |
|||||
|
@import './common/main.wxss'; |
||||
|
|
||||
|
[data-custom-hidden="true"],[bind-data-custom-hidden="true"]{display: none !important;} |
@ -0,0 +1 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["common/main"],{"02f9":function(e,t,a){"use strict";a.r(t);var n=a("2e94"),r=a.n(n);for(var o in n)"default"!==o&&function(e){a.d(t,e,(function(){return n[e]}))}(o);t["default"]=r.a},"183a":function(e,t,a){"use strict";(function(e){a("d6ad");var t=i(a("66fd")),n=i(a("7206")),r=i(a("c598")),o=i(a("4457")),u=i(a("3b85")),l=i(a("2a3d")),f=i(a("1a14")),c=i(a("6b66"));function i(e){return e&&e.__esModule?e:{default:e}}function d(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,n)}return a}function s(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?d(Object(a),!0).forEach((function(t){p(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):d(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}function p(e,t,a){return t in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e}wx.__webpack_require_UNI_MP_PLUGIN__=a,t.default.prototype.$store=r.default;var g=new l.default;t.default.prototype.$fire=g,t.default.prototype.$Define=f.default,t.default.prototype.$utils=c.default,t.default.config.productionTip=!1,n.default.mpType="app",t.default.use(o.default);var b=a("5b40");t.default.mixin(b),t.default.mixin(u.default);var m=new t.default(s({store:r.default,fire:g},n.default));a("76c2")(m),e(m).$mount()}).call(this,a("543d")["createApp"])},"2e94":function(e,t,a){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=f(a("1a14")),r=f(a("c963")),o=f(a("9f1b")),u=f(a("cfe1")),l=f(a("0145"));function f(e){return e&&e.__esModule?e:{default:e}}var c=new l.default,i={onLaunch:function(){e.addInterceptor("request",{invoke:function(t){t.url=n.default.BaseUrl+t.url;var a=e.getStorageSync(n.default.StoreKeys.WeChatLoginToken);t.header["content-type"]="application/json",t.header["outsourcing.partner.userapp.token"]=a},success:function(t){var a=t.data.code,n=t.data.msg;n&&""!=n&&0!=a&&e.$u.toast(n),0!=a&&401==t.statusCode&&(r.default.clear(),e.clearStorageSync(),e.navigateTo({url:"/pages/WxLogin/WxLogin"}))},fail:function(t){console.log("interceptor-fail",t),e.showToast({title:"网络出现错误,请稍后再试"})},complete:function(e){}}),this.LoadPlayerInfoFromStore(r.default),o.default.getMainPageData()},onShow:function(){},onHide:function(){},globalData:{Define:n.default,Player:r.default,mainPageData:o.default,agreementData:c,customermanager:u.default,isNeedRefreshWallet:!1,showingSkipData:null,editingCustomer:null},methods:{LoadPlayerInfoFromStore:function(){for(var t=n.default.StoreKeys,a=[t.WeChatLoginToken,t.WeChatGender,t.WeChatHeadUrl,t.WeChatNickName],o=0;o<a.length;o++){var u=a[o],l=e.getStorageSync(u);l&&(console.log("从缓存中加载到了属性:",u,l),r.default[u]=l)}var f=r.default.user_token;f&&""!=f&&this.$utils.loginWithToken(f,r.default)}}};t.default=i}).call(this,a("543d")["default"])},7206:function(e,t,a){"use strict";a.r(t);var n=a("02f9");for(var r in n)"default"!==r&&function(e){a.d(t,e,(function(){return n[e]}))}(r);a("c1c4");var o,u,l,f,c=a("f0c5"),i=Object(c["a"])(n["default"],o,u,!1,null,null,null,!1,l,f);t["default"]=i.exports},c1c4:function(e,t,a){"use strict";var n=a("c46a"),r=a.n(n);r.a},c46a:function(e,t,a){}},[["183a","common/runtime","common/vendor"]]]); |
@ -0,0 +1 @@ |
|||||
|
.u-line-1{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.u-line-2{display:-webkit-box!important;overflow:hidden;text-overflow:ellipsis;word-break:break-all;-webkit-line-clamp:2;-webkit-box-orient:vertical!important}.u-line-3{display:-webkit-box!important;overflow:hidden;text-overflow:ellipsis;word-break:break-all;-webkit-line-clamp:3;-webkit-box-orient:vertical!important}.u-line-4{display:-webkit-box!important;overflow:hidden;text-overflow:ellipsis;word-break:break-all;-webkit-line-clamp:4;-webkit-box-orient:vertical!important}.u-line-5{display:-webkit-box!important;overflow:hidden;text-overflow:ellipsis;word-break:break-all;-webkit-line-clamp:5;-webkit-box-orient:vertical!important}.u-reset-button{padding:0;background-color:initial;font-size:inherit;line-height:inherit;color:inherit}.u-reset-button::after{border:none}.u-hover-class{opacity:.7}.u-safe-area-inset-top{padding-top:0;padding-top:constant(safe-area-inset-top);padding-top:env(safe-area-inset-top)}.u-safe-area-inset-right{padding-right:0;padding-right:constant(safe-area-inset-right);padding-right:env(safe-area-inset-right)}.u-safe-area-inset-bottom{padding-bottom:0;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom)}.u-safe-area-inset-left{padding-left:0;padding-left:constant(safe-area-inset-left);padding-left:env(safe-area-inset-left)}::-webkit-scrollbar{display:none;width:0!important;height:0!important;-webkit-appearance:none;background:transparent}.main{opacity:1;border-radius:0;overflow:scroll;touch-action:auto;flex-direction:column;display:flex;margin:0 auto;left:0;top:0;bottom:0;right:0;position:fixed;height:100%;background-color:#f6f6f6}.back{width:100%;height:100%;position:fixed;top:0;bottom:0;left:0;right:0;background:#f6f6f6}.form_item_global{width:702rpx;height:110rpx;position:relative;border-radius:20rpx;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.form_out_box_global{width:702rpx;border-radius:20rpx;position:relative;left:24rpx}.form_title_global{height:40rpx;font-size:28rpx;font-weight:400;color:#333;opacity:1}.form_input_global{width:550rpx;height:90rpx;text-align:right;font-size:28rpx;font-weight:400;color:#333}.form_input_placeholder_global{height:40rpx;text-align:right;font-size:28rpx;font-weight:400;color:#999}.confirm_button_global{width:702rpx;height:90rpx;background:#d49b4b;opacity:1;border-radius:93rpx;display:flex;flex-direction:row;align-items:center;justify-content:center;position:relative;font-size:36rpx;font-weight:400;color:#fff}.confirm_button_hover_class{opacity:.8}.cancel_button_hover_class{color:#333}.cancel_button_global{width:702rpx;height:90rpx;background:#fff;border:1rpx solid #d49b4b;opacity:1;border-radius:93rpx;position:relative;display:flex;align-items:center;justify-content:center;font-size:36rpx;font-weight:400;color:#d49b4b}.top_banner_global{position:fixed;left:0;top:0;width:750rpx;height:424rpx}.uni-picker-container .uni-picker .uni-picker-action-confirm{color:#d7b57c!important}page::after{position:fixed;content:'';left:-1000px;top:-1000px;-webkit-animation:shadow-preload .1s;-webkit-animation-delay:3s;animation:shadow-preload .1s;animation-delay:3s}@-webkit-keyframes shadow-preload{0%{background-image:url(https://cdn1.dcloud.net.cn/img/shadow-grey.png)}100%{background-image:url(https://cdn1.dcloud.net.cn/img/shadow-grey.png)}}@keyframes shadow-preload{0%{background-image:url(https://cdn1.dcloud.net.cn/img/shadow-grey.png)}100%{background-image:url(https://cdn1.dcloud.net.cn/img/shadow-grey.png)}} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,10 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/BusinessDynamics/BusinessDynamics"],{"3d61":function(n,e,t){"use strict";t.d(e,"b",(function(){return u})),t.d(e,"c",(function(){return i})),t.d(e,"a",(function(){return a}));var a={uTabs:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-tabs/u-tabs")]).then(t.bind(null,"2e80"))},uText:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-text/u-text")]).then(t.bind(null,"a316"))},uLine:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-line/u-line")]).then(t.bind(null,"4db2"))}},u=function(){var n=this,e=n.$createElement,t=(n._self._c,n.__map(n.getTargetShowingData(),(function(e,t){var a=n.__get_orig(e),u=n.onChangeTime(e.inserttime);return{$orig:a,m0:u}})));n._isMounted||(n.e0=function(e,t){var a=arguments[arguments.length-1].currentTarget.dataset,u=a.eventParams||a["event-params"];t=u.index;return n.onTouchOneItem(t)}),n.$mp.data=Object.assign({},{$root:{l0:t}})},i=[]},"55e3":function(n,e,t){"use strict";var a=t("7d8e"),u=t.n(a);u.a},"668e":function(n,e,t){"use strict";t.r(e);var a=t("bb73"),u=t.n(a);for(var i in a)"default"!==i&&function(n){t.d(e,n,(function(){return a[n]}))}(i);e["default"]=u.a},"720e":function(n,e,t){"use strict";t.r(e);var a=t("3d61"),u=t("668e");for(var i in u)"default"!==i&&function(n){t.d(e,n,(function(){return u[n]}))}(i);t("55e3");var o,r=t("f0c5"),s=Object(r["a"])(u["default"],a["b"],a["c"],!1,null,"d8a1e43e",null,!1,a["a"],o);e["default"]=s.exports},"7d8e":function(n,e,t){},bb73:function(n,e,t){"use strict";(function(n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=0,a=getApp().globalData.mainPageData,u={name:"BusinessDynamics",data:function(){return{currentTabIndex:t,mainPageData:a,TabListOfBusiness:[{name:"品牌风采"},{name:"业务动态"}]}},methods:{onTableIndexChanged:function(n){this.currentTabIndex=n.index},onChangeTime:function(n){return this.$utils.formatTime(n)},getTargetShowingData:function(){var n=[];n=0==this.currentTabIndex?this.mainPageData.brandstyle:this.mainPageData.busdyna;var e=n.length;if(e>3){for(var t=[],a=0;a<3;a++)t.push(n[a]);return t}return n},onTouchMore:function(){console.log("点击了更多!"),n.navigateTo({url:"/pages/BusinessStyle/BusinessStyle?index="+this.currentTabIndex})},onTouchOneItem:function(e){var t=this.getTargetShowingData(),a=t[e];getApp().globalData.showingSkipData=a,n.navigateTo({url:"/pages/SkipView/SkipView"})}}};e.default=u}).call(this,t("543d")["default"])}}]); |
||||
|
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ |
||||
|
'components/BusinessDynamics/BusinessDynamics-create-component', |
||||
|
{ |
||||
|
'components/BusinessDynamics/BusinessDynamics-create-component':(function(module, exports, __webpack_require__){ |
||||
|
__webpack_require__('543d')['createComponent'](__webpack_require__("720e")) |
||||
|
}) |
||||
|
}, |
||||
|
[['components/BusinessDynamics/BusinessDynamics-create-component']] |
||||
|
]); |
@ -0,0 +1,8 @@ |
|||||
|
{ |
||||
|
"component": true, |
||||
|
"usingComponents": { |
||||
|
"u-tabs": "/uni_modules/uview-ui/components/u-tabs/u-tabs", |
||||
|
"u-text": "/uni_modules/uview-ui/components/u-text/u-text", |
||||
|
"u-line": "/uni_modules/uview-ui/components/u-line/u-line" |
||||
|
} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<view class="main data-v-d8a1e43e"><view class="top data-v-d8a1e43e"><view class="tabs data-v-d8a1e43e"><u-tabs vue-id="62a4f602-1" list="{{TabListOfBusiness}}" scrollable="{{false}}" lineColor="#D49B4B" activeStyle="{{({color:'#333333',fontSize:'36rpx',fontWeight:'bold',lineHeight:'50rpx',transform:'scale(1.05)'})}}" inactiveStyle="{{({color:'#999999',fontSize:'32rpx',lineHeight:'45rpx',fontWeight:'400',trasform:'scale(1)'})}}" current="{{currentTabIndex}}" data-event-opts="{{[['^click',[['onTableIndexChanged']]]]}}" bind:click="__e" class="data-v-d8a1e43e" bind:__l="__l"></u-tabs></view><view data-event-opts="{{[['tap',[['onTouchMore',['$event']]]]]}}" class="more data-v-d8a1e43e" bindtap="__e"><u-text vue-id="62a4f602-2" text="更多" size="24rpx" color="#666666" margin="42rpx 54rpx 42rpx 5rpx" class="data-v-d8a1e43e" bind:__l="__l"></u-text><image class=".more_icon data-v-d8a1e43e" src="/static/images/mainview/more.png"></image></view></view><u-line vue-id="62a4f602-3" color="#E2E2E2" length="662rpx" customStyle="position: relative;left: 20rpx;border: 1px solid #E2E2E2;" hairline="{{true}}" margin="0 0 0 0" class="data-v-d8a1e43e" bind:__l="__l"></u-line><view class="itemArea data-v-d8a1e43e"><block wx:for="{{$root.l0}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" data-event-params="{{({index})}}" class="rowItem data-v-d8a1e43e" bindtap="__e"><text class="itemTitle data-v-d8a1e43e">{{item.$orig.title}}</text><text class="intro data-v-d8a1e43e">{{item.$orig.titledesc}}</text><text class="time data-v-d8a1e43e">{{item.m0}}</text><image class="itemImage data-v-d8a1e43e" src="{{item.$orig.picurl}}"></image><u-line vue-id="{{'62a4f602-4-'+index}}" color="#E2E2E2" length="662rpx" customStyle="position: absolute;left: 20rpx;border: 1px solid #E2E2E2;" hairline="{{true}}" margin="156rpx 0 0 0" class="data-v-d8a1e43e" bind:__l="__l"></u-line></view></block></view></view> |
@ -0,0 +1 @@ |
|||||
|
.main.data-v-d8a1e43e{width:702rpx;height:593rpx;background-color:#fff;opacity:1;border-radius:20rpx;position:relative;margin-left:24rpx;margin-right:24rpx}.top.data-v-d8a1e43e{height:110rpx;width:702rpx;border-radius:20rpx;position:relative}.tabs.data-v-d8a1e43e{width:364rpx;border-radius:20rpx;position:absolute;height:110rpx}.more.data-v-d8a1e43e{width:110rpx;height:110rpx;border-radius:20rpx;position:absolute;right:10rpx}.more_icon.data-v-d8a1e43e{width:24rpx;height:24rpx;position:absolute;top:46rpx;right:20rpx}.itemArea.data-v-d8a1e43e{width:702rpx;height:473rpx;position:relative;border-radius:20rpx}.rowItem.data-v-d8a1e43e{width:702rpx;height:157rpx;position:relative;border-radius:20rpx}.itemTitle.data-v-d8a1e43e{width:471rpx;font-size:26rpx;font-weight:400;color:#333;opacity:1;position:absolute;left:20rpx;top:24rpx;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.intro.data-v-d8a1e43e{width:471rpx;font-size:24rpx;font-weight:400;color:#333;opacity:1;position:absolute;left:20rpx;bottom:55rpx;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.time.data-v-d8a1e43e{width:212rpx;font-size:20rpx;font-weight:400;color:#999;opacity:1;position:absolute;left:20rpx;bottom:12rpx;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.itemImage.data-v-d8a1e43e{width:192rpx;height:109rpx;position:absolute;top:30rpx;right:20rpx} |
@ -0,0 +1,10 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/CommonQuestion/CommonQuestion"],{"0a50":function(n,e,t){"use strict";var o=t("de1e"),u=t.n(o);u.a},"72eb":function(n,e,t){"use strict";(function(n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=getApp().globalData.mainPageData,o=[],u=Array.from(t.question);if(u.length>4)for(var i=0;i<4;i++)o.push(u[i]);else o=u;var a={name:"CommonQuestion",data:function(){return{mainPageData:t,questions:o}},mounted:function(){this.getRandomShowItems()},methods:{getRandomShowItems:function(){this.questions=[];var n=[];n=Array.from(this.mainPageData.question);var e=4,t=n.length;if(t<e)this.questions=n;else while(e>0){if(t=n.length,0==t)break;var o=this.$utils.random(0,t);this.questions.push(n[o]),n.splice(o,1),e-=1}},onTouchThisItem:function(e){var t=this.questions[e];console.log("点击了问题:",t),getApp().globalData.showingSkipData=t,n.navigateTo({url:"/pages/SkipView/SkipView"})}}};e.default=a}).call(this,t("543d")["default"])},a28f:function(n,e,t){"use strict";t.r(e);var o=t("ed7f"),u=t("a904");for(var i in u)"default"!==i&&function(n){t.d(e,n,(function(){return u[n]}))}(i);t("0a50");var a,s=t("f0c5"),r=Object(s["a"])(u["default"],o["b"],o["c"],!1,null,"261ec01b",null,!1,o["a"],a);e["default"]=r.exports},a904:function(n,e,t){"use strict";t.r(e);var o=t("72eb"),u=t.n(o);for(var i in o)"default"!==i&&function(n){t.d(e,n,(function(){return o[n]}))}(i);e["default"]=u.a},de1e:function(n,e,t){},ed7f:function(n,e,t){"use strict";t.d(e,"b",(function(){return u})),t.d(e,"c",(function(){return i})),t.d(e,"a",(function(){return o}));var o={uLine:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-line/u-line")]).then(t.bind(null,"4db2"))},uSkeleton:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-skeleton/u-skeleton")]).then(t.bind(null,"649f"))},uIcon:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-icon/u-icon")]).then(t.bind(null,"602e"))}},u=function(){var n=this,e=n.$createElement;n._self._c},i=[]}}]); |
||||
|
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ |
||||
|
'components/CommonQuestion/CommonQuestion-create-component', |
||||
|
{ |
||||
|
'components/CommonQuestion/CommonQuestion-create-component':(function(module, exports, __webpack_require__){ |
||||
|
__webpack_require__('543d')['createComponent'](__webpack_require__("a28f")) |
||||
|
}) |
||||
|
}, |
||||
|
[['components/CommonQuestion/CommonQuestion-create-component']] |
||||
|
]); |
@ -0,0 +1,8 @@ |
|||||
|
{ |
||||
|
"component": true, |
||||
|
"usingComponents": { |
||||
|
"u-line": "/uni_modules/uview-ui/components/u-line/u-line", |
||||
|
"u-skeleton": "/uni_modules/uview-ui/components/u-skeleton/u-skeleton", |
||||
|
"u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon" |
||||
|
} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<view class="main data-v-261ec01b"><view class="top data-v-261ec01b"><text class="top_title data-v-261ec01b">常见疑问</text><image class="imageOfWenti data-v-261ec01b" src="/static/images/mainview/wenti.png" mode="aspectFit"></image><view data-event-opts="{{[['tap',[['getRandomShowItems',['$event']]]]]}}" class="top_change_area data-v-261ec01b" bindtap="__e"><image class="imageOfHuan data-v-261ec01b" src="/static/images/mainview/huan.png" mode="aspectFit"></image><text class="text_huan data-v-261ec01b">换一换</text></view><u-line vue-id="182aa262-1" color="#E2E2E2" length="662rpx" customStyle="position: absolute;left: 20rpx;border: 1px solid #E2E2E2;" hairline="{{true}}" margin="99rpx 0 0 0" class="data-v-261ec01b" bind:__l="__l"></u-line></view><view class="cell_group data-v-261ec01b"><block wx:if="{{mainPageData.question.length==0}}"><u-skeleton vue-id="182aa262-2" rows="4" loading="{{true}}" title="{{false}}" rowsHeight="80rpx" rowsWidth="702rpx" class="data-v-261ec01b" bind:__l="__l"></u-skeleton></block><block wx:else><block wx:for="{{questions}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="cell_item data-v-261ec01b"><view data-event-opts="{{[['tap',[['onTouchThisItem',[index]]]]]}}" style="width:100%;height:80rpx;display:flex;flex-direction:row;align-items:center;justify-content:space-between;" bindtap="__e" class="data-v-261ec01b"><text class="content_title data-v-261ec01b">{{item.title}}</text><u-icon vue-id="{{'182aa262-3-'+index}}" name="arrow-right" customStyle="margin-right: 20rpx;" class="data-v-261ec01b" bind:__l="__l"></u-icon></view><u-line vue-id="{{'182aa262-4-'+index}}" color="#E2E2E2" length="662rpx" customStyle="border: 1px solid #E2E2E2;margin-left:20rpx;" hairline="{{true}}" class="data-v-261ec01b" bind:__l="__l"></u-line></view></block></block></view></view> |
@ -0,0 +1 @@ |
|||||
|
.main.data-v-261ec01b{width:702rpx;height:460rpx;position:relative;background:#fff;opacity:1;border-radius:20rpx}.top.data-v-261ec01b{width:702rpx;height:99rpx;border-radius:20rpx;position:relative}.top_title.data-v-261ec01b{width:144rpx;height:50rpx;font-size:36rpx;font-weight:700;color:#333;opacity:1;position:relative;left:16rpx;top:24rpx}.imageOfWenti.data-v-261ec01b{width:37rpx;height:37rpx;position:absolute;top:32rpx;left:174rpx}.top_change_area.data-v-261ec01b{width:132rpx;height:99rpx;border-radius:20rpx;position:absolute;top:0;right:0}.imageOfHuan.data-v-261ec01b{width:32rpx;height:27rpx;position:absolute;right:99rpx;top:36rpx}.text_huan.data-v-261ec01b{width:66rpx;height:30rpx;font-size:22rpx;font-weight:400;color:#999;opacity:1;position:absolute;top:34rpx;right:22rpx}.cell_group.data-v-261ec01b{width:702rpx;height:341rpx;position:relative;border-radius:20rpx;display:flex;flex-direction:column;align-items:center}.cell_item.data-v-261ec01b{width:702rpx;height:85rpx;border-radius:20rpx;position:relative}.content_title.data-v-261ec01b{height:33rpx;font-size:24rpx;font-family:PingFang SC;font-weight:400;color:#333;opacity:1;margin-left:20rpx} |
@ -0,0 +1,10 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/HelpItem/HelpItem"],{2190:function(n,e,t){},"4ab4":function(n,e,t){"use strict";var u=t("2190"),o=t.n(u);o.a},"616f":function(n,e,t){"use strict";t.r(e);var u=t("a0ea"),o=t.n(u);for(var i in u)"default"!==i&&function(n){t.d(e,n,(function(){return u[n]}))}(i);e["default"]=o.a},"621f":function(n,e,t){"use strict";t.d(e,"b",(function(){return o})),t.d(e,"c",(function(){return i})),t.d(e,"a",(function(){return u}));var u={uIcon:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-icon/u-icon")]).then(t.bind(null,"602e"))},uLine:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-line/u-line")]).then(t.bind(null,"4db2"))}},o=function(){var n=this,e=n.$createElement;n._self._c},i=[]},6713:function(n,e,t){"use strict";t.r(e);var u=t("621f"),o=t("616f");for(var i in o)"default"!==i&&function(n){t.d(e,n,(function(){return o[n]}))}(i);t("4ab4");var a,c=t("f0c5"),r=Object(c["a"])(o["default"],u["b"],u["c"],!1,null,"c39e0d7a",null,!1,u["a"],a);e["default"]=r.exports},a0ea:function(n,e,t){"use strict";(function(n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u=o(t("0145"));function o(n){return n&&n.__esModule?n:{default:n}}var i={name:"HelpItem",props:{item:{type:Object,default:new u.default}},data:function(){return{}},methods:{onTouchThisItem:function(){console.log("帮助信息:",this.item),getApp().globalData.showingSkipData=this.item,n.navigateTo({url:"/pages/SkipView/SkipView"})}}};e.default=i}).call(this,t("543d")["default"])}}]); |
||||
|
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ |
||||
|
'components/HelpItem/HelpItem-create-component', |
||||
|
{ |
||||
|
'components/HelpItem/HelpItem-create-component':(function(module, exports, __webpack_require__){ |
||||
|
__webpack_require__('543d')['createComponent'](__webpack_require__("6713")) |
||||
|
}) |
||||
|
}, |
||||
|
[['components/HelpItem/HelpItem-create-component']] |
||||
|
]); |
@ -0,0 +1,7 @@ |
|||||
|
{ |
||||
|
"component": true, |
||||
|
"usingComponents": { |
||||
|
"u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", |
||||
|
"u-line": "/uni_modules/uview-ui/components/u-line/u-line" |
||||
|
} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<view class="data-v-c39e0d7a"><view data-event-opts="{{[['tap',[['onTouchThisItem',['$event']]]]]}}" style="width:100%;height:80rpx;display:flex;flex-direction:row;align-items:center;justify-content:space-between;" bindtap="__e" class="data-v-c39e0d7a"><text class="content_title data-v-c39e0d7a">{{item.textmsg}}</text><u-icon vue-id="574a1dfc-1" name="arrow-right" customStyle="margin-right: 20rpx;" class="data-v-c39e0d7a" bind:__l="__l"></u-icon></view><u-line vue-id="574a1dfc-2" color="#E2E2E2" length="662rpx" customStyle="border: 1px solid #E2E2E2;margin-left:20rpx;" hairline="{{true}}" class="data-v-c39e0d7a" bind:__l="__l"></u-line></view> |
@ -0,0 +1 @@ |
|||||
|
.content_title.data-v-c39e0d7a{height:33rpx;font-size:24rpx;font-family:PingFang SC;font-weight:400;color:#333;opacity:1;margin-left:20rpx} |
@ -0,0 +1,10 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/HeroList/HeroList"],{1555:function(n,e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u=0,a={name:"HeroList",data:function(){return{mainPageData:getApp().globalData.mainPageData,TabList:[{name:"大富翁成交榜"},{name:"分佣榜"}],currentTabIndex:u}},methods:{onTableIndexChanged:function(n){var e=n.index;this.currentTabIndex=e},getTargetShowingData:function(){return this.mainPageData.ranklist[this.currentTabIndex].rankitem},getUdidKeyOfItem:function(n){return this.currentTabIndex+"_"+n},getRankIndexImage:function(n){return"../../static/images/mainview/p_"+(n+1)+".png"},getMoneyFormat:function(n){n/=100;var e=this.$utils.formatMoney(n);return"¥"+e},getUpdateTimeStr:function(){if(0==this.mainPageData.ranklist.length)return"";var n=this.mainPageData.ranklist[this.currentTabIndex],e=n.updatetime;return"更新于:"+this.$utils.formatTime(e)}}};e.default=a},3476:function(n,e,t){"use strict";t.d(e,"b",(function(){return a})),t.d(e,"c",(function(){return i})),t.d(e,"a",(function(){return u}));var u={uGap:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-gap/u-gap")]).then(t.bind(null,"5723"))},uTabs:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-tabs/u-tabs")]).then(t.bind(null,"2e80"))},uLine:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-line/u-line")]).then(t.bind(null,"4db2"))},uText:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-text/u-text")]).then(t.bind(null,"a316"))},uSkeleton:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-skeleton/u-skeleton")]).then(t.bind(null,"649f"))},uList:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-list/u-list")]).then(t.bind(null,"971c"))}},a=function(){var n=this,e=n.$createElement,t=(n._self._c,n.getUpdateTimeStr()),u=0!=n.mainPageData.ranklist.length?n.__map(n.getTargetShowingData(),(function(e,t){var u=n.__get_orig(e),a=n.getUdidKeyOfItem(t),i=t<3?n.getRankIndexImage(t):null,r=n.getMoneyFormat(e.score);return{$orig:u,m1:a,m2:i,m3:r}})):null;n.$mp.data=Object.assign({},{$root:{m0:t,l0:u}})},i=[]},6111:function(n,e,t){"use strict";var u=t("eca1"),a=t.n(u);a.a},"819e":function(n,e,t){"use strict";t.r(e);var u=t("1555"),a=t.n(u);for(var i in u)"default"!==i&&function(n){t.d(e,n,(function(){return u[n]}))}(i);e["default"]=a.a},9827:function(n,e,t){"use strict";t.r(e);var u=t("3476"),a=t("819e");for(var i in a)"default"!==i&&function(n){t.d(e,n,(function(){return a[n]}))}(i);t("6111");var r,o=t("f0c5"),l=Object(o["a"])(a["default"],u["b"],u["c"],!1,null,"565aa402",null,!1,u["a"],r);e["default"]=l.exports},eca1:function(n,e,t){}}]); |
||||
|
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ |
||||
|
'components/HeroList/HeroList-create-component', |
||||
|
{ |
||||
|
'components/HeroList/HeroList-create-component':(function(module, exports, __webpack_require__){ |
||||
|
__webpack_require__('543d')['createComponent'](__webpack_require__("9827")) |
||||
|
}) |
||||
|
}, |
||||
|
[['components/HeroList/HeroList-create-component']] |
||||
|
]); |
@ -0,0 +1,11 @@ |
|||||
|
{ |
||||
|
"component": true, |
||||
|
"usingComponents": { |
||||
|
"u-gap": "/uni_modules/uview-ui/components/u-gap/u-gap", |
||||
|
"u-tabs": "/uni_modules/uview-ui/components/u-tabs/u-tabs", |
||||
|
"u-line": "/uni_modules/uview-ui/components/u-line/u-line", |
||||
|
"u-text": "/uni_modules/uview-ui/components/u-text/u-text", |
||||
|
"u-skeleton": "/uni_modules/uview-ui/components/u-skeleton/u-skeleton", |
||||
|
"u-list": "/uni_modules/uview-ui/components/u-list/u-list" |
||||
|
} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<view class="list_main data-v-565aa402"><view style="width:702rpx;height:222rpx;position:relative;" class="data-v-565aa402"><image class="top_image data-v-565aa402" src="../../static/images/mainview/banner_yingxiongbang.png" mode="aspectFill"></image><text class="big_title data-v-565aa402">英雄榜</text><text class="updateTime_text data-v-565aa402">{{$root.m0}}</text></view><u-gap vue-id="54c9f6fc-1" height="24rpx" class="data-v-565aa402" bind:__l="__l"></u-gap><u-tabs vue-id="54c9f6fc-2" list="{{TabList}}" scrollable="{{false}}" lineColor="#D49B4B" activeStyle="{{({color:'#333333',fontSize:'36rpx',fontWeight:'bold',lineHeight:'50rpx',transform:'scale(1.05)'})}}" inactiveStyle="{{({color:'#999999',fontSize:'32rpx',lineHeight:'45rpx',fontWeight:'400',transform:'scale(1)'})}}" current="{{currentTabIndex}}" data-event-opts="{{[['^click',[['onTableIndexChanged']]]]}}" bind:click="__e" class="data-v-565aa402" bind:__l="__l"></u-tabs><u-line vue-id="54c9f6fc-3" color="#E2E2E2" length="662rpx" customStyle="position: relative;left: 20rpx" hairline="{{true}}" margin="0 0 0 0" dashed="{{true}}" class="data-v-565aa402" bind:__l="__l"></u-line><view class="ranking_title data-v-565aa402"><u-text vue-id="54c9f6fc-4" text="排名" size="28rpx" lineHeight="40rpx" color="#333333" margin="18rpx 0 0 18rpx" class="data-v-565aa402" bind:__l="__l"></u-text><u-text vue-id="54c9f6fc-5" text="用户名" size="28rpx" lineHeight="40rpx" color="#333333" margin="18rpx 0 0 100rpx" class="data-v-565aa402" bind:__l="__l"></u-text><u-text vue-id="54c9f6fc-6" text="金额" size="28rpx" lineHeight="40rpx" color="#333333" margin="18rpx 0 0 313rpx" class="data-v-565aa402" bind:__l="__l"></u-text></view><u-line vue-id="54c9f6fc-7" color="#E2E2E2" length="662rpx" customStyle="position: relative;left: 20rpx" hairline="{{true}}" margin="0 0 0 0" dashed="{{true}}" class="data-v-565aa402" bind:__l="__l"></u-line><view style="position:relative;top:0rpx;height:550rpx;background-color:#FFFFFF;border-radius:20rpx;" class="data-v-565aa402"><block wx:if="{{mainPageData.ranklist.length==0}}"><u-skeleton vue-id="54c9f6fc-8" rows="4" loading="{{true}}" title="{{false}}" rowsHeight="110rpx" rowsWidth="702rpx" class="data-v-565aa402" bind:__l="__l"></u-skeleton></block><block wx:else><u-list vue-id="54c9f6fc-9" enableFlex="{{true}}" height="550rpx" class="data-v-565aa402" bind:__l="__l" vue-slots="{{['default']}}"><block wx:for="{{$root.l0}}" wx:for-item="item" wx:for-index="index" wx:key="m1"><view style="height:110rpx;position:relative;" class="data-v-565aa402"><block wx:if="{{index<3}}"><view class="data-v-565aa402"><image class="rankIndexImage data-v-565aa402" src="{{item.m2}}" mode="aspectFill"></image></view></block><block wx:else><view class="data-v-565aa402"><u-text vue-id="{{('54c9f6fc-10-'+index)+','+('54c9f6fc-9')}}" text="{{index+1}}" size="24rpx" lineHeight="33rpx" color="#666666" bold="{{true}}" margin="40rpx 0 0 40rpx" class="data-v-565aa402" bind:__l="__l"></u-text></view></block><view style="position:absolute;left:75px;top:22rpx;" class="data-v-565aa402"><image style="width:67rpx;height:67rpx;border-radius:50%;" src="{{item.$orig.headurl}}" mode="aspectFill" class="data-v-565aa402"></image></view><view style="position:absolute;left:120px;top:39rpx;" class="data-v-565aa402"><u-text vue-id="{{('54c9f6fc-11-'+index)+','+('54c9f6fc-9')}}" text="{{item.$orig.nickname}}" size="24rpx" lineHeight="33rpx" color="#333333" bold="{{true}}" class="data-v-565aa402" bind:__l="__l"></u-text></view><view style="position:absolute;right:21rpx;top:39rpx;" class="data-v-565aa402"><u-text vue-id="{{('54c9f6fc-12-'+index)+','+('54c9f6fc-9')}}" text="{{item.m3}}" size="24rpx" lineHeight="33rpx" color="#333333" bold="{{true}}" align="right" class="data-v-565aa402" bind:__l="__l"></u-text></view><u-line vue-id="{{('54c9f6fc-13-'+index)+','+('54c9f6fc-9')}}" color="#E2E2E2" length="662rpx" hairline="{{true}}" margin="0 0 0 20rpx" dashed="{{true}}" customStyle="position: absolute;bottom:1rpx;" class="data-v-565aa402" bind:__l="__l"></u-line></view></block></u-list></block></view></view> |
@ -0,0 +1 @@ |
|||||
|
.list_main.data-v-565aa402{width:702rpx;height:952rpx;background-color:#fff;opacity:1;border-radius:20rpx;position:relative;margin-left:24rpx;margin-right:24rpx}.top.data-v-565aa402{width:702rpx;height:222rpx;position:absolute;background-color:#fff}.top_image.data-v-565aa402{width:702rpx;height:222rpx;position:absolute;z-index:0}.divider.data-v-565aa402{color:#e2e2e2}.ranking_title.data-v-565aa402{display:flex;flex-direction:row;position:relative;display:flex;flex-direction:row;height:80rpx}.rankIndexImage.data-v-565aa402{width:41rpx;height:47rpx;position:relative;left:26rpx;top:32rpx}.big_title.data-v-565aa402{height:70rpx;font-size:50rpx;font-weight:700;color:#333;opacity:1;position:absolute;left:40rpx;top:65rpx}.updateTime_text.data-v-565aa402{height:28rpx;font-size:20rpx;font-weight:400;color:#d49b4b;opacity:1;position:absolute;z-index:1;left:40rpx;top:143rpx} |
@ -0,0 +1,10 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/KeHu/KeHu"],{3962:function(e,t,n){"use strict";n.r(t);var u=n("acb6"),a=n.n(u);for(var o in u)"default"!==o&&function(e){n.d(t,e,(function(){return u[e]}))}(o);t["default"]=a.a},4647:function(e,t,n){"use strict";var u=n("c4a1"),a=n.n(u);a.a},4986:function(e,t,n){"use strict";n.d(t,"b",(function(){return a})),n.d(t,"c",(function(){return o})),n.d(t,"a",(function(){return u}));var u={uGap:function(){return Promise.all([n.e("common/vendor"),n.e("uni_modules/uview-ui/components/u-gap/u-gap")]).then(n.bind(null,"5723"))},uTabs:function(){return Promise.all([n.e("common/vendor"),n.e("uni_modules/uview-ui/components/u-tabs/u-tabs")]).then(n.bind(null,"2e80"))},uLine:function(){return Promise.all([n.e("common/vendor"),n.e("uni_modules/uview-ui/components/u-line/u-line")]).then(n.bind(null,"4db2"))},uList:function(){return Promise.all([n.e("common/vendor"),n.e("uni_modules/uview-ui/components/u-list/u-list")]).then(n.bind(null,"971c"))},uListItem:function(){return Promise.all([n.e("common/vendor"),n.e("uni_modules/uview-ui/components/u-list-item/u-list-item")]).then(n.bind(null,"fdc8"))}},a=function(){var e=this,t=e.$createElement,n=(e._self._c,e.__map(e.getCustomerToShow(),(function(t,n){var u=e.__get_orig(t),a=t.status>2?e.getStatusName(t.status):null,o=t.status>2||2!=t.status?null:e.getStatusName(t.status),s=t.status>2||2==t.status||1!=t.status?null:e.getStatusName(t.status);return{$orig:u,m0:a,m1:o,m2:s}})));e._isMounted||(e.e0=function(t,n){var u=arguments[arguments.length-1].currentTarget.dataset,a=u.eventParams||u["event-params"];n=a.index;return e.onTouchOneItem(n)}),e.$mp.data=Object.assign({},{$root:{l0:n}})},o=[]},"4d72":function(e,t,n){"use strict";n.r(t);var u=n("4986"),a=n("3962");for(var o in a)"default"!==o&&function(e){n.d(t,e,(function(){return a[e]}))}(o);n("4647");var s,r=n("f0c5"),i=Object(r["a"])(a["default"],u["b"],u["c"],!1,null,"56789c95",null,!1,u["a"],s);t["default"]=i.exports},acb6:function(e,t,n){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var u=a(n("e6d7"));function a(e){return e&&e.__esModule?e:{default:e}}var o=u.default.tabs,s=0,r=u.default.infoTitles,i=u.default.statusDefines,c=getApp().globalData.customermanager,l=getApp().globalData.Define,m={name:"KeHu",created:function(){var e=this;this.onChangeTabIndex({index:0});var t=l.FireKeys.AddNewCustomerSuccess;this.$fire.on(t,(function(t){e.customermanager.allCustom.clear(),e.customermanager.waitCustom.clear(),e.customermanager.allCustom.getNextPage(),e.customermanager.waitCustom.getNextPage()}));var n=l.FireKeys.WeChatLoginSuccess;this.$fire.on(n,(function(t){e.customermanager.allCustom.clear(),e.customermanager.waitCustom.clear(),e.customermanager.allCustom.getNextPage(),e.customermanager.waitCustom.getNextPage()}))},destroyed:function(){var e=l.FireKeys.AddNewCustomerSuccess;this.$fire.off(e),this.$fire.off(l.FireKeys.WeChatLoginSuccess)},data:function(){return{customermanager:c,tabs:o,currentTabIndex:s,infoTitles:r,statusDefines:i}},methods:{getListKey:function(){var e=this.currentTabIndex;return e+"_"+this.specialKey},onClickAddNew:function(){var t=getApp().globalData.mainPageData,n=t.partnerstatus,u="";0==n?u="请先申请成为官方合作人员":1==n?u="您的申请已收到,请等待工作人员审核":2==n||(u="您的申请已被拒绝,请重新申请"),""==u?e.navigateTo({url:"/pages/AddNewCustomer/AddNewCustomer"}):e.$u.toast(u)},getCustomerToShow:function(){var e=this.currentTabIndex,t=this.customermanager.getTargetGroupByIndex(e);return t.customerinfo},onChangeTabIndex:function(e){var t=e.index;this.currentTabIndex=t;var n=this.customermanager.getTargetGroupByIndex(t);0==n.allCount&&n.getNextPage()},getStatusName:function(e){var t=this.statusDefines.length;return e>=t||e<0?{str:"错误",color:"#ff0000"}:this.statusDefines[e]},listScrollToBottom:function(){console.log("end of the custom list");var e=this.customermanager.getTargetGroupByIndex(this.currentTabIndex);e.getNextPage()},onTouchOneItem:function(t){var n=this.getCustomerToShow(),u=n[t],a=u.status;console.log("customer status => ",a),1==a&&(getApp().globalData.editingCustomer=u,e.navigateTo({url:"/pages/AddNewCustomer/AddNewCustomer"}))}}};t.default=m}).call(this,n("543d")["default"])},c4a1:function(e,t,n){}}]); |
||||
|
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ |
||||
|
'components/KeHu/KeHu-create-component', |
||||
|
{ |
||||
|
'components/KeHu/KeHu-create-component':(function(module, exports, __webpack_require__){ |
||||
|
__webpack_require__('543d')['createComponent'](__webpack_require__("4d72")) |
||||
|
}) |
||||
|
}, |
||||
|
[['components/KeHu/KeHu-create-component']] |
||||
|
]); |
@ -0,0 +1,10 @@ |
|||||
|
{ |
||||
|
"component": true, |
||||
|
"usingComponents": { |
||||
|
"u-gap": "/uni_modules/uview-ui/components/u-gap/u-gap", |
||||
|
"u-tabs": "/uni_modules/uview-ui/components/u-tabs/u-tabs", |
||||
|
"u-line": "/uni_modules/uview-ui/components/u-line/u-line", |
||||
|
"u-list": "/uni_modules/uview-ui/components/u-list/u-list", |
||||
|
"u-list-item": "/uni_modules/uview-ui/components/u-list-item/u-list-item" |
||||
|
} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<view class="main_background data-v-56789c95"><view class="top data-v-56789c95"><image class="top_banner data-v-56789c95" src="../../static/images/kehu/bg_2.png"></image><view data-event-opts="{{[['tap',[['onClickAddNew',['$event']]]]]}}" class="button_add_new data-v-56789c95" bindtap="__e"><text class="button_text data-v-56789c95">新增 +</text></view></view><u-gap vue-id="e571f2bc-1" height="40rpx" class="data-v-56789c95" bind:__l="__l"></u-gap><u-tabs vue-id="e571f2bc-2" list="{{tabs}}" scrollable="{{false}}" lineColor="#D49B4B" activeStyle="{{({color:'#333333',fontSize:'32rpx',fontWeight:'bold',lineHeight:'45rpx',transform:'scale(1.05)'})}}" inactiveStyle="{{({color:'#999999',fontSize:'30rpx',lineHeight:'42rpx',fontWeight:'400',trasform:'scale(1)'})}}" current="{{currentTabIndex}}" data-event-opts="{{[['^click',[['onChangeTabIndex']]]]}}" bind:click="__e" class="data-v-56789c95" bind:__l="__l"></u-tabs><u-gap vue-id="e571f2bc-3" height="24rpx" class="data-v-56789c95" bind:__l="__l"></u-gap><u-line vue-id="e571f2bc-4" color="#E2E2E2" length="702rpx" customStyle="position: relative;left: 24rpx;border: 1px solid #E2E2E2;" hairline="{{true}}" margin="0 0 0 0" class="data-v-56789c95" bind:__l="__l"></u-line><view class="tab_title_box data-v-56789c95"><block wx:for="{{infoTitles}}" wx:for-item="item" wx:for-index="index" wx:key="index"><text class="tab_title_text data-v-56789c95">{{item}}</text></block></view><u-line vue-id="e571f2bc-5" color="#E2E2E2" length="702rpx" customStyle="position: relative;left: 24rpx;border: 1px solid #E2E2E2;" hairline="{{true}}" margin="0 0 0 0" class="data-v-56789c95" bind:__l="__l"></u-line><u-list vue-id="e571f2bc-6" height="900rpx" enableFlex="{{true}}" preLoadScreen="10" data-event-opts="{{[['^scrolltolower',[['listScrollToBottom']]]]}}" bind:scrolltolower="__e" class="data-v-56789c95" bind:__l="__l" vue-slots="{{['default']}}"><block wx:for="{{$root.l0}}" wx:for-item="item" wx:for-index="index" wx:key="index"><u-list-item vue-id="{{('e571f2bc-7-'+index)+','+('e571f2bc-6')}}" class="data-v-56789c95" bind:__l="__l" vue-slots="{{['default']}}"><view data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" data-event-params="{{({index})}}" class="inner_tab_box_border data-v-56789c95" bindtap="__e"><view class="inner_tab_box data-v-56789c95"><text class="inner_text_normal data-v-56789c95">{{item.$orig.name}}</text><text class="inner_text_normal data-v-56789c95">{{item.$orig.demand}}</text><text class="inner_text_normal data-v-56789c95">{{item.$orig.industry}}</text><text class="inner_text_normal data-v-56789c95">{{item.$orig.city}}</text><block wx:if="{{item.$orig.status>2}}"><text class="inner_text_normal data-v-56789c95">{{item.m0.str}}</text></block><block wx:else><block wx:if="{{item.$orig.status==2}}"><text class="inner_text_green data-v-56789c95">{{item.m1.str}}</text></block><block wx:else><block wx:if="{{item.$orig.status==1}}"><text class="inner_text_orange data-v-56789c95">{{item.m2.str}}</text></block></block></block></view><u-line vue-id="{{('e571f2bc-8-'+index)+','+('e571f2bc-7-'+index)}}" color="#E2E2E2" length="702rpx" customStyle="position: relative;border: 1px solid #E2E2E2;" hairline="{{true}}" margin="0 0 0 0" class="data-v-56789c95" bind:__l="__l"></u-line></view></u-list-item></block></u-list><u-gap vue-id="e571f2bc-9" height="80rpx" class="data-v-56789c95" bind:__l="__l"></u-gap></view> |
@ -0,0 +1 @@ |
|||||
|
.main_background.data-v-56789c95{opacity:1;overflow:scroll;touch-action:auto;flex-direction:column;display:flex;margin:0 auto;left:0;top:0;bottom:0;right:0}.top.data-v-56789c95{width:750rpx;height:295rpx;position:relative}.top_banner.data-v-56789c95{position:relative;left:0;top:0;width:750rpx;height:295rpx}.button_add_new.data-v-56789c95{width:134rpx;height:54rpx;background:#fff;border:1rpx solid #d49b4b;opacity:1;border-radius:28rpx;position:absolute;top:266rpx;right:24rpx;display:flex;justify-content:center;text-align:center}.button_text.data-v-56789c95{height:40rpx;font-size:28rpx;font-weight:400;color:#d49b4b;opacity:1}.tab_title_box.data-v-56789c95{width:702rpx;height:100rpx;position:relative;left:24rpx;right:24rpx;display:flex;flex-direction:row;align-items:center;justify-content:space-between;flex-wrap:nowrap}.tab_title_text.data-v-56789c95{width:168rpx;font-size:28rpx;font-weight:400;color:#333;opacity:1;text-align:center;text-overflow:ellipsis;overflow:hidden}.inner_tab_box_border.data-v-56789c95{width:702rpx;height:100rpx;position:relative;left:24rpx;right:24rpx}.inner_tab_box.data-v-56789c95{width:702rpx;height:100rpx;position:relative;display:flex;flex-direction:row;align-items:center;justify-content:space-between;flex-wrap:nowrap}.inner_text_normal.data-v-56789c95{width:168rpx;max-height:100rpx;font-size:24rpx;font-weight:400;color:#333;opacity:1;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow:ellipsis;overflow:hidden}.inner_text_green.data-v-56789c95{width:168rpx;max-height:100rpx;font-size:24rpx;font-weight:400;color:#41cf41;opacity:1;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow:ellipsis;overflow:hidden}.inner_text_orange.data-v-56789c95{width:168rpx;max-height:100rpx;font-size:24rpx;font-weight:400;color:#d49b4b;opacity:1;text-align:center;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;text-overflow:ellipsis;overflow:hidden}.list.data-v-56789c95{width:750rpx;background-color:#39b54a} |
@ -0,0 +1,10 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/MainPage/MainPage"],{"0933":function(n,e,t){"use strict";t.r(e);var o=t("a7db"),u=t.n(o);for(var i in o)"default"!==i&&function(n){t.d(e,n,(function(){return o[n]}))}(i);e["default"]=u.a},"0d54":function(n,e,t){"use strict";t.r(e);var o=t("8a00"),u=t("0933");for(var i in u)"default"!==i&&function(n){t.d(e,n,(function(){return u[n]}))}(i);t("306d");var a,r=t("f0c5"),s=Object(r["a"])(u["default"],o["b"],o["c"],!1,null,"70e2b0de",null,!1,o["a"],a);e["default"]=s.exports},"2e06":function(n,e,t){},"306d":function(n,e,t){"use strict";var o=t("2e06"),u=t.n(o);u.a},"8a00":function(n,e,t){"use strict";t.d(e,"b",(function(){return u})),t.d(e,"c",(function(){return i})),t.d(e,"a",(function(){return o}));var o={uText:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-text/u-text")]).then(t.bind(null,"a316"))},uGap:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-gap/u-gap")]).then(t.bind(null,"5723"))},uSwiper:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-swiper/u-swiper")]).then(t.bind(null,"19df"))},HeroList:function(){return t.e("components/HeroList/HeroList").then(t.bind(null,"9827"))},BusinessDynamics:function(){return t.e("components/BusinessDynamics/BusinessDynamics").then(t.bind(null,"720e"))},CommonQuestion:function(){return t.e("components/CommonQuestion/CommonQuestion").then(t.bind(null,"a28f"))}},u=function(){var n=this,e=n.$createElement;n._self._c;n._isMounted||(n.e0=function(e){return n.project_indicator_current=e.current})},i=[]},a7db:function(n,e,t){"use strict";(function(n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=function(){t.e("components/HeroList/HeroList").then(function(){return resolve(t("9827"))}.bind(null,t)).catch(t.oe)},u=function(){t.e("components/CommonQuestion/CommonQuestion").then(function(){return resolve(t("a28f"))}.bind(null,t)).catch(t.oe)},i=function(){t.e("components/BusinessDynamics/BusinessDynamics").then(function(){return resolve(t("720e"))}.bind(null,t)).catch(t.oe)},a={name:"MainPage",mixins:[n.$u.mixin],components:{HeroList:o,BusinessDynamics:i,CommonQuestion:u},data:function(){return{mainPageData:getApp().globalData.mainPageData,top_backgroun_image_src:"../../static/images/mainview/banner_bg.png",project_indicator_current:0}},methods:{onTouchTopPanel:function(e){console.log(e);var t=getApp().globalData.Player,o=t.user_token;o&&""!=o?1==e?n.navigateTo({url:"/pages/CooperationApply/CooperationApply"}):n.navigateTo({url:"/pages/PartnerArea/PartnerArea"}):(n.$u.toast("请先登录"),n.navigateTo({url:"/pages/WxLogin/WxLogin"}))}}};e.default=a}).call(this,t("543d")["default"])}}]); |
||||
|
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ |
||||
|
'components/MainPage/MainPage-create-component', |
||||
|
{ |
||||
|
'components/MainPage/MainPage-create-component':(function(module, exports, __webpack_require__){ |
||||
|
__webpack_require__('543d')['createComponent'](__webpack_require__("0d54")) |
||||
|
}) |
||||
|
}, |
||||
|
[['components/MainPage/MainPage-create-component']] |
||||
|
]); |
@ -0,0 +1,11 @@ |
|||||
|
{ |
||||
|
"component": true, |
||||
|
"usingComponents": { |
||||
|
"u-text": "/uni_modules/uview-ui/components/u-text/u-text", |
||||
|
"u-gap": "/uni_modules/uview-ui/components/u-gap/u-gap", |
||||
|
"u-swiper": "/uni_modules/uview-ui/components/u-swiper/u-swiper", |
||||
|
"hero-list": "/components/HeroList/HeroList", |
||||
|
"business-dynamics": "/components/BusinessDynamics/BusinessDynamics", |
||||
|
"common-question": "/components/CommonQuestion/CommonQuestion" |
||||
|
} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<view class="main_background data-v-70e2b0de"><view class="top data-v-70e2b0de"><image class="top_image data-v-70e2b0de" src="{{top_backgroun_image_src}}" mode="widthFix"></image><view class="top_action_panel data-v-70e2b0de"><view data-event-opts="{{[['tap',[['onTouchTopPanel',[1]]]]]}}" class="top_action_item_panal data-v-70e2b0de" style="left:24rpx;" bindtap="__e"><image style="width:79rpx;height:67rpx;position:absolute;right:131rpx;top:37rpx;" src="../../static/images/mainview/hezuo.png" class="data-v-70e2b0de"></image><u-text vue-id="424ce2fc-1" text="成为大富翁" bold="{{true}}" size="28rpx" color="#333333" lineHeight="40rpx" margin="123rpx 0 23rpx 0" class="data-v-70e2b0de" bind:__l="__l"></u-text></view><view data-event-opts="{{[['tap',[['onTouchTopPanel',[2]]]]]}}" class="top_action_item_panal data-v-70e2b0de" style="right:24rpx;" bindtap="__e"><image style="width:79rpx;height:67rpx;position:absolute;right:131rpx;top:37rpx;" src="../../static/images/mainview/ditu.png" class="data-v-70e2b0de"></image><u-text vue-id="424ce2fc-2" text="大富翁区域" bold="{{true}}" size="28rpx" color="#333333" lineHeight="40rpx" margin="123rpx 0 23rpx 0" class="data-v-70e2b0de" bind:__l="__l"></u-text></view></view></view><u-gap vue-id="424ce2fc-3" height="58rpx" class="data-v-70e2b0de" bind:__l="__l"></u-gap><view class="project data-v-70e2b0de"><u-text vue-id="424ce2fc-4" text="品牌项目" bold="{{true}}" color="#333333" size="36rpx" class="data-v-70e2b0de" bind:__l="__l"></u-text><u-gap vue-id="424ce2fc-5" height="21rpx" class="data-v-70e2b0de" bind:__l="__l"></u-gap><block wx:if="{{mainPageData.brandpro.length==0}}"><view style="width:750rpx;height:180rpx;background-color:#FFFFFF;position:relative;border-radius:20rpx;" class="data-v-70e2b0de"></view></block><block wx:else><view style="margin-bottom:20rpx;" class="data-v-70e2b0de"><u-swiper vue-id="424ce2fc-6" list="{{mainPageData.brandpro}}" keyName="picurl" showTitle="{{false}}" autoplay="{{true}}" circular="{{true}}" imgMode="widthFix" data-event-opts="{{[['^change',[['e0']]]]}}" bind:change="__e" class="data-v-70e2b0de" bind:__l="__l"></u-swiper><u-gap vue-id="424ce2fc-7" height="15rpx" class="data-v-70e2b0de" bind:__l="__l"></u-gap><view class="indicator data-v-70e2b0de"><block wx:for="{{mainPageData.brandpro}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="{{['indicator__dot','data-v-70e2b0de',index===project_indicator_current&&'indicator__dot__active']}}"></view></block></view></view></block></view><u-gap vue-id="424ce2fc-8" height="40rpx" class="data-v-70e2b0de" bind:__l="__l"></u-gap><hero-list vue-id="424ce2fc-9" class="data-v-70e2b0de" bind:__l="__l"></hero-list><u-gap vue-id="424ce2fc-10" height="45rpx" class="data-v-70e2b0de" bind:__l="__l"></u-gap><business-dynamics vue-id="424ce2fc-11" class="data-v-70e2b0de" bind:__l="__l"></business-dynamics><u-gap vue-id="424ce2fc-12" height="30rpx" class="data-v-70e2b0de" bind:__l="__l"></u-gap><common-question vue-id="424ce2fc-13" class="data-v-70e2b0de" bind:__l="__l"></common-question><u-gap vue-id="424ce2fc-14" height="75rpx" class="data-v-70e2b0de" bind:__l="__l"></u-gap></view> |
@ -0,0 +1 @@ |
|||||
|
.main_background.data-v-70e2b0de{opacity:1;border-radius:0;overflow:scroll;touch-action:auto;flex-direction:column;display:flex;margin:0 auto;left:0;top:0;bottom:0;right:0;position:relative}.top.data-v-70e2b0de{height:589rpx;position:relative}.top_image.data-v-70e2b0de{width:750rpx;height:589rpx;position:absolute;top:0rpx}.top_action_panel.data-v-70e2b0de{display:flex;flex-direction:row;width:750rpx;height:186rpx;position:absolute;bottom:0rpx;display:flex;flex-direction:row}.top_action_item_panal.data-v-70e2b0de{width:341rpx;height:186rpx;background-color:#fff;position:absolute;box-shadow:0rpx 3rpx 5rpx rgba(0,0,0,.1);border-radius:20rpx;display:flex;flex-direction:column;align-items:center}.project.data-v-70e2b0de{height:360rpx;position:relative;margin-left:24rpx;margin-right:24rpx}.indicator.data-v-70e2b0de{display:flex;flex-direction:row;justify-content:center}.indicator__dot.data-v-70e2b0de{height:12rpx;width:12rpx;border-radius:100rpx;background-color:#e2e2e2;margin:0 16rpx;transition:background-color .3s}.indicator__dot__active.data-v-70e2b0de{background-color:#d49b4b;width:17rpx;height:10rpx;border-radius:50rpx} |
@ -0,0 +1,10 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/Mine/Mine"],{"065f":function(e,n,t){"use strict";var i=t("da39"),o=t.n(i);o.a},"19c3":function(e,n,t){"use strict";(function(e){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var t=getApp().globalData.Player,i={name:"Mine",data:function(){return{Player:t,isMoneyVisiable:!1,items:[{title:"实名认证",icon:"../../static/images/wode/shiming.png",message:"提现必须进行实名认证"},{title:"官方客服",icon:"../../static/images/wode/kefu2.png",message:null},{title:"帮助",icon:"../../static/images/wode/bangzhu.png",message:null}]}},methods:{onTouchToLogin:function(){e.navigateTo({url:"/pages/WxLogin/WxLogin"})},onTouchItem:function(n){console.log(n);var t=getApp().globalData.Player;if(0==n){if(!t.isLogined())return void e.$u.toast("请先登录");e.navigateTo({url:"/pages/Verified/Verified"})}else 2==n?e.navigateTo({url:"/pages/HelpView/HelpView"}):1==n&&e.navigateTo({url:"/pages/CustomerService/CustomerService"})},onTouchToShowMineCenter:function(){e.navigateTo({url:"/pages/MineCenter/MineCenter"})},getMoneyFormat:function(){var e=t.balancescore,n="¥"+this.$utils.formatMoney(e);return n},onTouchEye:function(){var n=this.isMoneyVisiable;if(!n){var i=t.user_token;if(!i||""==i)return void e.$u.toast("请先登录")}this.isMoneyVisiable=!this.isMoneyVisiable},onTouchToEnterWallet:function(){var n=getApp().globalData.Player;""!=n.user_token?e.navigateTo({url:"/pages/Wallet/Wallet"}):e.$u.toast("请先登录")},doNothing:function(e){e.preventDefault()}}};n.default=i}).call(this,t("543d")["default"])},3083:function(e,n,t){"use strict";t.d(n,"b",(function(){return o})),t.d(n,"c",(function(){return a})),t.d(n,"a",(function(){return i}));var i={uNavbar:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-navbar/u-navbar")]).then(t.bind(null,"17d2"))},uIcon:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-icon/u-icon")]).then(t.bind(null,"602e"))}},o=function(){var e=this,n=e.$createElement,t=(e._self._c,e.isMoneyVisiable?e.getMoneyFormat():null);e.$mp.data=Object.assign({},{$root:{m0:t}})},a=[]},"4c93":function(e,n,t){"use strict";t.r(n);var i=t("19c3"),o=t.n(i);for(var a in i)"default"!==a&&function(e){t.d(n,e,(function(){return i[e]}))}(a);n["default"]=o.a},da39:function(e,n,t){},e451:function(e,n,t){"use strict";t.r(n);var i=t("3083"),o=t("4c93");for(var a in o)"default"!==a&&function(e){t.d(n,e,(function(){return o[e]}))}(a);t("065f");var u,r=t("f0c5"),l=Object(r["a"])(o["default"],i["b"],i["c"],!1,null,"8cac3a2c",null,!1,i["a"],u);n["default"]=l.exports}}]); |
||||
|
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ |
||||
|
'components/Mine/Mine-create-component', |
||||
|
{ |
||||
|
'components/Mine/Mine-create-component':(function(module, exports, __webpack_require__){ |
||||
|
__webpack_require__('543d')['createComponent'](__webpack_require__("e451")) |
||||
|
}) |
||||
|
}, |
||||
|
[['components/Mine/Mine-create-component']] |
||||
|
]); |
@ -0,0 +1,7 @@ |
|||||
|
{ |
||||
|
"component": true, |
||||
|
"usingComponents": { |
||||
|
"u-navbar": "/uni_modules/uview-ui/components/u-navbar/u-navbar", |
||||
|
"u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon" |
||||
|
} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<view class="main data-v-8cac3a2c"><view class="back data-v-8cac3a2c"></view><image class="top data-v-8cac3a2c" src="../../static/images/wode/bg_3.png" mode="widthFix"></image><u-navbar vue-id="680ee722-1" title="个人中心" safeAreaInsetTop="{{true}}" fixed="{{true}}" bgColor="#FFFFFF00" isShowLeftIcon="{{false}}" class="data-v-8cac3a2c" bind:__l="__l"></u-navbar><view class="top_head_area data-v-8cac3a2c"><view class="head_background data-v-8cac3a2c"><block wx:if="{{Player.headimgurl!=''}}"><image class="user_head_image data-v-8cac3a2c" src="{{Player.headimgurl}}"></image></block><block wx:else><image class="head data-v-8cac3a2c" src="../../static/images/wode/touxaingkuang.png" mode="widthFix"></image></block></view><block wx:if="{{Player.nickname!=''}}"><view data-event-opts="{{[['tap',[['onTouchToShowMineCenter',['$event']]]]]}}" class="player_nick_name_show data-v-8cac3a2c" bindtap="__e"><text style="font-size:32rpx;font-weight:bold;color:#333333;position:absolute;left:10rpx;top:10rpx;" class="data-v-8cac3a2c">{{Player.nickname}}</text><text style="font-size:26rpx;font-weight:400;color:#D49B4B;position:absolute;left:10rpx;top:60rpx;" class="data-v-8cac3a2c">点击查看个人主页 ></text></view></block><block wx:else><text data-event-opts="{{[['tap',[['onTouchToLogin',['$event']]]]]}}" class="nickname data-v-8cac3a2c" bindtap="__e">登录 | 注册</text></block></view><view class="walletBox data-v-8cac3a2c"><text data-event-opts="{{[['tap',[['onTouchEye',['$event']]]]]}}" class="wallet_title data-v-8cac3a2c" bindtap="__e">钱包</text><block wx:if="{{!isMoneyVisiable}}"><image class="eye_close data-v-8cac3a2c" src="../../static/images/wode/bukejian.png" mode="widthFix" catchtouchmove="{{true}}" data-event-opts="{{[['tap',[['onTouchEye',['$event']]]]]}}" bindtap="__e"></image></block><block wx:else><image class="eye_close data-v-8cac3a2c" src="../../static/images/wode/kejian.png" mode="widthFix" catchtouchmove="{{true}}" data-event-opts="{{[['tap',[['onTouchEye',['$event']]]]]}}" bindtap="__e"></image></block><view class="wallet_number_box data-v-8cac3a2c"><block wx:if="{{!isMoneyVisiable}}"><text class="wallet_number data-v-8cac3a2c" catchtouchmove="{{true}}" data-event-opts="{{[['tap',[['onTouchEye',['$event']]]]]}}" bindtap="__e">******</text></block><block wx:if="{{isMoneyVisiable}}"><text class="wallet_number data-v-8cac3a2c" catchtouchmove="{{true}}" data-event-opts="{{[['tap',[['onTouchEye',['$event']]]]]}}" bindtap="__e">{{$root.m0}}</text></block></view><view data-event-opts="{{[['tap',[['onTouchToEnterWallet',['$event']]]]]}}" style="width:100rpx;height:100%;position:absolute;right:5rpx;border-radius:20rpx;" bindtap="__e" class="data-v-8cac3a2c"></view><u-icon vue-id="680ee722-2" name="arrow-right" customStyle="width: 14rpx;height: 25rpx;position: absolute;top: 53rpx;right: 30rpx;" class="data-v-8cac3a2c" bind:__l="__l"></u-icon></view><view class="body data-v-8cac3a2c"><block wx:for="{{items}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view data-event-opts="{{[['tap',[['onTouchItem',[index]]]]]}}" class="item data-v-8cac3a2c" bindtap="__e"><image class="item_icon data-v-8cac3a2c" src="{{item.icon}}"></image><view class="item_title_box data-v-8cac3a2c"><text class="item_title data-v-8cac3a2c">{{item.title}}</text><block wx:if="{{index==0}}"><view class="data-v-8cac3a2c"><block wx:if="{{Player.needrealname==1}}"><text class="item_message data-v-8cac3a2c">{{''+item.message+''}}</text></block><block wx:else><text class="item_message_success data-v-8cac3a2c">您已完成实名认证</text></block></view></block><block wx:else><view class="data-v-8cac3a2c"><block wx:if="{{item.message!=null}}"><text class="item_message data-v-8cac3a2c">{{item.message}}</text></block></view></block></view><u-icon vue-id="{{'680ee722-3-'+index}}" name="arrow-right" customStyle="width: 12rpx;height: 21rpx;position: absolute;top: 45rpx;right: 20rpx;" class="data-v-8cac3a2c" bind:__l="__l"></u-icon></view></block></view></view> |
@ -0,0 +1 @@ |
|||||
|
.back.data-v-8cac3a2c{width:100%;height:100%;position:fixed;top:0;bottom:0;left:0;right:0;background:#f6f6f6}.main.data-v-8cac3a2c{position:relative}.top.data-v-8cac3a2c{position:relative;width:750rpx;height:495rpx;top:0;left:0;right:0}.top_head_area.data-v-8cac3a2c{width:100%;height:150rpx;position:absolute;top:200rpx}.head_background.data-v-8cac3a2c{width:138rpx;height:138rpx;border-radius:50%;opacity:1;position:absolute;left:24rpx;top:6rpx;display:flex;align-items:center;justify-content:center}.head.data-v-8cac3a2c{width:125rpx;height:125rpx;display:flex;align-items:center;justify-content:center}.user_head_image.data-v-8cac3a2c{width:125rpx;height:125rpx;border-radius:50%}.nickname.data-v-8cac3a2c{width:400rpx;height:46rpx;font-size:32rpx;font-weight:700;color:#333;opacity:1;position:absolute;left:182rpx;top:52rpx}.player_nick_name_show.data-v-8cac3a2c{width:400rpx;height:110rpx;font-size:32rpx;font-weight:700;color:#333;opacity:1;position:absolute;left:182rpx;top:25rpx}.title.data-v-8cac3a2c{width:144rpx;height:50rpx;font-size:36rpx;font-weight:700;color:#333;opacity:1;position:absolute;top:100rpx;left:303rpx}.walletBox.data-v-8cac3a2c{width:702rpx;height:132rpx;background:#fff;box-shadow:0rpx 3rpx 6rpx rgba(0,0,0,.06);opacity:1;border-radius:20rpx;position:relative;left:24rpx;bottom:96rpx}.wallet_title.data-v-8cac3a2c{width:64rpx;height:45rpx;font-size:32rpx;font-weight:700;color:#333;opacity:1;position:absolute;left:30rpx;top:44rpx}.eye_close.data-v-8cac3a2c{width:31rpx;height:15rpx;position:absolute;left:110rpx;top:59rpx}.wallet_number_box.data-v-8cac3a2c{position:absolute;text-align:center;height:45rpx;width:400rpx;top:48rpx;left:151rpx;text-align:center}.wallet_number.data-v-8cac3a2c{height:45rpx;font-size:32rpx;font-weight:700;color:#333;line-height:45rpx;opacity:1}.body.data-v-8cac3a2c{width:702rpx;height:340rpx;padding-top:5rpx;padding-bottom:5rpx;position:relative;left:24rpx;top:-56rpx;border-radius:20rpx;display:flex;flex-direction:column;justify-content:space-around;align-items:center}.item.data-v-8cac3a2c{width:100%;height:110rpx;border-radius:20rpx;position:relative}.item_icon.data-v-8cac3a2c{width:33rpx;height:33rpx;position:absolute;left:0;top:39rpx}.item_title_box.data-v-8cac3a2c{height:100rpx;width:600rpx;position:relative;left:50rpx;top:5rpx}.item_title.data-v-8cac3a2c{height:40rpx;font-size:28rpx;font-weight:700;color:#333;opacity:1;position:absolute;left:0rpx;top:30rpx}.item_message.data-v-8cac3a2c{height:33rpx;font-size:24rpx;font-weight:400;color:#999;opacity:1;position:absolute;left:0;bottom:2rpx}.item_message_success.data-v-8cac3a2c{height:33rpx;font-size:24rpx;font-weight:400;color:#d49b4b;opacity:1;position:absolute;left:0;bottom:2rpx} |
@ -0,0 +1,10 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/NeedsSelect/NeedsSelect"],{"9d4e":function(e,n,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var i={name:"NeedsSelect",props:{selected:{type:Array,default:[!1,!1,!1,!1,!1,!1,!1,!1,!1]}},data:function(){return{allneeds:this.init()}},methods:{init:function(){for(var e=[],n=this.$Define.UserNeeds,t=0;t<n.length;t++){var i={name:n[t],key:(new Date).getTime()};e.push(i)}return e},isSelected:function(e){return!(e<0||e>=this.selected.length)&&this.selected[e]},onClickOneItem:function(e){var n=this.selected[e];this.selected[e]=!n,this.allneeds[e].key=(new Date).getTime()},onClickButtonOk:function(){var e=this.$Define.FireKeys.NeedsSelectedCallback;this.$fire.fire(e,{status:!0,selected:this.selected})},onClickButtonCancel:function(){var e=this.$Define.FireKeys.NeedsSelectedCallback;this.$fire.fire(e,{status:!1,selected:[]})}}};n.default=i},c326:function(e,n,t){"use strict";t.r(n);var i=t("9d4e"),u=t.n(i);for(var r in i)"default"!==r&&function(e){t.d(n,e,(function(){return i[e]}))}(r);n["default"]=u.a},e16a:function(e,n,t){"use strict";var i=t("e4e6"),u=t.n(i);u.a},e4e6:function(e,n,t){},ec54:function(e,n,t){"use strict";t.d(n,"b",(function(){return u})),t.d(n,"c",(function(){return r})),t.d(n,"a",(function(){return i}));var i={uLine:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-line/u-line")]).then(t.bind(null,"4db2"))},uGap:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-gap/u-gap")]).then(t.bind(null,"5723"))},uGrid:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-grid/u-grid")]).then(t.bind(null,"b0e6"))},uGridItem:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-grid-item/u-grid-item")]).then(t.bind(null,"7ca6"))}},u=function(){var e=this,n=e.$createElement,t=(e._self._c,e.__map(e.allneeds,(function(n,t){var i=e.__get_orig(n),u={width:"250rpx",height:"100rpx"},r=e.isSelected(t);return{$orig:i,a0:u,m0:r}})));e.$mp.data=Object.assign({},{$root:{l0:t}})},r=[]},f681:function(e,n,t){"use strict";t.r(n);var i=t("ec54"),u=t("c326");for(var r in u)"default"!==r&&function(e){t.d(n,e,(function(){return u[e]}))}(r);t("e16a");var o,c=t("f0c5"),l=Object(c["a"])(u["default"],i["b"],i["c"],!1,null,"51857e9f",null,!1,i["a"],o);n["default"]=l.exports}}]); |
||||
|
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ |
||||
|
'components/NeedsSelect/NeedsSelect-create-component', |
||||
|
{ |
||||
|
'components/NeedsSelect/NeedsSelect-create-component':(function(module, exports, __webpack_require__){ |
||||
|
__webpack_require__('543d')['createComponent'](__webpack_require__("f681")) |
||||
|
}) |
||||
|
}, |
||||
|
[['components/NeedsSelect/NeedsSelect-create-component']] |
||||
|
]); |
@ -0,0 +1,9 @@ |
|||||
|
{ |
||||
|
"component": true, |
||||
|
"usingComponents": { |
||||
|
"u-line": "/uni_modules/uview-ui/components/u-line/u-line", |
||||
|
"u-gap": "/uni_modules/uview-ui/components/u-gap/u-gap", |
||||
|
"u-grid": "/uni_modules/uview-ui/components/u-grid/u-grid", |
||||
|
"u-grid-item": "/uni_modules/uview-ui/components/u-grid-item/u-grid-item" |
||||
|
} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<view class="main data-v-51857e9f"><view class="top data-v-51857e9f"><view data-event-opts="{{[['tap',[['onClickButtonCancel',['$event']]]]]}}" class="button_box_left data-v-51857e9f" bindtap="__e"><text class="cancel_text data-v-51857e9f">取消</text></view><view data-event-opts="{{[['tap',[['onClickButtonOk',['$event']]]]]}}" class="button_box_right data-v-51857e9f" bindtap="__e"><text class="ok_text data-v-51857e9f">确定</text></view></view><u-line vue-id="81cd8f64-1" color="#E2E2E2" length="750rpx" customStyle="position: relative;border: 1px solid #E2E2E2;" hairline="{{true}}" margin="99rpx 0 0 0" class="data-v-51857e9f" bind:__l="__l"></u-line><text class="duoxuan_text data-v-51857e9f">支持多选</text><u-gap vue-id="81cd8f64-2" height="40rpx" class="data-v-51857e9f" bind:__l="__l"></u-gap><u-grid vue-id="81cd8f64-3" col="3" class="data-v-51857e9f" bind:__l="__l" vue-slots="{{['default']}}"><block wx:for="{{$root.l0}}" wx:for-item="item" wx:for-index="index" wx:key="key"><u-grid-item vue-id="{{('81cd8f64-4-'+index)+','+('81cd8f64-3')}}" customStyle="{{item.a0}}" data-event-opts="{{[['^click',[['onClickOneItem']]]]}}" bind:click="__e" class="data-v-51857e9f" bind:__l="__l" vue-slots="{{['default']}}"><view class="out_box data-v-51857e9f"><block wx:if="{{item.m0}}"><view class="selected_box data-v-51857e9f"><text class="selected_text data-v-51857e9f">{{item.$orig.name}}</text></view></block><block wx:else><view class="unselected_box data-v-51857e9f"><text class="unselected_text data-v-51857e9f">{{item.$orig.name}}</text></view></block></view></u-grid-item></block></u-grid></view> |
@ -0,0 +1 @@ |
|||||
|
.main.data-v-51857e9f{width:750rpx;height:512rpx;background:#fff;border:1rpx solid #e2e2e2;opacity:1;border-radius:20rpx;position:relative}.top.data-v-51857e9f{position:absolute;height:94rpx;width:100%;top:0}.button_box_left.data-v-51857e9f{position:absolute;left:10rpx;width:100rpx;height:94rpx;top:0}.button_box_right.data-v-51857e9f{position:absolute;right:10rpx;width:100rpx;height:94rpx;top:0}.cancel_text.data-v-51857e9f{width:64rpx;height:45rpx;font-size:32rpx;font-family:PingFang SC;font-weight:400;color:#666;opacity:1;position:absolute;top:25rpx;left:24rpx}.ok_text.data-v-51857e9f{width:64rpx;height:45rpx;font-size:32rpx;font-family:PingFang SC;font-weight:400;color:#41cf41;opacity:1;position:absolute;top:25rpx;right:24rpx}.duoxuan_text.data-v-51857e9f{width:112rpx;height:40rpx;font-size:28rpx;font-weight:400;color:#999;opacity:1;position:relative;left:24rpx;top:30rpx}.unselected_box.data-v-51857e9f{width:180rpx;height:70rpx;background:#fff;border:1rpx solid #e2e2e2;opacity:1;border-radius:10rpx;position:absolute;top:5rpx;align-items:center;text-align:center}.out_box.data-v-51857e9f{width:234rpx;height:80rpx;position:relative;align-items:center}.selected_box.data-v-51857e9f{width:180rpx;height:70rpx;background:#fff;border:1rpx solid #d49b4b;opacity:1;border-radius:10rpx;position:absolute;top:5rpx;align-items:center;text-align:center}.selected_text.data-v-51857e9f{height:70rpx;font-size:28rpx;font-weight:400;color:#d49b4b;opacity:1;position:absolute;vertical-align:middle;line-height:70rpx;display:inline-block}.unselected_text.data-v-51857e9f{height:70rpx;font-size:28rpx;font-weight:400;color:#999;opacity:1;position:absolute;vertical-align:middle;line-height:70rpx;display:inline-block} |
@ -0,0 +1,10 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/UploadSuccess/UploadSuccess"],{"11ee":function(n,t,e){},1377:function(n,t,e){"use strict";var u=e("11ee"),c=e.n(u);c.a},"3bba":function(n,t,e){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var u={name:"UploadSuccess",data:function(){return{}},methods:{onTouch:function(){this.$emit("confirm")}}};t.default=u},"4abf":function(n,t,e){"use strict";e.r(t);var u=e("f5db"),c=e("e5e6");for(var a in c)"default"!==a&&function(n){e.d(t,n,(function(){return c[n]}))}(a);e("1377");var r,o=e("f0c5"),f=Object(o["a"])(c["default"],u["b"],u["c"],!1,null,"ea0cd87a",null,!1,u["a"],r);t["default"]=f.exports},e5e6:function(n,t,e){"use strict";e.r(t);var u=e("3bba"),c=e.n(u);for(var a in u)"default"!==a&&function(n){e.d(t,n,(function(){return u[n]}))}(a);t["default"]=c.a},f5db:function(n,t,e){"use strict";var u;e.d(t,"b",(function(){return c})),e.d(t,"c",(function(){return a})),e.d(t,"a",(function(){return u}));var c=function(){var n=this,t=n.$createElement;n._self._c},a=[]}}]); |
||||
|
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ |
||||
|
'components/UploadSuccess/UploadSuccess-create-component', |
||||
|
{ |
||||
|
'components/UploadSuccess/UploadSuccess-create-component':(function(module, exports, __webpack_require__){ |
||||
|
__webpack_require__('543d')['createComponent'](__webpack_require__("4abf")) |
||||
|
}) |
||||
|
}, |
||||
|
[['components/UploadSuccess/UploadSuccess-create-component']] |
||||
|
]); |
@ -0,0 +1,4 @@ |
|||||
|
{ |
||||
|
"component": true, |
||||
|
"usingComponents": {} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<view class="rect data-v-ea0cd87a"><image class="image data-v-ea0cd87a" src="../../static/images/kehu/tijiao.png" mode="widthFix"></image><text class="title data-v-ea0cd87a">提交信息成功</text><text class="info data-v-ea0cd87a">请等待后台审核</text><view data-event-opts="{{[['tap',[['onTouch',['$event']]]]]}}" class="button data-v-ea0cd87a" bindtap="__e"><text class="textknow data-v-ea0cd87a">知道了</text></view></view> |
@ -0,0 +1 @@ |
|||||
|
.rect.data-v-ea0cd87a{width:558rpx;height:595rpx;background:#fff;opacity:1;border-radius:20rpx}.image.data-v-ea0cd87a{width:292rpx;height:241rpx;position:absolute;left:133rpx;top:60rpx}.title.data-v-ea0cd87a{width:182rpx;height:40rpx;font-size:28rpx;font-weight:700;color:#333;opacity:1;position:absolute;top:293rpx;left:189rpx}.info.data-v-ea0cd87a{width:196rpx;height:40rpx;font-size:28rpx;font-weight:400;color:#333;opacity:1;position:absolute;top:339rpx;left:182rpx}.button.data-v-ea0cd87a{width:351rpx;height:90rpx;background:#fff;border:1rpx solid #d49b4b;opacity:1;border-radius:93rpx;position:absolute;left:104rpx;bottom:100rpx;align-items:center}.textknow.data-v-ea0cd87a{width:108rpx;height:90rpx;font-size:36rpx;font-weight:400;line-height:90rpx;color:#d49b4b;opacity:1} |
@ -0,0 +1,10 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/WalletListItem/WalletListItem"],{"2aac":function(t,e,r){"use strict";var n=r("9fdb"),a=r.n(n);a.a},"528a":function(t,e,r){"use strict";r.r(e);var n=r("b751"),a=r("ece4");for(var u in a)"default"!==u&&function(t){r.d(e,t,(function(){return a[t]}))}(u);r("2aac");var i,o=r("f0c5"),c=Object(o["a"])(a["default"],n["b"],n["c"],!1,null,"07d33677",null,!1,n["a"],i);e["default"]=c.exports},"845a":function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=a(r("6b66"));function a(t){return t&&t.__esModule?t:{default:t}}var u={name:"WalletListItem",props:{record:{type:Object,default:{}},index:{type:Number,default:0}},data:function(){return{}},methods:{getTargetImageOfThisType:function(){var t=this.record.amounttype;return 1==t||2==t?"../../static/images/wallet/zhichu.png":3==t?"../../static/images/wallet/shouru.png":"../../static/images/wallet/pingtai.png"},getTargetTitleOfThisType:function(){return this.record.recorddesc},getTimeOfString:function(){var t=this.record.inserttime;return t<=0&&(t=Date.parse(new Date)/1e3),n.default.formatTime(t)},getMoneyFormatted:function(){var t=n.default.formatMoney(this.record.scorenum/100);return t="¥"+t,t}}};e.default=u},"9fdb":function(t,e,r){},b751:function(t,e,r){"use strict";var n;r.d(e,"b",(function(){return a})),r.d(e,"c",(function(){return u})),r.d(e,"a",(function(){return n}));var a=function(){var t=this,e=t.$createElement,r=(t._self._c,t.getTargetImageOfThisType()),n=t.getTargetTitleOfThisType(),a=t.getTimeOfString(),u=t.record.scorenum>=0?this.getMoneyFormatted():null,i=t.record.scorenum>=0?null:this.getMoneyFormatted();t.$mp.data=Object.assign({},{$root:{m0:r,m1:n,m2:a,g0:u,g1:i}})},u=[]},ece4:function(t,e,r){"use strict";r.r(e);var n=r("845a"),a=r.n(n);for(var u in n)"default"!==u&&function(t){r.d(e,t,(function(){return n[t]}))}(u);e["default"]=a.a}}]); |
||||
|
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ |
||||
|
'components/WalletListItem/WalletListItem-create-component', |
||||
|
{ |
||||
|
'components/WalletListItem/WalletListItem-create-component':(function(module, exports, __webpack_require__){ |
||||
|
__webpack_require__('543d')['createComponent'](__webpack_require__("528a")) |
||||
|
}) |
||||
|
}, |
||||
|
[['components/WalletListItem/WalletListItem-create-component']] |
||||
|
]); |
@ -0,0 +1,4 @@ |
|||||
|
{ |
||||
|
"component": true, |
||||
|
"usingComponents": {} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<view class="dwrapper data-v-07d33677"><view class="title_box data-v-07d33677"><image class="icon data-v-07d33677" src="{{$root.m0}}"></image><text class="title data-v-07d33677">{{$root.m1}}</text><text class="time data-v-07d33677">{{$root.m2}}</text></view><block wx:if="{{record.scorenum>=0}}"><text class="money_earn data-v-07d33677">{{$root.g0}}</text></block><block wx:else><text class="money_used data-v-07d33677">{{$root.g1}}</text></block></view> |
@ -0,0 +1 @@ |
|||||
|
.dwrapper.data-v-07d33677{width:702rpx;height:110rpx;border-radius:20rpx;display:flex;flex-direction:row;justify-content:space-between;align-items:center}.title_box.data-v-07d33677{width:300rpx;height:100%;position:relative;margin-left:20rpx}.icon.data-v-07d33677{width:26rpx;height:26rpx;position:absolute;left:0;top:37rpx}.title.data-v-07d33677{height:40rpx;font-size:28rpx;font-family:PingFang SC;font-weight:700;color:#333;opacity:1;position:absolute;left:38rpx;top:28rpx}.time.data-v-07d33677{height:30rpx;font-size:22rpx;font-family:PingFang SC;font-weight:400;color:#999;opacity:1;position:absolute;left:38rpx;top:70rpx}.money_used.data-v-07d33677{height:40rpx;font-size:28rpx;font-weight:700;color:#333;opacity:1;text-align:right;padding-right:20rpx}.money_earn.data-v-07d33677{height:40rpx;font-size:28rpx;font-weight:700;color:#d49b4b;opacity:1;text-align:right;padding-right:20rpx} |
@ -0,0 +1,10 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/min-picker/min-picker"],{"0368":function(t,e,i){"use strict";i.r(e);var s=i("3664"),n=i.n(s);for(var a in s)"default"!==a&&function(t){i.d(e,t,(function(){return s[t]}))}(a);e["default"]=n.a},3664:function(t,e,i){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i={name:"MinPicker",props:{show:{type:Boolean,default:!1},startTime:{type:Array,default:function(){return[2018,6,5]}},endTime:{type:Number,default:2045},heightRpx:{type:String},currentTime:{type:[Array,null],default:null},showType:{type:Number,default:0}},data:function(){return{years:[],months:[],days:[],dayLength:30,value:[0,0,0],visible:!1,month:"",year:"",flag:!1,indicatorStyle:"height: ".concat(Math.round(t.getSystemInfoSync().screenWidth/7.5),"rpx;")}},mounted:function(){if(this.getYears(),null==this.currentTime){var t=new Date,e=t.getFullYear(),i=t.getMonth()+1;this.month=i,this.year=e,this.day=t.getDate(),this.getMonth(),this.getDaysInOneMonth(e,i),this.value=[this.years.indexOf(this.year),this.months.indexOf(this.month),this.days.indexOf(t.getDate())]}else{var s;this.year=this.currentTime[0],this.getMonth();var n=this.months.indexOf(this.currentTime[1]);console.log(n),this.month=this.currentTime[1],this.getDaysInOneMonth(this.year,this.month),this.day=null!==(s=this.currentTime[2])&&void 0!==s?s:1,this.value=[this.years.indexOf(this.year),n,this.days.indexOf(this.day)]}this.getDays()},methods:{bindChange:function(t){this.getDaysInOneMonth(this.years[t.target.value[0]],this.months[t.target.value[1]]),this.flag=!0;var e=t.detail.value;this.year=this.years[e[0]],this.getMonth(),this.month=this.months[e[1]],this.getDays(),this.day=this.days[e[2]]},getYears:function(){this.years=[];for(var t=this.startTime[0];t<=this.endTime;t++)this.years.push(t)},getMonth:function(){this.months=[];var t=this.year;if(t==this.startTime[0]&&this.startTime[1])for(var e=this.startTime[1];e<=12;e++)this.months.push(e);else for(var i=1;i<=12;i++)this.months.push(i)},getDays:function(){this.days=[];var t=this.year,e=this.month;if(t==this.startTime[0]&&e==this.startTime[1]&&this.startTime[2])for(var i=this.startTime[2];i<=this.dayLength;i++)this.days.push(i);else for(var s=1;s<=this.dayLength;s++)this.days.push(s)},getDaysInOneMonth:function(t,e){e=parseInt(e,10);var i=new Date(t,e,0);return this.dayLength=i.getDate(),this.getDays(),i.getDate()},cacel:function(){this.$emit("cancel",!1)},sure:function(){var t;this.value=[this.years.indexOf(this.year),this.months.indexOf(this.month),this.days.indexOf(null!==(t=this.day)&&void 0!==t?t:1)],this.$emit("cancel",!1),this.$emit("sure",{a:this.year,b:this.month,c:this.day})}}};e.default=i}).call(this,i("543d")["default"])},"4d19":function(t,e,i){"use strict";i.r(e);var s=i("6398"),n=i("0368");for(var a in n)"default"!==a&&function(t){i.d(e,t,(function(){return n[t]}))}(a);i("73f7");var h,r=i("f0c5"),o=Object(r["a"])(n["default"],s["b"],s["c"],!1,null,"66bed4ae",null,!1,s["a"],h);e["default"]=o.exports},6398:function(t,e,i){"use strict";var s;i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return a})),i.d(e,"a",(function(){return s}));var n=function(){var t=this,e=t.$createElement,i=(t._self._c,t.show?t.value.toString():null);t.$mp.data=Object.assign({},{$root:{g0:i}})},a=[]},"6e98":function(t,e,i){},"73f7":function(t,e,i){"use strict";var s=i("6e98"),n=i.n(s);n.a}}]); |
||||
|
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ |
||||
|
'components/min-picker/min-picker-create-component', |
||||
|
{ |
||||
|
'components/min-picker/min-picker-create-component':(function(module, exports, __webpack_require__){ |
||||
|
__webpack_require__('543d')['createComponent'](__webpack_require__("4d19")) |
||||
|
}) |
||||
|
}, |
||||
|
[['components/min-picker/min-picker-create-component']] |
||||
|
]); |
@ -0,0 +1,4 @@ |
|||||
|
{ |
||||
|
"component": true, |
||||
|
"usingComponents": {} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<view class="min-picker data-v-66bed4ae"><block wx:if="{{show}}"><view class="{{['min-popup','data-v-66bed4ae',show?'min-show':'min-hide']}}"><view class="min-content data-v-66bed4ae" style="{{'height:'+(heightRpx+'rpx')+';'}}"><view class="main-top data-v-66bed4ae"><view class="picer-top data-v-66bed4ae"><text data-event-opts="{{[['tap',[['cacel',['$event']]]]]}}" bindtap="__e" class="data-v-66bed4ae">取消</text><text data-event-opts="{{[['tap',[['sure',['$event']]]]]}}" class="sure data-v-66bed4ae" bindtap="__e">确认</text></view></view><picker-view style="height:400rpx;" indicator-style="{{indicatorStyle}}" value="{{value}}" data-event-opts="{{[['change',[['bindChange',['$event']]]]]}}" bindchange="__e" class="data-v-66bed4ae"><picker-view-column class="data-v-66bed4ae"><block wx:for="{{years}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="picker item data-v-66bed4ae">{{item+"年"}}</view></block></picker-view-column><block wx:if="{{showType<=1}}"><picker-view-column class="data-v-66bed4ae"><block wx:for="{{months}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="picker item data-v-66bed4ae">{{item+"月"}}</view></block></picker-view-column></block><block wx:if="{{showType==0}}"><picker-view-column class="data-v-66bed4ae"><block wx:for="{{days}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="picker item data-v-66bed4ae">{{item+"日"}}</view></block></picker-view-column></block></picker-view></view></view></block></view> |
@ -0,0 +1 @@ |
|||||
|
.main-top.data-v-66bed4ae{padding:0 30rpx;border-radius:20rpx}.main-top .picer-top.data-v-66bed4ae{width:100%;height:100rpx;display:flex;flex-direction:row;justify-content:space-between;align-items:center;font-size:30rpx}.main-top .picer-top .sure.data-v-66bed4ae{color:#007aff}.picker.data-v-66bed4ae{text-align:center;line-height:50rpx}.min-popup.data-v-66bed4ae{width:100vw;height:100vh;position:fixed;top:0;left:0;z-index:100}.min-popup.min-hide .min-content.data-v-66bed4ae{-webkit-animation:hide-data-v-66bed4ae .5s linear forwards;animation:hide-data-v-66bed4ae .5s linear forwards}.min-popup.min-hide .min-content-height.data-v-66bed4ae{-webkit-animation:hide-data-v-66bed4ae .5s linear forwards;animation:hide-data-v-66bed4ae .5s linear forwards}.min-popup.min-show .min-content.data-v-66bed4ae{-webkit-animation:show-data-v-66bed4ae .5s linear forwards;animation:show-data-v-66bed4ae .5s linear forwards}.min-popup.min-show .min-content-height.data-v-66bed4ae{-webkit-animation:show-data-v-66bed4ae .5s linear forwards;animation:show-data-v-66bed4ae .5s linear forwards}.min-popup .min-content.data-v-66bed4ae{width:100%;height:800rpx;background:#fff;position:absolute;left:0;bottom:0;z-index:9999;overflow:hidden;border-radius:20rpx 20rpx 0 0}@-webkit-keyframes hide-data-v-66bed4ae{100%{-webkit-transform:translateY(100%);transform:translateY(100%)}0%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes hide-data-v-66bed4ae{100%{-webkit-transform:translateY(100%);transform:translateY(100%)}0%{-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes show-data-v-66bed4ae{0%{-webkit-transform:translateY(100%);transform:translateY(100%)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes show-data-v-66bed4ae{0%{-webkit-transform:translateY(100%);transform:translateY(100%)}100%{-webkit-transform:translateY(0);transform:translateY(0)}} |
@ -0,0 +1,10 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/pick-regions/pick-regions"],{"15b3":function(t,r,i){"use strict";function n(t,r){return c(t)||l(t,r)||a(t,r)||e()}function e(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function a(t,r){if(t){if("string"===typeof t)return u(t,r);var i=Object.prototype.toString.call(t).slice(8,-1);return"Object"===i&&t.constructor&&(i=t.constructor.name),"Map"===i||"Set"===i?Array.from(t):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?u(t,r):void 0}}function u(t,r){(null==r||r>t.length)&&(r=t.length);for(var i=0,n=new Array(r);i<r;i++)n[i]=t[i];return n}function l(t,r){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(t)){var i=[],n=!0,e=!1,a=void 0;try{for(var u,l=t[Symbol.iterator]();!(n=(u=l.next()).done);n=!0)if(i.push(u.value),r&&i.length===r)break}catch(c){e=!0,a=c}finally{try{n||null==l["return"]||l["return"]()}finally{if(e)throw a}}return i}}function c(t){if(Array.isArray(t))return t}Object.defineProperty(r,"__esModule",{value:!0}),r.default=void 0;var o=i("0529"),s={props:{defaultRegions:{type:Array,default:function(){return[]}},defaultRegionCode:{type:String},defaultRegion:[String,Array]},data:function(){return{cityArr:o[0].childs,districtArr:o[0].childs[0].childs,multiIndex:[0,0,0],isInitMultiArray:!0}},watch:{defaultRegion:{handler:function(t,r){Array.isArray(t)?(r=r||[],t.join("")!==r.join("")&&this.handleDefaultRegion(t)):t&&6==t.length?this.handleDefaultRegion(t):console.warn("defaultRegion非有效格式")},immediate:!0}},computed:{multiArray:function(){return this.pickedArr.map((function(t){return t.map((function(t){return t.name}))}))},pickedArr:function(){return this.isInitMultiArray?[o,o[0].childs,o[0].childs[0].childs]:[o,this.cityArr,this.districtArr]}},methods:{handleColumnChange:function(t){this.isInitMultiArray=!1;var r=this,i=t.detail.column,n=t.detail.value;r.multiIndex[i]=n;try{switch(i){case 0:if(0==o[r.multiIndex[0]].childs.length){r.cityArr=r.districtArr=[o[r.multiIndex[0]]];break}r.cityArr=o[r.multiIndex[0]].childs,r.districtArr=o[r.multiIndex[0]].childs[r.multiIndex[1]].childs;break;case 1:r.districtArr=o[r.multiIndex[0]].childs[r.multiIndex[1]].childs;break;case 2:break}}catch(t){r.districtArr=o[r.multiIndex[0]].childs[0].childs}},handleValueChange:function(t){var r=n(t.detail.value,3),i=r[0],e=r[1],a=r[2],u=n(this.pickedArr,3),l=u[0],c=u[1],o=u[2],s=[l[i],c[e],o[a]];this.$emit("getRegion",s)},handleDefaultRegion:function(t){var r=!Array.isArray(t);this.isInitMultiArray=!1;for(var i=o,n=0;n<3;n++)for(var e=0;e<i.length;e++){var a=r?i[e].code==t.slice(0,2*(n+1)):i[e].name.includes(t[n]);if(a){i=i[e].childs,0==n?this.cityArr=i:1==n&&(this.districtArr=i),this.$set(this.multiIndex,n,e);break}0==n&&e==i.length-1&&(this.isInitMultiArray=!0)}}}};r.default=s},5905:function(t,r,i){"use strict";var n;i.d(r,"b",(function(){return e})),i.d(r,"c",(function(){return a})),i.d(r,"a",(function(){return n}));var e=function(){var t=this,r=t.$createElement;t._self._c},a=[]},c403:function(t,r,i){"use strict";i.r(r);var n=i("15b3"),e=i.n(n);for(var a in n)"default"!==a&&function(t){i.d(r,t,(function(){return n[t]}))}(a);r["default"]=e.a},d93e:function(t,r,i){"use strict";i.r(r);var n=i("5905"),e=i("c403");for(var a in e)"default"!==a&&function(t){i.d(r,t,(function(){return e[t]}))}(a);var u,l=i("f0c5"),c=Object(l["a"])(e["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],u);r["default"]=c.exports}}]); |
||||
|
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ |
||||
|
'components/pick-regions/pick-regions-create-component', |
||||
|
{ |
||||
|
'components/pick-regions/pick-regions-create-component':(function(module, exports, __webpack_require__){ |
||||
|
__webpack_require__('543d')['createComponent'](__webpack_require__("d93e")) |
||||
|
}) |
||||
|
}, |
||||
|
[['components/pick-regions/pick-regions-create-component']] |
||||
|
]); |
@ -0,0 +1,4 @@ |
|||||
|
{ |
||||
|
"component": true, |
||||
|
"usingComponents": {} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<picker mode="multiSelector" value="{{multiIndex}}" range="{{multiArray}}" data-event-opts="{{[['change',[['handleValueChange',['$event']]]],['columnchange',[['handleColumnChange',['$event']]]]]}}" bindchange="__e" bindcolumnchange="__e"><slot></slot></picker> |
File diff suppressed because one or more lines are too long
@ -0,0 +1,14 @@ |
|||||
|
{ |
||||
|
"navigationBarTitleText": "客户新增", |
||||
|
"enablePullDownRefresh": false, |
||||
|
"usingComponents": { |
||||
|
"u-navbar": "/uni_modules/uview-ui/components/u-navbar/u-navbar", |
||||
|
"u-form": "/uni_modules/uview-ui/components/u-form/u-form", |
||||
|
"u-form-item": "/uni_modules/uview-ui/components/u-form-item/u-form-item", |
||||
|
"u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", |
||||
|
"pick-regions": "/components/pick-regions/pick-regions", |
||||
|
"u-gap": "/uni_modules/uview-ui/components/u-gap/u-gap", |
||||
|
"u-popup": "/uni_modules/uview-ui/components/u-popup/u-popup", |
||||
|
"needs-select": "/components/NeedsSelect/NeedsSelect" |
||||
|
} |
||||
|
} |
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@ |
|||||
|
.main_background.data-v-269ba32a{opacity:1;position:relative;margin:0 auto;left:0;top:0;bottom:0;right:0;background-color:#f6f6f6}.top.data-v-269ba32a{width:750rpx;height:424rpx;position:relative}.top_banner.data-v-269ba32a{position:relative;left:0;top:0;width:750rpx;height:424rpx}.body.data-v-269ba32a{width:702rpx;height:1140rpx;position:relative;left:24rpx;right:24rpx;top:-129rpx;background:#fff;opacity:1;border-radius:20rpx}.u-form-body.data-v-269ba32a{position:absolute;width:662rpx;top:70rpx;left:20rpx;right:20rpx;height:1060rpx}.title_text.data-v-269ba32a{width:192rpx;font-size:32rpx;font-weight:700;color:#333;opacity:1;position:absolute;left:38rpx;top:30rpx}.form_input.data-v-269ba32a{width:100%;height:90rpx;text-align:right;font-size:28rpx;font-weight:400;color:#333}.form_input_textarea.data-v-269ba32a{width:100%;height:168rpx;text-align:left;font-size:28rpx;font-weight:400;color:#333}.form_holder.data-v-269ba32a{width:100%;height:90rpx;text-align:right;font-size:24rpx;font-weight:400;color:#999;margin-right:10rpx}.form_label_style.data-v-269ba32a{height:37rpx;font-size:26rpx;font-weight:400;color:#666;opacity:1}.more_info_box.data-v-269ba32a{width:662rpx;height:166rpx;background:#fff;border:1rpx solid #e2e2e2;opacity:1;border-radius:12rpx}.comfirm_button.data-v-269ba32a{width:702rpx;height:90rpx;background:#d49b4b;opacity:1;border-radius:93rpx;position:relative;left:24rpx;right:24rpx;top:-100rpx}.text_comfirm.data-v-269ba32a{width:72rpx;height:50rpx;font-size:36rpx;font-family:PingFang SC;font-weight:400;color:#fff;opacity:1;position:absolute;top:20rpx;left:315rpx} |
@ -0,0 +1 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/BusinessStyle/BusinessStyle"],{"07b7":function(e,n,t){"use strict";(function(e){t("d6ad");i(t("66fd"));var n=i(t("6d43"));function i(e){return e&&e.__esModule?e:{default:e}}wx.__webpack_require_UNI_MP_PLUGIN__=t,e(n.default)}).call(this,t("543d")["createPage"])},"11f6":function(e,n,t){},3916:function(e,n,t){"use strict";(function(e){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var i=t("7f93"),u=a(t("0145"));function a(e){return e&&e.__esModule?e:{default:e}}var o=getApp().globalData.mainPageData,r=getApp().globalData.Define,s={onLoad:function(n){var t,a=this;this.index=null!==(t=Number(n.index))&&void 0!==t?t:0;var s=o.isMoreBusinessStyleGot,l="pages/newsmorebrandstyle";1==this.index&&(l="pages/newsmorebusdyna",s=o.isMoreBusinessDynamicGot),s||(e.showLoading({}),(0,i.post)(l,{pagecount:100,pageindex:1}).then((function(n){e.hideLoading();var t=r.onNetMessage(n);if(t){for(var i=[],s=t.morenews,l=0;l<s.length;l++){var d=s[l],c=new u.default;for(var f in d)c[f]=d[f];i.push(c)}0==a.index?(o.brandstyle=i,o.isMoreBusinessStyleGot=!0):(o.busdyna=i,o.isMoreBusinessDynamicGot=!0)}})))},data:function(){return{index:0,mainPageData:o}},methods:{getTitle:function(){return 0==this.index?"品牌风采":"业务动态"},onBackTouched:function(){e.navigateBack({})},getItemsToShow:function(){return 0==this.index?this.mainPageData.brandstyle:this.mainPageData.busdyna},onTouchOneItem:function(n){var t=this.getItemsToShow(),i=t[n];i&&(getApp().globalData.showingSkipData=i,e.navigateTo({url:"/pages/SkipView/SkipView"}))},onChangeTime:function(e){return this.$utils.formatTime(e)}}};n.default=s}).call(this,t("543d")["default"])},"6d43":function(e,n,t){"use strict";t.r(n);var i=t("b27d"),u=t("b11d");for(var a in u)"default"!==a&&function(e){t.d(n,e,(function(){return u[e]}))}(a);t("f1d2");var o,r=t("f0c5"),s=Object(r["a"])(u["default"],i["b"],i["c"],!1,null,"0fa38906",null,!1,i["a"],o);n["default"]=s.exports},b11d:function(e,n,t){"use strict";t.r(n);var i=t("3916"),u=t.n(i);for(var a in i)"default"!==a&&function(e){t.d(n,e,(function(){return i[e]}))}(a);n["default"]=u.a},b27d:function(e,n,t){"use strict";t.d(n,"b",(function(){return u})),t.d(n,"c",(function(){return a})),t.d(n,"a",(function(){return i}));var i={uNavbar:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-navbar/u-navbar")]).then(t.bind(null,"17d2"))},uList:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-list/u-list")]).then(t.bind(null,"971c"))},uListItem:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-list-item/u-list-item")]).then(t.bind(null,"fdc8"))},uLine:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-line/u-line")]).then(t.bind(null,"4db2"))}},u=function(){var e=this,n=e.$createElement,t=(e._self._c,e.getTitle()),i=e.__map(e.getItemsToShow(),(function(n,t){var i=e.__get_orig(n),u=e.onChangeTime(n.inserttime);return{$orig:i,m1:u}}));e._isMounted||(e.e0=function(n,t){var i=arguments[arguments.length-1].currentTarget.dataset,u=i.eventParams||i["event-params"];t=u.index;return e.onTouchOneItem(t)}),e.$mp.data=Object.assign({},{$root:{m0:t,l0:i}})},a=[]},f1d2:function(e,n,t){"use strict";var i=t("11f6"),u=t.n(i);u.a}},[["07b7","common/runtime","common/vendor"]]]); |
@ -0,0 +1,10 @@ |
|||||
|
{ |
||||
|
"navigationBarTitleText": "", |
||||
|
"enablePullDownRefresh": false, |
||||
|
"usingComponents": { |
||||
|
"u-navbar": "/uni_modules/uview-ui/components/u-navbar/u-navbar", |
||||
|
"u-list": "/uni_modules/uview-ui/components/u-list/u-list", |
||||
|
"u-list-item": "/uni_modules/uview-ui/components/u-list-item/u-list-item", |
||||
|
"u-line": "/uni_modules/uview-ui/components/u-line/u-line" |
||||
|
} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<view class="main data-v-0fa38906"><view class="back data-v-0fa38906"></view><u-navbar vue-id="9266b048-1" title="{{$root.m0}}" safeAreaInsetTop="{{true}}" fixed="{{true}}" bgColor="#FFFFFF" placeholder="{{true}}" data-event-opts="{{[['^leftClick',[['onBackTouched']]]]}}" bind:leftClick="__e" class="data-v-0fa38906" bind:__l="__l"></u-navbar><view style="position:relative;width:702rpx;height:1360rpx;left:24rpx;top:24rpx;border-radius:20rpx;" class="data-v-0fa38906"><u-list vue-id="9266b048-2" preLoadScreen="0" height="1360rpx" class="data-v-0fa38906" bind:__l="__l" vue-slots="{{['default']}}"><block wx:for="{{$root.l0}}" wx:for-item="item" wx:for-index="index" wx:key="index"><u-list-item vue-id="{{('9266b048-3-'+index)+','+('9266b048-2')}}" class="data-v-0fa38906" bind:__l="__l" vue-slots="{{['default']}}"><view data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" data-event-params="{{({index})}}" class="rowItem data-v-0fa38906" bindtap="__e"><text class="itemTitle data-v-0fa38906">{{item.$orig.title}}</text><text class="intro data-v-0fa38906">{{item.$orig.titledesc}}</text><text class="time data-v-0fa38906">{{item.m1}}</text><image class="itemImage data-v-0fa38906" src="{{item.$orig.picurl}}" mode="widthFix"></image><u-line vue-id="{{('9266b048-4-'+index)+','+('9266b048-3-'+index)}}" color="#E2E2E2" length="662rpx" customStyle="position: absolute;left: 20rpx;border: 1px solid #E2E2E2;" hairline="{{true}}" margin="156rpx 0 0 0" class="data-v-0fa38906" bind:__l="__l"></u-line></view></u-list-item></block></u-list></view></view> |
@ -0,0 +1 @@ |
|||||
|
.rowItem.data-v-0fa38906{width:702rpx;height:157rpx;position:relative;border-radius:20rpx}.itemTitle.data-v-0fa38906{width:471rpx;font-size:26rpx;font-weight:400;color:#333;opacity:1;position:absolute;left:20rpx;top:24rpx;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.intro.data-v-0fa38906{width:471rpx;font-size:24rpx;font-weight:400;color:#333;opacity:1;position:absolute;left:20rpx;bottom:55rpx;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.time.data-v-0fa38906{width:212rpx;font-size:20rpx;font-weight:400;color:#999;opacity:1;position:absolute;left:20rpx;bottom:12rpx;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.itemImage.data-v-0fa38906{width:192rpx;height:109rpx;position:absolute;top:30rpx;right:20rpx} |
File diff suppressed because one or more lines are too long
@ -0,0 +1,14 @@ |
|||||
|
{ |
||||
|
"navigationBarTitleText": "合作申请", |
||||
|
"enablePullDownRefresh": false, |
||||
|
"usingComponents": { |
||||
|
"u-navbar": "/uni_modules/uview-ui/components/u-navbar/u-navbar", |
||||
|
"u-form": "/uni_modules/uview-ui/components/u-form/u-form", |
||||
|
"u-form-item": "/uni_modules/uview-ui/components/u-form-item/u-form-item", |
||||
|
"u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", |
||||
|
"pick-regions": "/components/pick-regions/pick-regions", |
||||
|
"u-parse": "/uni_modules/uview-ui/components/u-parse/u-parse", |
||||
|
"u-popup": "/uni_modules/uview-ui/components/u-popup/u-popup", |
||||
|
"upload-success": "/components/UploadSuccess/UploadSuccess" |
||||
|
} |
||||
|
} |
File diff suppressed because one or more lines are too long
@ -0,0 +1,2 @@ |
|||||
|
button.data-v-1918fba9::after{border:none;padding:0}.body.data-v-1918fba9{width:702rpx;height:1080rpx;position:relative;left:24rpx;right:24rpx;top:295rpx;background:#fff;opacity:1;border-radius:20rpx}.title_text.data-v-1918fba9{font-size:32rpx;font-weight:700;color:#333;opacity:1;margin-left:10rpx}.u-form-body.data-v-1918fba9{position:relative;width:662rpx;left:20rpx;right:20rpx;height:840rpx;border-radius:20rpx}.form_input.data-v-1918fba9{width:100%;height:90rpx;text-align:right;font-size:28rpx;font-weight:400;color:#333}.form_holder.data-v-1918fba9{width:100%;height:90rpx;text-align:right;font-size:24rpx;font-weight:400;color:#999;margin-right:10rpx}.form_label_style.data-v-1918fba9{height:37rpx;font-size:26rpx;font-weight:400;color:#666;opacity:1}r |
||||
|
.attentionText.data-v-1918fba9{width:104rpx;height:37rpx;font-size:26rpx;font-weight:400;color:#666;opacity:1}.attentionInfo.data-v-1918fba9{width:648rpx;font-size:24rpx;font-weight:400;color:#999;opacity:1;height:auto}.label.data-v-1918fba9{text-decoration:underline;color:#39b54a;font-size:26rpx;font-weight:400}.checkboxgroup.data-v-1918fba9{width:662rpx;height:100rpx;position:relative;top:10rpx;display:flex;align-items:center;flex-direction:row;justify-content:flex-start}.button.data-v-1918fba9{width:702rpx;height:90rpx;background:#d49b4b;opacity:1;border-radius:93rpx;position:absolute;font-size:36rpx;font-weight:400;color:#fff;left:24rpx;bottom:50rpx}.phone_get_button.data-v-1918fba9{width:600rpx;height:110rpx;background-color:#fff;font-size:28rpx;color:#999;display:flex;justify-content:flex-end;align-items:center;border:none}.form_value.data-v-1918fba9{width:550rpx;text-align:right;font-size:28rpx;font-weight:400;color:#333;opacity:1}.form_box.data-v-1918fba9{width:662rpx;height:110rpx;display:flex;flex-direction:row;align-items:center;justify-content:space-between}.form_tile_title.data-v-1918fba9{width:170rpx;height:37rpx;font-size:26rpx;font-weight:500;color:#333} |
@ -0,0 +1 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/CustomerService/CustomerService"],{"1c7e":function(n,e,u){"use strict";(function(n){u("d6ad");t(u("66fd"));var e=t(u("5627"));function t(n){return n&&n.__esModule?n:{default:n}}wx.__webpack_require_UNI_MP_PLUGIN__=u,n(e.default)}).call(this,u("543d")["createPage"])},4350:function(n,e,u){},5627:function(n,e,u){"use strict";u.r(e);var t=u("9c7a"),o=u("776d");for(var r in o)"default"!==r&&function(n){u.d(e,n,(function(){return o[n]}))}(r);u("c177");var c,a=u("f0c5"),i=Object(a["a"])(o["default"],t["b"],t["c"],!1,null,"52926368",null,!1,t["a"],c);e["default"]=i.exports},"776d":function(n,e,u){"use strict";u.r(e);var t=u("e130"),o=u.n(t);for(var r in t)"default"!==r&&function(n){u.d(e,n,(function(){return t[n]}))}(r);e["default"]=o.a},"9c7a":function(n,e,u){"use strict";u.d(e,"b",(function(){return o})),u.d(e,"c",(function(){return r})),u.d(e,"a",(function(){return t}));var t={uNavbar:function(){return Promise.all([u.e("common/vendor"),u.e("uni_modules/uview-ui/components/u-navbar/u-navbar")]).then(u.bind(null,"17d2"))},uGap:function(){return Promise.all([u.e("common/vendor"),u.e("uni_modules/uview-ui/components/u-gap/u-gap")]).then(u.bind(null,"5723"))},uText:function(){return Promise.all([u.e("common/vendor"),u.e("uni_modules/uview-ui/components/u-text/u-text")]).then(u.bind(null,"a316"))}},o=function(){var n=this,e=n.$createElement;n._self._c},r=[]},c177:function(n,e,u){"use strict";var t=u("4350"),o=u.n(t);o.a},e130:function(n,e,u){"use strict";(function(n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u={data:function(){return{}},methods:{onBackTouched:function(){n.navigateBack({})}}};e.default=u}).call(this,u("543d")["default"])}},[["1c7e","common/runtime","common/vendor"]]]); |
@ -0,0 +1,9 @@ |
|||||
|
{ |
||||
|
"navigationBarTitleText": "", |
||||
|
"enablePullDownRefresh": false, |
||||
|
"usingComponents": { |
||||
|
"u-navbar": "/uni_modules/uview-ui/components/u-navbar/u-navbar", |
||||
|
"u-gap": "/uni_modules/uview-ui/components/u-gap/u-gap", |
||||
|
"u-text": "/uni_modules/uview-ui/components/u-text/u-text" |
||||
|
} |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<view class="main data-v-52926368"><view class="back data-v-52926368"></view><u-navbar vue-id="351e0510-1" title="官方客服" safeAreaInsetTop="{{true}}" fixed="{{true}}" bgColor="#FFFFFF" placeholder="{{true}}" data-event-opts="{{[['^leftClick',[['onBackTouched']]]]}}" bind:leftClick="__e" class="data-v-52926368" bind:__l="__l"></u-navbar><view class="body data-v-52926368"><text class="data-v-52926368">请搜索并关注公众号:兔讯科技</text><u-gap vue-id="351e0510-2" height="24rpx" class="data-v-52926368" bind:__l="__l"></u-gap><text class="data-v-52926368">或扫描下方二维码进行关注</text><u-gap vue-id="351e0510-3" height="24rpx" class="data-v-52926368" bind:__l="__l"></u-gap><image src="../../static/images/gongzhonghao.jpg" mode="widthFix" class="data-v-52926368"></image><u-gap vue-id="351e0510-4" height="24rpx" class="data-v-52926368" bind:__l="__l"></u-gap><text class="data-v-52926368">或联系下方电话号码</text><u-gap vue-id="351e0510-5" height="24rpx" class="data-v-52926368" bind:__l="__l"></u-gap><text class="data-v-52926368">400-880-8800</text><u-gap vue-id="351e0510-6" height="24rpx" class="data-v-52926368" bind:__l="__l"></u-gap><u-text vue-id="351e0510-7" mode="link" text="兔迅科技官网" href="http://www.xiguadianjing.com" class="data-v-52926368" bind:__l="__l"></u-text><u-gap vue-id="351e0510-8" height="24rpx" class="data-v-52926368" bind:__l="__l"></u-gap></view></view> |
@ -0,0 +1 @@ |
|||||
|
.body.data-v-52926368{width:702rpx;height:auto;border-radius:20rpx;position:relative;left:24rpx;top:24rpx;background-color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:flex-start} |
@ -0,0 +1 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/HelpView/HelpView"],{"39f7":function(n,e,t){},"40d1":function(n,e,t){"use strict";(function(n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=t("7f93"),u=i(t("0145"));function i(n){return n&&n.__esModule?n:{default:n}}var a=function(){t.e("components/HelpItem/HelpItem").then(function(){return resolve(t("6713"))}.bind(null,t)).catch(t.oe)},r=getApp().globalData.Define,c=getApp().globalData.mainPageData,l={components:{HelpItem:a},onLoad:function(){var n=this;c.isMoreQuestionGot||(0,o.post)("pages/comprobmore",{pagecount:100,pageindex:1}).then((function(e){var t=r.onNetMessage(e);if(t){c.isMoreQuestionGot=!0,n.question=[],console.log("帮助界面收到了消息:",t);for(var o=t.moreprob,i=0;i<o.length;i++){var a=o[i],l=new u.default;l.initWithNetData(a),n.question.push(l)}c.question=n.question}}))},data:function(){return{question:c.question}},methods:{onBackTouched:function(){n.navigateBack({})},onTouchThisItem:function(e){var t=this.question[e];console.log("点击了问题:",t),getApp().globalData.showingSkipData=t,n.navigateTo({url:"/pages/SkipView/SkipView"})}}};e.default=l}).call(this,t("543d")["default"])},"825e":function(n,e,t){"use strict";t.d(e,"b",(function(){return u})),t.d(e,"c",(function(){return i})),t.d(e,"a",(function(){return o}));var o={uNavbar:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-navbar/u-navbar")]).then(t.bind(null,"17d2"))},uList:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-list/u-list")]).then(t.bind(null,"971c"))},uListItem:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-list-item/u-list-item")]).then(t.bind(null,"fdc8"))},uIcon:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-icon/u-icon")]).then(t.bind(null,"602e"))},uLine:function(){return Promise.all([t.e("common/vendor"),t.e("uni_modules/uview-ui/components/u-line/u-line")]).then(t.bind(null,"4db2"))}},u=function(){var n=this,e=n.$createElement;n._self._c},i=[]},c490:function(n,e,t){"use strict";t.r(e);var o=t("40d1"),u=t.n(o);for(var i in o)"default"!==i&&function(n){t.d(e,n,(function(){return o[n]}))}(i);e["default"]=u.a},c6a9:function(n,e,t){"use strict";(function(n){t("d6ad");o(t("66fd"));var e=o(t("d5fd"));function o(n){return n&&n.__esModule?n:{default:n}}wx.__webpack_require_UNI_MP_PLUGIN__=t,n(e.default)}).call(this,t("543d")["createPage"])},d5fd:function(n,e,t){"use strict";t.r(e);var o=t("825e"),u=t("c490");for(var i in u)"default"!==i&&function(n){t.d(e,n,(function(){return u[n]}))}(i);t("f45e");var a,r=t("f0c5"),c=Object(r["a"])(u["default"],o["b"],o["c"],!1,null,"f658dd8c",null,!1,o["a"],a);e["default"]=c.exports},f45e:function(n,e,t){"use strict";var o=t("39f7"),u=t.n(o);u.a}},[["c6a9","common/runtime","common/vendor"]]]); |
@ -0,0 +1,12 @@ |
|||||
|
{ |
||||
|
"navigationBarTitleText": "", |
||||
|
"enablePullDownRefresh": false, |
||||
|
"usingComponents": { |
||||
|
"u-navbar": "/uni_modules/uview-ui/components/u-navbar/u-navbar", |
||||
|
"u-list": "/uni_modules/uview-ui/components/u-list/u-list", |
||||
|
"u-list-item": "/uni_modules/uview-ui/components/u-list-item/u-list-item", |
||||
|
"u-icon": "/uni_modules/uview-ui/components/u-icon/u-icon", |
||||
|
"u-line": "/uni_modules/uview-ui/components/u-line/u-line", |
||||
|
"help-item": "/components/HelpItem/HelpItem" |
||||
|
} |
||||
|
} |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue