cjbbdd
3 years ago
164 changed files with 1264 additions and 2575 deletions
@ -0,0 +1,159 @@ |
|||||
|
<!--作用与钱包界面,显示提现,手续费,收入等一行的显示--> |
||||
|
<template> |
||||
|
<view class="dwrapper"> |
||||
|
<view class="title_box"> |
||||
|
<image class="icon" :src="getTargetImageOfThisType()"/> |
||||
|
<text class="title">{{this.getTargetTitleOfThisType()}}</text> |
||||
|
<text class="time">{{this.getTimeOfString()}}</text> |
||||
|
</view> |
||||
|
<text v-if="cashNumber >= 0" class="money_earn">{{this.getMoneyFormatted()}}</text> |
||||
|
<text v-else class="money_used">{{this.getMoneyFormatted()}}</text> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import utils from "@/common/utils.js" |
||||
|
export default { |
||||
|
name:"WalletListItem", |
||||
|
props:{ |
||||
|
/** |
||||
|
* 类型:0->提现,1->提现手续费,2->收入,3->平台维护费 |
||||
|
*/ |
||||
|
dType : { |
||||
|
type:Number, |
||||
|
default:0, |
||||
|
}, |
||||
|
/** |
||||
|
* 产生当前数据的时间,如果不传,默认为-1,会显示‘无具体记录’ |
||||
|
*/ |
||||
|
time : { |
||||
|
type:Number, |
||||
|
default:-1, |
||||
|
}, |
||||
|
/** |
||||
|
* 产生的具体金额,可能为负数,表示扣除 |
||||
|
*/ |
||||
|
cashNumber : { |
||||
|
type:Number, |
||||
|
default:0, |
||||
|
}, |
||||
|
}, |
||||
|
data() { |
||||
|
return { |
||||
|
|
||||
|
}; |
||||
|
}, |
||||
|
methods:{ |
||||
|
/** |
||||
|
* 根据当前类型,返回使用的图片 |
||||
|
*/ |
||||
|
getTargetImageOfThisType(){ |
||||
|
if(this.dType == 0 || this.dType == 1){ |
||||
|
return "../../static/images/wallet/zhichu.png"; |
||||
|
} |
||||
|
if(this.dType == 2){ |
||||
|
return "../../static/images/wallet/shouru.png"; |
||||
|
} |
||||
|
return "../../static/images/wallet/pingtai.png"; |
||||
|
}, |
||||
|
getTargetTitleOfThisType(){ |
||||
|
switch(this.dType){ |
||||
|
case 0: |
||||
|
return "提现"; |
||||
|
case 1: |
||||
|
return "提现手续费"; |
||||
|
case 2: |
||||
|
return "收入"; |
||||
|
case 3: |
||||
|
return "平台维护费"; |
||||
|
default : |
||||
|
return "未知"; |
||||
|
} |
||||
|
}, |
||||
|
getTimeOfString(){ |
||||
|
var nt = this.time; |
||||
|
if(this.time == -1){ |
||||
|
nt = Date.parse(new Date()) / 1000; |
||||
|
} |
||||
|
return utils.formatTime(nt); |
||||
|
}, |
||||
|
///格式化金额 |
||||
|
getMoneyFormatted(){ |
||||
|
var st = utils.formatMoney(this.cashNumber); |
||||
|
st = "¥" + st; |
||||
|
return st; |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss" scoped> |
||||
|
.dwrapper{ |
||||
|
width: 702rpx; |
||||
|
height: 110rpx; |
||||
|
//background-color: #0081FF; |
||||
|
border-radius: 20rpx; |
||||
|
display: flex; |
||||
|
flex-direction: row; |
||||
|
justify-content: space-between; |
||||
|
align-items: center; |
||||
|
} |
||||
|
|
||||
|
.title_box{ |
||||
|
width: 300rpx; |
||||
|
height: 100%; |
||||
|
//background-color: #9000FF; |
||||
|
position: relative; |
||||
|
margin-left: 20rpx; |
||||
|
} |
||||
|
.icon{ |
||||
|
width: 26rpx; |
||||
|
height: 26rpx; |
||||
|
position: absolute; |
||||
|
left: 0; |
||||
|
top: 37rpx; |
||||
|
} |
||||
|
.title{ |
||||
|
height: 40rpx; |
||||
|
font-size: 28rpx; |
||||
|
font-family: PingFang SC; |
||||
|
font-weight: bold; |
||||
|
color: #333333; |
||||
|
opacity: 1; |
||||
|
position: absolute; |
||||
|
left: 38rpx; |
||||
|
top: 28rpx; |
||||
|
} |
||||
|
.time{ |
||||
|
height: 30rpx; |
||||
|
font-size: 22rpx; |
||||
|
font-family: PingFang SC; |
||||
|
font-weight: 400; |
||||
|
color: #999999; |
||||
|
opacity: 1; |
||||
|
position: absolute; |
||||
|
left: 38rpx; |
||||
|
top: 70rpx; |
||||
|
} |
||||
|
///扣费 |
||||
|
.money_used{ |
||||
|
height: 40rpx; |
||||
|
font-size: 28rpx; |
||||
|
font-weight: bold; |
||||
|
color: #333333; |
||||
|
opacity: 1; |
||||
|
text-align: right; |
||||
|
padding-right: 20rpx; |
||||
|
} |
||||
|
///挣钱 |
||||
|
.money_earn{ |
||||
|
height: 40rpx; |
||||
|
font-size: 28rpx; |
||||
|
font-weight: bold; |
||||
|
color: #D49B4B; |
||||
|
opacity: 1; |
||||
|
text-align: right; |
||||
|
padding-right: 20rpx; |
||||
|
} |
||||
|
|
||||
|
</style> |
@ -0,0 +1,162 @@ |
|||||
|
<template> |
||||
|
<view class="main"> |
||||
|
<u-navbar |
||||
|
title="提现" |
||||
|
:safeAreaInsetTop="true" |
||||
|
:fixed="true" |
||||
|
bgColor="#FFFFFF" |
||||
|
:placeholder="true" |
||||
|
@leftClick="onBackTouched" |
||||
|
/> |
||||
|
<view class="top"> |
||||
|
<text class="text_28_unbold">到账银行卡</text> |
||||
|
<view class="bank_box"> |
||||
|
<image class="bank_icon" src="../../static/images/bank/nongye.png"/> |
||||
|
<text class="bank_text">中国xxxx银行(****6969)</text> |
||||
|
<text class="bank_info" style="left: 66rpx;top: 104rpx;">预计两小时到账</text> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="center"> |
||||
|
<text class="text_28_unbold" style="left: 0rpx;top: 30rpx;position: absolute;">提现金额</text> |
||||
|
<text class="money_big" style="position: absolute;left: 24rpx;bottom: 100rpx;">¥</text> |
||||
|
<input :adjust-position="true" |
||||
|
type="number" |
||||
|
value="2000" |
||||
|
placeholder="0.00" |
||||
|
|
||||
|
@blur="onInputEnd" |
||||
|
class="input_money" |
||||
|
></input> |
||||
|
<view style="width: 662rpx;height: 1rpx;border: 1rpx solid #E2E2E2;position: absolute;left: 24rpx;bottom: 90rpx;" /> |
||||
|
<text class="bank_info" style="left: 24rpx;bottom: 38rpx;"> |
||||
|
可提现金额¥5000.00 |
||||
|
</text> |
||||
|
</view> |
||||
|
<button class="button">提现</button> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
data() { |
||||
|
return { |
||||
|
|
||||
|
}; |
||||
|
}, |
||||
|
methods:{ |
||||
|
/** |
||||
|
* 点击了导航上的返回按钮 |
||||
|
*/ |
||||
|
onBackTouched(){ |
||||
|
|
||||
|
}, |
||||
|
/** |
||||
|
* @param {Object} obj 输入框失去焦点 |
||||
|
*/ |
||||
|
onInputEnd(obj){ |
||||
|
|
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss" scoped> |
||||
|
.top{ |
||||
|
width: 750rpx; |
||||
|
height: 202rpx; |
||||
|
//background-color: #1CBBB4; |
||||
|
border-radius: 20rpx; |
||||
|
position: relative; |
||||
|
display: flex; |
||||
|
flex-direction: row; |
||||
|
align-items: center; |
||||
|
justify-content: space-between; |
||||
|
} |
||||
|
.text_28_unbold{ |
||||
|
height: 40rpx; |
||||
|
font-size: 28rpx; |
||||
|
font-weight: 400; |
||||
|
color: #333333; |
||||
|
opacity: 1; |
||||
|
margin-left: 24rpx; |
||||
|
} |
||||
|
|
||||
|
.bank_box{ |
||||
|
width: 550rpx; |
||||
|
height: 202rpx; |
||||
|
//background-color: #2979FF; |
||||
|
border-radius: 20rpx; |
||||
|
margin-right: 24rpx; |
||||
|
position: relative; |
||||
|
} |
||||
|
.bank_text{ |
||||
|
height: 42rpx; |
||||
|
font-size: 30rpx; |
||||
|
font-weight: bold; |
||||
|
color: #333333; |
||||
|
line-height: 42rpx; |
||||
|
opacity: 1; |
||||
|
position: absolute; |
||||
|
left: 66rpx; |
||||
|
top: 64rpx; |
||||
|
} |
||||
|
.bank_info{ |
||||
|
height: 34rpx; |
||||
|
font-size: 24rpx; |
||||
|
font-weight: 400; |
||||
|
line-height: 34rpx; |
||||
|
color: #999999; |
||||
|
opacity: 1; |
||||
|
position: absolute; |
||||
|
} |
||||
|
.bank_icon{ |
||||
|
width: 32rpx; |
||||
|
height: 32rpx; |
||||
|
position: absolute; |
||||
|
left: 24rpx; |
||||
|
top: 69rpx; |
||||
|
} |
||||
|
|
||||
|
.center{ |
||||
|
width: 702rpx; |
||||
|
height: 360rpx; |
||||
|
background: #FFFFFF; |
||||
|
opacity: 1; |
||||
|
border-radius: 20rpx; |
||||
|
position: relative; |
||||
|
left: 24rpx; |
||||
|
top: 20rpx; |
||||
|
} |
||||
|
.money_big{ |
||||
|
height: 92rpx; |
||||
|
font-size: 66rpx; |
||||
|
font-weight: bold; |
||||
|
color: #333333; |
||||
|
opacity: 1; |
||||
|
} |
||||
|
.input_money{ |
||||
|
position: absolute;left: 85rpx; |
||||
|
bottom: 100rpx; |
||||
|
width: 590rpx; |
||||
|
height: 92rpx; |
||||
|
font-size: 66rpx; |
||||
|
font-weight: bold; |
||||
|
color: #333333; |
||||
|
} |
||||
|
.button{ |
||||
|
position: relative; |
||||
|
|
||||
|
top: 50rpx; |
||||
|
width: 702rpx; |
||||
|
height: 90rpx; |
||||
|
display: flex; |
||||
|
flex-direction: row; |
||||
|
justify-content: center; |
||||
|
align-items: center; |
||||
|
border-radius: 93rpx; |
||||
|
background: #D49B4B; |
||||
|
font-size: 36rpx; |
||||
|
color: #FFFFFF; |
||||
|
font-weight: 400; |
||||
|
} |
||||
|
</style> |
@ -0,0 +1,229 @@ |
|||||
|
<!--钱包界面--> |
||||
|
<template> |
||||
|
<view class="main"> |
||||
|
<view class="back" /> |
||||
|
<u-navbar |
||||
|
title="钱包" |
||||
|
:safeAreaInsetTop="true" |
||||
|
:fixed="true" |
||||
|
bgColor="#FFFFFF" |
||||
|
:placeholder="true" |
||||
|
@leftClick="onBackTouched" |
||||
|
/> |
||||
|
<view style="position: relative;top: 10rpx;"> |
||||
|
<image class="top_image" src="../../static/images/wallet/bg_4.png"> |
||||
|
<text class="title_text" style="left: 45rpx;top: 45rpx;">可用金额(元)</text> |
||||
|
<text class="title_text" style="left: 45rpx;top: 193rpx;">入账中的金额(元)</text> |
||||
|
<text class="title_text" style="left: 404rpx;top: 193rpx;">代理商分佣(元)</text> |
||||
|
<text class="money_text" style="left: 45rpx;top: 91rpx;position: absolute;">999,998.00</text> |
||||
|
<text class="money_text" style="left: 45rpx;top: 243rpx;position: absolute;">5000.00</text> |
||||
|
<view class="more_flex_panel"> |
||||
|
<text class="money_text" :key="fenyong">{{fenyong}}</text> |
||||
|
<view style="width: 20rpx;" /> |
||||
|
<image class="more_image" src="../../static/images/more.png" @click="onTouchShowMore"/> |
||||
|
</view> |
||||
|
<button class="tixian_button" lang="zh_CN" type='primary'>提现</button> |
||||
|
</image> |
||||
|
</view> |
||||
|
<u-gap height="20rpx"/> |
||||
|
<view class="body"> |
||||
|
<view class="calender_box" @click="onShowDateSelect" :key="currentTime.toString()"> |
||||
|
<text style="font-weight: bold;left: 20rpx;color: #333333;font-size: 26rpx;">{{year + '年' + month + '月'}}</text> |
||||
|
<view style="width: 20rpx;" /> |
||||
|
<u-icon name="arrow-down" size="32rpx"></u-icon> |
||||
|
</view> |
||||
|
<u-line customStyle="width: 662rpx;height: 1rpx;border: 1px solid #E2E2E2;position: relative;left: 20rpx;"/> |
||||
|
<u-gap height="10rpx"/> |
||||
|
<u-list |
||||
|
:enableFlex="true" |
||||
|
:enableBackToTop="true" |
||||
|
height="900rpx" |
||||
|
> |
||||
|
<u-list-item> |
||||
|
<WalletListItem |
||||
|
cashNumber="-6000" |
||||
|
/> |
||||
|
</u-list-item> |
||||
|
<u-list-item> |
||||
|
<WalletListItem |
||||
|
cashNumber="1000" |
||||
|
dType="2" |
||||
|
/> |
||||
|
</u-list-item> |
||||
|
<u-list-item> |
||||
|
<WalletListItem |
||||
|
cashNumber="-6" |
||||
|
dType="1" |
||||
|
/> |
||||
|
</u-list-item> |
||||
|
<u-list-item> |
||||
|
<WalletListItem |
||||
|
cashNumber="-23" |
||||
|
dType="3" |
||||
|
/> |
||||
|
</u-list-item> |
||||
|
</u-list> |
||||
|
</view> |
||||
|
<min-picker |
||||
|
:startTime="startTime" |
||||
|
:endTime="endTime" |
||||
|
@cancel="onDateSelectCanceled" |
||||
|
@sure="onDateSelectConfirm" |
||||
|
:show="isDateSelectShowing" |
||||
|
heightRpx="500" |
||||
|
:currentTime="currentTime" |
||||
|
showType="1" |
||||
|
></min-picker> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
var currentTime = [2022,1,1]; |
||||
|
import WalletListItem from "@/components/WalletListItem/WalletListItem.vue"; |
||||
|
export default { |
||||
|
components:{ |
||||
|
WalletListItem |
||||
|
}, |
||||
|
mounted() { |
||||
|
this.getCurrentDateSelectTime(); |
||||
|
}, |
||||
|
data() { |
||||
|
return { |
||||
|
fenyong : 0.00, |
||||
|
isDateSelectShowing : false, |
||||
|
startTime : [2021,12,1], |
||||
|
endTime : 2022, |
||||
|
//当前时间:年 |
||||
|
year : '', |
||||
|
//当前时间:月 |
||||
|
month : '', |
||||
|
currentTime, |
||||
|
}; |
||||
|
}, |
||||
|
methods:{ |
||||
|
/** |
||||
|
* 点击了导航上的返回按钮 |
||||
|
*/ |
||||
|
onBackTouched(){ |
||||
|
|
||||
|
}, |
||||
|
///点击了代理商分佣右边的箭头 |
||||
|
onTouchShowMore(){ |
||||
|
var num = this.fenyong; |
||||
|
num = parseFloat(num); |
||||
|
console.log(num); |
||||
|
num = num + 10.52; |
||||
|
num = num.toFixed(2); |
||||
|
this.fenyong = num; |
||||
|
}, |
||||
|
///获取当前时间 |
||||
|
getCurrentDateSelectTime(){ |
||||
|
const time = new Date(); |
||||
|
const year = time.getFullYear(); |
||||
|
const month = time.getMonth() + 1; |
||||
|
this.month = month; |
||||
|
this.year = year; |
||||
|
var ct = [parseInt(this.year),parseInt(this.month),1]; |
||||
|
console.log(ct); |
||||
|
this.currentTime = ct; |
||||
|
return ct; |
||||
|
}, |
||||
|
///现实日期选择器 |
||||
|
onShowDateSelect(){ |
||||
|
this.isDateSelectShowing = true; |
||||
|
}, |
||||
|
onDateSelectConfirm(e){ |
||||
|
console.log(e); |
||||
|
this.year = e.a; |
||||
|
this.month = e.b; |
||||
|
//关闭选择器 |
||||
|
this.isDateSelectShowing = false; |
||||
|
}, |
||||
|
///生日选择器取消了选择 |
||||
|
onDateSelectCanceled(){ |
||||
|
this.isDateSelectShowing = false; |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss" scoped> |
||||
|
.top_image{ |
||||
|
width: 702rpx; |
||||
|
height: 331rpx; |
||||
|
position: relative; |
||||
|
top: 0; |
||||
|
left: 24rpx; |
||||
|
right: 24rpx; |
||||
|
} |
||||
|
|
||||
|
.title_text{ |
||||
|
height: 37rpx; |
||||
|
font-size: 26rpx; |
||||
|
font-weight: 400; |
||||
|
line-height: 37rpx; |
||||
|
color: #FFFFFF; |
||||
|
opacity: 1; |
||||
|
position: absolute; |
||||
|
} |
||||
|
.money_text{ |
||||
|
height: 50rpx; |
||||
|
font-size: 36rpx; |
||||
|
font-weight: bold; |
||||
|
color: #FFFFFF; |
||||
|
opacity: 1; |
||||
|
} |
||||
|
|
||||
|
.more_image{ |
||||
|
width: 24rpx; |
||||
|
height: 24rpx; |
||||
|
} |
||||
|
|
||||
|
.more_flex_panel{ |
||||
|
display: flex; |
||||
|
flex-direction: row; |
||||
|
//flex-wrap: wrap; |
||||
|
//ackground-color: #0081FF; |
||||
|
position: absolute; |
||||
|
left: 404rpx; |
||||
|
top: 243rpx; |
||||
|
width: 310rpx; |
||||
|
height: 45rpx; |
||||
|
align-items: center; |
||||
|
} |
||||
|
.tixian_button{ |
||||
|
width: 130rpx; |
||||
|
height: 50rpx; |
||||
|
background: #FFFFFF; |
||||
|
opacity: 1; |
||||
|
border-radius: 30rpx; |
||||
|
position: absolute; |
||||
|
right: 57rpx; |
||||
|
top: 48rpx; |
||||
|
font-size: 30rpx; |
||||
|
font-weight: 400; |
||||
|
color: #D49B4B; |
||||
|
justify-content: center; |
||||
|
align-items: center; |
||||
|
display: flex; |
||||
|
} |
||||
|
|
||||
|
.body{ |
||||
|
width: 702rpx; |
||||
|
height: auto; |
||||
|
position: relative; |
||||
|
background-color: #FFFFFF; |
||||
|
border-radius: 20rpx; |
||||
|
left: 24rpx; |
||||
|
} |
||||
|
|
||||
|
.calender_box{ |
||||
|
width: 702rpx; |
||||
|
height: 100rpx; |
||||
|
position: relative; |
||||
|
display: flex; |
||||
|
flex-direction:row; |
||||
|
align-items: center; |
||||
|
margin-left: 20rpx; |
||||
|
} |
||||
|
</style> |
After Width: | Height: | Size: 454 B |
After Width: | Height: | Size: 411 B |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 803 B |
After Width: | Height: | Size: 736 B |
After Width: | Height: | Size: 762 B |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@ |
|||||
{"version":3,"sources":[],"names":[],"mappings":"","file":"components/CityPicker/CityPicker.js","sourceRoot":""} |
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@ |
|||||
{"version":3,"sources":["uni-app:///main.js"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;wEAAA,qBACA,sBACA,0D,mDAFmBA,GAAGC,kCAAoCC,EAG1DC,EAAWC,a","file":"pages/UploadSuccess/UploadSuccess.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/UploadSuccess/UploadSuccess.vue'\ncreatePage(Page)"],"sourceRoot":""} |
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,26 +1,2 @@ |
|||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["common/main"],[ |
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["common/main"],{41:function(e,t,n){"use strict";(function(e){n(3);var t=c(n(2)),r=c(n(43)),u=c(n(45)),o=c(n(47)),f=c(n(166)),a=c(n(167)),i=c(n(168));function c(e){return e&&e.__esModule?e:{default:e}}function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function p(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?l(Object(n),!0).forEach((function(t){d(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):l(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function d(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}wx.__webpack_require_UNI_MP_PLUGIN__=n,t.default.prototype.$store=u.default;var s=new a.default;t.default.prototype.$fire=s,t.default.prototype.$Define=i.default,t.default.config.productionTip=!1,r.default.mpType="app",t.default.use(o.default);var b=n(169);t.default.mixin(b),t.default.mixin(f.default);var v=new t.default(p({store:u.default,fire:s},r.default));n(170)(v),e(v).$mount()}).call(this,n(0)["createApp"])},43:function(e,t,n){"use strict";n.r(t);var r=n(7);for(var u in r)"default"!==u&&function(e){n.d(t,e,(function(){return r[e]}))}(u);n(44);var o,f,a,i,c=n(1),l=Object(c["a"])(r["default"],o,f,!1,null,null,null,!1,a,i);l.options.__file="App.vue",t["default"]=l.exports},44:function(e,t,n){"use strict";var r=n(9),u=n.n(r);u.a},7:function(e,t,n){"use strict";n.r(t);var r=n(8),u=n.n(r);for(var o in r)"default"!==o&&function(e){n.d(t,e,(function(){return r[e]}))}(o);t["default"]=u.a},8:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r={onLaunch:function(){},onShow:function(){},onHide:function(){}};t.default=r},9:function(e,t,n){}},[[41,"common/runtime","common/vendor"]]]); |
||||
/*!************************************************!*\ |
|
||||
!*** D:/Uni-App/HBuilderProjects/Test/main.js ***! |
|
||||
\************************************************/ |
|
||||
/*! no static exports found */function(e,t,n){"use strict";(function(e){n(/*! uni-pages */5);var t=c(n(/*! vue */3)),r=c(n(/*! ./App */6)),u=c(n(/*! ./store */12)),o=c(n(/*! @/uni_modules/uview-ui */14)),f=c(n(/*! ./common/mixin */137)),a=c(n(/*! onfire.js */138)),i=c(n(/*! ./common/define.js */139));function c(e){return e&&e.__esModule?e:{default:e}}function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function p(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?l(Object(n),!0).forEach((function(t){d(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):l(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function d(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}wx.__webpack_require_UNI_MP_PLUGIN__=n,t.default.prototype.$store=u.default;var s=new a.default;t.default.prototype.$fire=s,t.default.prototype.$Define=i.default,t.default.config.productionTip=!1,r.default.mpType="app",t.default.use(o.default);var b=n(/*! @/uni_modules/uview-ui/libs/mixin/mpShare.js */140);t.default.mixin(b),t.default.mixin(f.default);var v=new t.default(p({store:u.default,fire:s},r.default));n(/*! ./util/request/index */141)(v),e(v).$mount()}).call(this,n(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */1)["createApp"])},,,,, |
|
||||
/*!************************************************!*\ |
|
||||
!*** D:/Uni-App/HBuilderProjects/Test/App.vue ***! |
|
||||
\************************************************/ |
|
||||
/*! no static exports found */,function(e,t,n){"use strict";n.r(t);var r=n(/*! ./App.vue?vue&type=script&lang=js& */7);for(var u in r)"default"!==u&&function(e){n.d(t,e,(function(){return r[e]}))}(u);n(/*! ./App.vue?vue&type=style&index=0&lang=scss& */9);var o,f,a,i,c=n(/*! ../../../HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */11),l=Object(c["default"])(r["default"],o,f,!1,null,null,null,!1,a,i);l.options.__file="App.vue",t["default"]=l.exports}, |
|
||||
/*!*************************************************************************!*\ |
|
||||
!*** D:/Uni-App/HBuilderProjects/Test/App.vue?vue&type=script&lang=js& ***! |
|
||||
\*************************************************************************/ |
|
||||
/*! no static exports found */function(e,t,n){"use strict";n.r(t);var r=n(/*! -!../../../HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./App.vue?vue&type=script&lang=js& */8),u=n.n(r);for(var o in r)"default"!==o&&function(e){n.d(t,e,(function(){return r[e]}))}(o);t["default"]=u.a}, |
|
||||
/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ |
|
||||
!*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/Uni-App/HBuilderProjects/Test/App.vue?vue&type=script&lang=js& ***! |
|
||||
\********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ |
|
||||
/*! no static exports found */function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r={onLaunch:function(){},onShow:function(){},onHide:function(){}};t.default=r}, |
|
||||
/*!**********************************************************************************!*\ |
|
||||
!*** D:/Uni-App/HBuilderProjects/Test/App.vue?vue&type=style&index=0&lang=scss& ***! |
|
||||
\**********************************************************************************/ |
|
||||
/*! no static exports found */function(e,t,n){"use strict";n.r(t);var r=n(/*! -!../../../HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-2!../../../HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--8-oneOf-1-3!../../../HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/sass-loader/dist/cjs.js??ref--8-oneOf-1-4!../../../HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-5!../../../HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./App.vue?vue&type=style&index=0&lang=scss& */10),u=n.n(r);for(var o in r)"default"!==o&&function(e){n.d(t,e,(function(){return r[e]}))}(o);t["default"]=u.a}, |
|
||||
/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ |
|
||||
!*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-2!./node_modules/postcss-loader/src??ref--8-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/sass-loader/dist/cjs.js??ref--8-oneOf-1-4!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--8-oneOf-1-5!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/Uni-App/HBuilderProjects/Test/App.vue?vue&type=style&index=0&lang=scss& ***! |
|
||||
\**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ |
|
||||
/*! no static exports found */function(e,t,n){}],[[0,"common/runtime","common/vendor"]]]); |
|
||||
//# sourceMappingURL=../../.sourcemap/mp-weixin/common/main.js.map
|
//# sourceMappingURL=../../.sourcemap/mp-weixin/common/main.js.map
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +1 @@ |
|||||
<view class="main_background data-v-e95d59f8"><view class="top data-v-e95d59f8"><image class="top_image data-v-e95d59f8" src="{{top_backgroun_image_src}}" mode="widthFix"></image><view class="top_action_panel data-v-e95d59f8"><block wx:for="{{main_top_action_button_defines}}" wx:for-item="item" wx:for-index="__i0__" wx:key="id"><view class="top_action_item_panal data-v-e95d59f8" style="{{(item.style)}}"><image style="width:79rpx;height:67rpx;position:absolute;right:131rpx;top:37rpx;" src="{{item.icon}}" class="data-v-e95d59f8"></image><u-text vue-id="{{'424ce2fc-1-'+__i0__}}" text="{{item.title}}" bold="{{true}}" size="28rpx" color="#333333" lineHeight="40rpx" margin="123rpx 0 23rpx 0" class="data-v-e95d59f8" bind:__l="__l"></u-text></view></block></view></view><u-gap vue-id="424ce2fc-2" height="58rpx" class="data-v-e95d59f8" bind:__l="__l"></u-gap><view class="project data-v-e95d59f8"><u-text vue-id="424ce2fc-3" text="品牌项目" bold="{{true}}" color="#333333" size="36rpx" class="data-v-e95d59f8" bind:__l="__l"></u-text><u-gap vue-id="424ce2fc-4" height="21rpx" class="data-v-e95d59f8" bind:__l="__l"></u-gap><view style="margin-bottom:20rpx;" class="data-v-e95d59f8"><u-swiper vue-id="424ce2fc-5" list="{{project_swiper_defines}}" keyName="image" showTitle="{{false}}" autoplay="{{true}}" circular="{{true}}" data-event-opts="{{[['^change',[['e0']]]]}}" bind:change="__e" class="data-v-e95d59f8" bind:__l="__l"></u-swiper><u-gap vue-id="424ce2fc-6" height="15rpx" class="data-v-e95d59f8" bind:__l="__l"></u-gap><view class="indicator data-v-e95d59f8"><block wx:for="{{project_swiper_defines}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="{{['indicator__dot','data-v-e95d59f8',index===project_indicator_current&&'indicator__dot__active']}}"></view></block></view></view></view><u-gap vue-id="424ce2fc-7" height="40rpx" class="data-v-e95d59f8" bind:__l="__l"></u-gap><hero-list vue-id="424ce2fc-8" class="data-v-e95d59f8" bind:__l="__l"></hero-list><u-gap vue-id="424ce2fc-9" height="45rpx" class="data-v-e95d59f8" bind:__l="__l"></u-gap><business-dynamics vue-id="424ce2fc-10" class="data-v-e95d59f8" bind:__l="__l"></business-dynamics><u-gap vue-id="424ce2fc-11" height="30rpx" class="data-v-e95d59f8" bind:__l="__l"></u-gap><common-question vue-id="424ce2fc-12" class="data-v-e95d59f8" bind:__l="__l"></common-question><u-gap vue-id="424ce2fc-13" height="75rpx" class="data-v-e95d59f8" bind:__l="__l"></u-gap></view> |
<view class="main_background data-v-e95d59f8"><view class="top data-v-e95d59f8"><image class="top_image data-v-e95d59f8" src="{{top_backgroun_image_src}}" mode="widthFix"></image><view class="top_action_panel data-v-e95d59f8"><view data-event-opts="{{[['tap',[['onTouchTopPanel',[1]]]]]}}" class="top_action_item_panal data-v-e95d59f8" 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-e95d59f8"></image><u-text vue-id="424ce2fc-1" text="成为大富翁" bold="{{true}}" size="28rpx" color="#333333" lineHeight="40rpx" margin="123rpx 0 23rpx 0" class="data-v-e95d59f8" bind:__l="__l"></u-text></view><view data-event-opts="{{[['tap',[['onTouchTopPanel',[2]]]]]}}" class="top_action_item_panal data-v-e95d59f8" 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-e95d59f8"></image><u-text vue-id="424ce2fc-2" text="大富翁区域" bold="{{true}}" size="28rpx" color="#333333" lineHeight="40rpx" margin="123rpx 0 23rpx 0" class="data-v-e95d59f8" bind:__l="__l"></u-text></view></view></view><u-gap vue-id="424ce2fc-3" height="58rpx" class="data-v-e95d59f8" bind:__l="__l"></u-gap><view class="project data-v-e95d59f8"><u-text vue-id="424ce2fc-4" text="品牌项目" bold="{{true}}" color="#333333" size="36rpx" class="data-v-e95d59f8" bind:__l="__l"></u-text><u-gap vue-id="424ce2fc-5" height="21rpx" class="data-v-e95d59f8" bind:__l="__l"></u-gap><view style="margin-bottom:20rpx;" class="data-v-e95d59f8"><u-swiper vue-id="424ce2fc-6" list="{{project_swiper_defines}}" keyName="image" showTitle="{{false}}" autoplay="{{true}}" circular="{{true}}" data-event-opts="{{[['^change',[['e0']]]]}}" bind:change="__e" class="data-v-e95d59f8" bind:__l="__l"></u-swiper><u-gap vue-id="424ce2fc-7" height="15rpx" class="data-v-e95d59f8" bind:__l="__l"></u-gap><view class="indicator data-v-e95d59f8"><block wx:for="{{project_swiper_defines}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="{{['indicator__dot','data-v-e95d59f8',index===project_indicator_current&&'indicator__dot__active']}}"></view></block></view></view></view><u-gap vue-id="424ce2fc-8" height="40rpx" class="data-v-e95d59f8" bind:__l="__l"></u-gap><hero-list vue-id="424ce2fc-9" class="data-v-e95d59f8" bind:__l="__l"></hero-list><u-gap vue-id="424ce2fc-10" height="45rpx" class="data-v-e95d59f8" bind:__l="__l"></u-gap><business-dynamics vue-id="424ce2fc-11" class="data-v-e95d59f8" bind:__l="__l"></business-dynamics><u-gap vue-id="424ce2fc-12" height="30rpx" class="data-v-e95d59f8" bind:__l="__l"></u-gap><common-question vue-id="424ce2fc-13" class="data-v-e95d59f8" bind:__l="__l"></common-question><u-gap vue-id="424ce2fc-14" height="75rpx" class="data-v-e95d59f8" bind:__l="__l"></u-gap></view> |
@ -1 +1 @@ |
|||||
<view class="main data-v-e0833338"><view class="back data-v-e0833338"></view><image class="top data-v-e0833338" 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-e0833338" bind:__l="__l"></u-navbar><view class="top_head_area data-v-e0833338"><view class="head_background data-v-e0833338"><image class="head data-v-e0833338" src="../../static/images/wode/touxaingkuang.png" mode="widthFix"></image></view><text class="nickname data-v-e0833338">登录 | 注册</text></view><view class="walletBox data-v-e0833338"><text class="wallet_title data-v-e0833338">钱包</text><image class="eye_close data-v-e0833338" src="../../static/images/wode/bukejian.png" mode="widthFix"></image><view class="wallet_number_box data-v-e0833338"><text class="wallet_number data-v-e0833338">******</text></view><u-icon vue-id="680ee722-2" name="arrow-right" customStyle="width: 14rpx;height: 25rpx;position: absolute;top: 53rpx;right: 30rpx;" class="data-v-e0833338" bind:__l="__l"></u-icon></view><view class="body data-v-e0833338"><block wx:for="{{items}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="item data-v-e0833338"><image class="item_icon data-v-e0833338" src="{{item.icon}}"></image><view class="item_title_box data-v-e0833338"><text class="item_title data-v-e0833338">{{item.title}}</text><block wx:if="{{item.message!=null}}"><text class="item_message data-v-e0833338">{{item.message}}</text></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-e0833338" bind:__l="__l"></u-icon></view></block></view></view> |
<view class="main data-v-e0833338"><view class="back data-v-e0833338"></view><image class="top data-v-e0833338" 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-e0833338" bind:__l="__l"></u-navbar><view class="top_head_area data-v-e0833338"><view class="head_background data-v-e0833338"><image class="head data-v-e0833338" src="../../static/images/wode/touxaingkuang.png" mode="widthFix"></image></view><text data-event-opts="{{[['tap',[['onTouchToLogin',['$event']]]]]}}" class="nickname data-v-e0833338" bindtap="__e">登录 | 注册</text></view><view class="walletBox data-v-e0833338"><text class="wallet_title data-v-e0833338">钱包</text><image class="eye_close data-v-e0833338" src="../../static/images/wode/bukejian.png" mode="widthFix"></image><view class="wallet_number_box data-v-e0833338"><text class="wallet_number data-v-e0833338">******</text></view><u-icon vue-id="680ee722-2" name="arrow-right" customStyle="width: 14rpx;height: 25rpx;position: absolute;top: 53rpx;right: 30rpx;" class="data-v-e0833338" bind:__l="__l"></u-icon></view><view class="body data-v-e0833338"><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-e0833338" bindtap="__e"><image class="item_icon data-v-e0833338" src="{{item.icon}}"></image><view class="item_title_box data-v-e0833338"><text class="item_title data-v-e0833338">{{item.title}}</text><block wx:if="{{item.message!=null}}"><text class="item_message data-v-e0833338">{{item.message}}</text></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-e0833338" bind:__l="__l"></u-icon></view></block></view></view> |
@ -1 +1 @@ |
|||||
<view class="top data-v-0f096584"><image class="top_banner data-v-0f096584" src="{{background}}"></image><u-navbar vue-id="5bb867fc-1" title="{{title}}" safeAreaInsetTop="{{true}}" fixed="{{true}}" bgColor="#FFFFFF00" class="data-v-0f096584" bind:__l="__l"></u-navbar></view> |
<view class="top data-v-0f096584"><image class="top_banner data-v-0f096584" src="{{background}}"></image><u-navbar vue-id="5bb867fc-1" title="{{title}}" safeAreaInsetTop="{{true}}" fixed="{{true}}" bgColor="#FFFFFF00" data-event-opts="{{[['^leftClick',[['onTouchBack']]]]}}" bind:leftClick="__e" class="data-v-0f096584" bind:__l="__l"></u-navbar></view> |
@ -0,0 +1,11 @@ |
|||||
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/WalletListItem/WalletListItem"],{481:function(t,e,n){"use strict";n.r(e);var a=n(486),r=n(482);for(var i in r)"default"!==i&&function(t){n.d(e,t,(function(){return r[t]}))}(i);n(485);var u,s=n(1),o=Object(s["a"])(r["default"],a["b"],a["c"],!1,null,"ac4ebbf8",null,!1,a["a"],u);o.options.__file="components/WalletListItem/WalletListItem.vue",e["default"]=o.exports},482:function(t,e,n){"use strict";n.r(e);var a=n(483),r=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=r.a},483:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=r(n(199));function r(t){return t&&t.__esModule?t:{default:t}}var i={name:"WalletListItem",props:{dType:{type:Number,default:0},time:{type:Number,default:-1},cashNumber:{type:Number,default:0}},data:function(){return{}},methods:{getTargetImageOfThisType:function(){return 0==this.dType||1==this.dType?"../../static/images/wallet/zhichu.png":2==this.dType?"../../static/images/wallet/shouru.png":"../../static/images/wallet/pingtai.png"},getTargetTitleOfThisType:function(){switch(this.dType){case 0:return"提现";case 1:return"提现手续费";case 2:return"收入";case 3:return"平台维护费";default:return"未知"}},getTimeOfString:function(){var t=this.time;return-1==this.time&&(t=Date.parse(new Date)/1e3),a.default.formatTime(t)},getMoneyFormatted:function(){var t=a.default.formatMoney(this.cashNumber);return t="¥"+t,t}}};e.default=i},484:function(t,e,n){},485:function(t,e,n){"use strict";var a=n(484),r=n.n(a);r.a},486:function(t,e,n){"use strict";var a;n.d(e,"b",(function(){return r})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}));var r=function(){var t=this,e=t.$createElement,n=(t._self._c,t.getTargetImageOfThisType()),a=this.getTargetTitleOfThisType(),r=this.getTimeOfString(),i=t.cashNumber>=0?this.getMoneyFormatted():null,u=t.cashNumber>=0?null:this.getMoneyFormatted();t.$mp.data=Object.assign({},{$root:{m0:n,g0:a,g1:r,g2:i,g3:u}})},i=[];r._withStripped=!0}}]); |
||||
|
//# sourceMappingURL=../../../.sourcemap/mp-weixin/components/WalletListItem/WalletListItem.js.map
|
||||
|
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ |
||||
|
'components/WalletListItem/WalletListItem-create-component', |
||||
|
{ |
||||
|
'components/WalletListItem/WalletListItem-create-component':(function(module, exports, __webpack_require__){ |
||||
|
__webpack_require__('0')['createComponent'](__webpack_require__(481)) |
||||
|
}) |
||||
|
}, |
||||
|
[['components/WalletListItem/WalletListItem-create-component']] |
||||
|
]); |
@ -0,0 +1,4 @@ |
|||||
|
{ |
||||
|
"usingComponents": {}, |
||||
|
"component": true |
||||
|
} |
@ -0,0 +1 @@ |
|||||
|
<view class="dwrapper data-v-ac4ebbf8"><view class="title_box data-v-ac4ebbf8"><image class="icon data-v-ac4ebbf8" src="{{$root.m0}}"></image><text class="title data-v-ac4ebbf8">{{$root.g0}}</text><text class="time data-v-ac4ebbf8">{{$root.g1}}</text></view><block wx:if="{{cashNumber>=0}}"><text class="money_earn data-v-ac4ebbf8">{{$root.g2}}</text></block><block wx:else><text class="money_used data-v-ac4ebbf8">{{$root.g3}}</text></block></view> |
@ -0,0 +1,69 @@ |
|||||
|
@charset "UTF-8"; |
||||
|
/** |
||||
|
* 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量 |
||||
|
* 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可 |
||||
|
* uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用 |
||||
|
*/ |
||||
|
.dwrapper.data-v-ac4ebbf8 { |
||||
|
width: 702rpx; |
||||
|
height: 110rpx; |
||||
|
border-radius: 20rpx; |
||||
|
display: flex; |
||||
|
flex-direction: row; |
||||
|
justify-content: space-between; |
||||
|
align-items: center; |
||||
|
} |
||||
|
.title_box.data-v-ac4ebbf8 { |
||||
|
width: 300rpx; |
||||
|
height: 100%; |
||||
|
position: relative; |
||||
|
margin-left: 20rpx; |
||||
|
} |
||||
|
.icon.data-v-ac4ebbf8 { |
||||
|
width: 26rpx; |
||||
|
height: 26rpx; |
||||
|
position: absolute; |
||||
|
left: 0; |
||||
|
top: 37rpx; |
||||
|
} |
||||
|
.title.data-v-ac4ebbf8 { |
||||
|
height: 40rpx; |
||||
|
font-size: 28rpx; |
||||
|
font-family: PingFang SC; |
||||
|
font-weight: bold; |
||||
|
color: #333333; |
||||
|
opacity: 1; |
||||
|
position: absolute; |
||||
|
left: 38rpx; |
||||
|
top: 28rpx; |
||||
|
} |
||||
|
.time.data-v-ac4ebbf8 { |
||||
|
height: 30rpx; |
||||
|
font-size: 22rpx; |
||||
|
font-family: PingFang SC; |
||||
|
font-weight: 400; |
||||
|
color: #999999; |
||||
|
opacity: 1; |
||||
|
position: absolute; |
||||
|
left: 38rpx; |
||||
|
top: 70rpx; |
||||
|
} |
||||
|
.money_used.data-v-ac4ebbf8 { |
||||
|
height: 40rpx; |
||||
|
font-size: 28rpx; |
||||
|
font-weight: bold; |
||||
|
color: #333333; |
||||
|
opacity: 1; |
||||
|
text-align: right; |
||||
|
padding-right: 20rpx; |
||||
|
} |
||||
|
.money_earn.data-v-ac4ebbf8 { |
||||
|
height: 40rpx; |
||||
|
font-size: 28rpx; |
||||
|
font-weight: bold; |
||||
|
color: #D49B4B; |
||||
|
opacity: 1; |
||||
|
text-align: right; |
||||
|
padding-right: 20rpx; |
||||
|
} |
||||
|
|
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue