欢乐夺宝系统是一款电商购物平台,可以在里面进行交电费,话费充值,买电影票等等。
欢乐夺宝系统开发功能主要有支付系统,电商系统,会员系统,夺宝系统等等,个人中心可以看到用户自己本身的情况。余额:可以直接提现,红包:可以提现;刮刮豆:可以进行刮奖
欢乐夺宝系统在原有的电商系统上面增加了趣味游戏玩法的夺宝系统,夺宝系统根据商品的价格分为多个板块:30元夺宝区,50元夺宝区,100元夺宝A区,100元夺宝B区,200元夺宝专区等等,每个夺宝区里面都有对应的商品。
?
?欢乐夺宝系统开发源码分享:
public function issue($id)
{
if (!CouponModel::be(['id' => $id, 'status' => 1, 'is_del' => 0]))
return $this->failed('发布的优惠劵已失效或不存在!');
$f = [];
$f[] = Form::input('id', '优惠劵ID', $id)->disabled(1);
$f[] = Form::dateTimeRange('range_date', '领取时间')->placeholder('不填为永久有效');
$f[] = Form::radio('is_permanent', '是否不限量', 0)->options([['label' => '限量', 'value' => 0], ['label' => '不限量', 'value' => 1]]);
$f[] = Form::number('count', '发布数量', 0)->min(0)->placeholder('不填或填0,为不限量');
$f[] = Form::radio('is_full_give', '消费满赠', 0)->options([['label' => '开启', 'value' => 1], ['label' => '关闭', 'value' => 0]]);
$f[] = Form::number('full_reduction', '满赠金额')->min(0)->placeholder('赠送优惠券的最低消费金额');
$f[] = Form::radio('is_give_subscribe', '首次关注赠送', 0)->options([['label' => '开启', 'value' => 1], ['label' => '关闭', 'value' => 0]]);
$f[] = Form::radio('status', '状态', 1)->options([['label' => '开启', 'value' => 1], ['label' => '关闭', 'value' => 0]]);
$form = Form::make_post_form('添加优惠券', $f, Url::buildUrl('update_issue', array('id' => $id)));
$this->assign(compact('form'));
return $this->fetch('public/form-builder');
|