区块链骰子游戏

dmy c7e329721d 中奖流程 6 yıl önce
build 6bd0f4f97b first commit 6 yıl önce
config 588876469d 初始化项目 6 yıl önce
src c7e329721d 中奖流程 6 yıl önce
static 6bd0f4f97b first commit 6 yıl önce
.babelrc 6bd0f4f97b first commit 6 yıl önce
.editorconfig 6bd0f4f97b first commit 6 yıl önce
.gitignore 6bd0f4f97b first commit 6 yıl önce
.postcssrc.js 6bd0f4f97b first commit 6 yıl önce
README.md 3ecedff194 逻辑开发 6 yıl önce
index.html a1a05c7dd2 用户下注流程 6 yıl önce
package-lock.json 6eca257123 添加vuex 6 yıl önce
package.json 6eca257123 添加vuex 6 yıl önce

README.md

dice_game

A Vue.js project

Build Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

# build for production and view the bundle analyzer report
npm run build --report

For a detailed explanation on how things work, check out the guide and docs for vue-loader.

// 下注类型

enum enum_offer_type { 
    small = 0,
    big = 1, 
    odd = 3,
    even = 2,

    sum_4 = 4,
    sum_5 = 5,
    sum_6 = 6,
    sum_7 = 7,
    sum_8 = 8,
    sum_9 = 9,
    sum_10 = 10,
    sum_11 = 11,
    sum_12 = 12,
    sum_13 = 13,
    sum_14 = 14,
    sum_15 = 15,
    sum_16 = 16,
    sum_17 = 17,

    single_1 = 100,
    single_2 = 200,
    single_3 = 300,
    single_4 = 400,
    single_5 = 500,
    single_6 = 600,

    double_1 = 110,
    double_2 = 220,
    double_3 = 330,
    double_4 = 440,
    double_5 = 550,
    double_6 = 660,

    three_1 = 111,
    three_2 = 222,
    three_3 = 333,
    three_4 = 444,
    three_5 = 555,
    three_6 = 666,
    three_n = 777, // 只要是三个数就算
};