...
|
...
|
@@ -544,6 +544,7 @@ class Member extends Frontend |
|
|
$user_province = Db::name('user_province')->where(['user_id'=>$this->auth->id,'expiration_time'=>['gt',time()]])->select();
|
|
|
$deduct_price = [];
|
|
|
$ratio_price = $price['vipprice']/30;
|
|
|
dump($ratio_price);
|
|
|
foreach($user_province as $key => $u_p){
|
|
|
$ratio_day = ($u_p['expiration_time']-time())/(24*60*60);
|
|
|
$deduct_price[] = $ratio_price*$ratio_day;
|
...
|
...
|
|