|
@@ -307,12 +307,40 @@
|
|
|
确定
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
+ <el-dialog
|
|
|
+ title="提示"
|
|
|
+ :visible.sync="dialogVisible3"
|
|
|
+ :append-to-body="true"
|
|
|
+ width="80%"
|
|
|
+ :before-close="handleClose"
|
|
|
+ class="dialog_diy1"
|
|
|
+ >
|
|
|
+ <div style="margin-bottom: 15px">计算错误!</div>
|
|
|
+ <div
|
|
|
+ style="
|
|
|
+ width: 90px;
|
|
|
+ height: 25px;
|
|
|
+ border: 1px solid #75a8da;
|
|
|
+ text-align: center;
|
|
|
+ margin: 0 auto;
|
|
|
+ background: #75a8da;
|
|
|
+ color: #fff;
|
|
|
+ line-height: 25px;
|
|
|
+ "
|
|
|
+ @click="dialogVisible3 = false"
|
|
|
+ >
|
|
|
+ 确定
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
<audio ref="source">
|
|
|
<source src="../../assets/twentyFour/clickM.mp3" type="audio/mpeg" />
|
|
|
</audio>
|
|
|
<audio ref="vm">
|
|
|
<source src="../../assets/twentyFour/vM.mp3" type="audio/mpeg" />
|
|
|
</audio>
|
|
|
+ <audio ref="errs">
|
|
|
+ <source src="../../assets/twentyFour/err.mp3" type="audio/mpeg" />
|
|
|
+ </audio>
|
|
|
</el-container>
|
|
|
</template>
|
|
|
|
|
@@ -338,6 +366,7 @@
|
|
|
dialogVisible: false,
|
|
|
dialogVisible1: false,
|
|
|
dialogVisible2: false,
|
|
|
+ dialogVisible3: false,
|
|
|
ts: 3,
|
|
|
tiMu: [],
|
|
|
nowGq: 0,
|
|
@@ -532,6 +561,7 @@
|
|
|
getVal(num, index) {
|
|
|
var num = parseInt(num);
|
|
|
var b = 0;
|
|
|
+ let a = 0;
|
|
|
this.$refs.source.play();
|
|
|
if (this.num1 && this.calc) {
|
|
|
this.num2 = num;
|
|
@@ -563,11 +593,26 @@
|
|
|
for (var i = 0; i < this.randomNum.length; i++) {
|
|
|
if (this.randomNum[i] != "" || this.randomNum[i] === 0) {
|
|
|
b++;
|
|
|
+ }else{
|
|
|
+ a++
|
|
|
}
|
|
|
}
|
|
|
if (b == 1) {
|
|
|
this.dialogVisible2 = true;
|
|
|
this.$refs.vm.play();
|
|
|
+ }else if(a == this.randomNum.length-1){
|
|
|
+ this.dialogVisible3 = true;
|
|
|
+ this.$refs.errs.play();
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ for (var i = 0; i < this.randomNum.length; i++) {
|
|
|
+ if (this.randomNum[i] == "") {
|
|
|
+ a++;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(a == this.randomNum.length-1){
|
|
|
+ this.dialogVisible3 = true;
|
|
|
+ this.$refs.errs.play();
|
|
|
}
|
|
|
}
|
|
|
this.resertFlag();
|
|
@@ -579,11 +624,26 @@
|
|
|
for (var i = 0; i < this.randomNum.length; i++) {
|
|
|
if (this.randomNum[i] != "" || this.randomNum[i] === 0) {
|
|
|
b++;
|
|
|
+ }else{
|
|
|
+ a++
|
|
|
}
|
|
|
}
|
|
|
if (b == 1) {
|
|
|
this.dialogVisible2 = true;
|
|
|
this.$refs.vm.play();
|
|
|
+ }else if(a == this.randomNum.length-1){
|
|
|
+ this.dialogVisible3 = true;
|
|
|
+ this.$refs.errs.play();
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ for (var i = 0; i < this.randomNum.length; i++) {
|
|
|
+ if (this.randomNum[i] == "") {
|
|
|
+ a++;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(a == this.randomNum.length-1){
|
|
|
+ this.dialogVisible3 = true;
|
|
|
+ this.$refs.errs.play();
|
|
|
}
|
|
|
}
|
|
|
this.resertFlag();
|
|
@@ -595,11 +655,26 @@
|
|
|
for (var i = 0; i < this.randomNum.length; i++) {
|
|
|
if (this.randomNum[i] != "" || this.randomNum[i] === 0) {
|
|
|
b++;
|
|
|
+ }else{
|
|
|
+ a++
|
|
|
}
|
|
|
}
|
|
|
if (b == 1) {
|
|
|
this.dialogVisible2 = true;
|
|
|
this.$refs.vm.play();
|
|
|
+ }else if(a == this.randomNum.length-1){
|
|
|
+ this.dialogVisible3 = true;
|
|
|
+ this.$refs.errs.play();
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ for (var i = 0; i < this.randomNum.length; i++) {
|
|
|
+ if (this.randomNum[i] == "") {
|
|
|
+ a++;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(a == this.randomNum.length-1){
|
|
|
+ this.dialogVisible3 = true;
|
|
|
+ this.$refs.errs.play();
|
|
|
}
|
|
|
}
|
|
|
this.resertFlag();
|
|
@@ -619,11 +694,26 @@
|
|
|
for (var i = 0; i < this.randomNum.length; i++) {
|
|
|
if (this.randomNum[i] != "" || this.randomNum[i] === 0) {
|
|
|
b++;
|
|
|
+ }else{
|
|
|
+ a++
|
|
|
}
|
|
|
}
|
|
|
if (b == 1) {
|
|
|
this.dialogVisible2 = true;
|
|
|
this.$refs.vm.play();
|
|
|
+ }else if(a == this.randomNum.length-1){
|
|
|
+ this.dialogVisible3 = true;
|
|
|
+ this.$refs.errs.play();
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ for (var i = 0; i < this.randomNum.length; i++) {
|
|
|
+ if (this.randomNum[i] == "") {
|
|
|
+ a++;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(a == this.randomNum.length-1){
|
|
|
+ this.dialogVisible3 = true;
|
|
|
+ this.$refs.errs.play();
|
|
|
}
|
|
|
}
|
|
|
this.resertFlag();
|
|
@@ -811,18 +901,22 @@
|
|
|
.cardF {
|
|
|
background-image: url("../../assets/twentyFour/xuanF.png");
|
|
|
height: 120px;
|
|
|
+ opacity: 0.4;
|
|
|
}
|
|
|
.cardS {
|
|
|
background-image: url("../../assets/twentyFour/xuanS.png");
|
|
|
height: 120px;
|
|
|
+ opacity: 0.4;
|
|
|
}
|
|
|
.cardT {
|
|
|
background-image: url("../../assets/twentyFour/xuanT.png");
|
|
|
height: 120px;
|
|
|
+ opacity: 0.4;
|
|
|
}
|
|
|
.cardFour {
|
|
|
background-image: url("../../assets/twentyFour/xuanFour.png");
|
|
|
height: 120px;
|
|
|
+ opacity: 0.4;
|
|
|
}
|
|
|
|
|
|
.h-sep {
|
|
@@ -967,27 +1061,35 @@
|
|
|
}
|
|
|
.xuanFIsClick {
|
|
|
background-image: url("../../assets/twentyFour/xuanFIsClick.png") !important;
|
|
|
+ opacity: 1;
|
|
|
}
|
|
|
.xuanSIsClick {
|
|
|
background-image: url("../../assets/twentyFour/xuanSIsClick.png") !important;
|
|
|
+ opacity: 1;
|
|
|
}
|
|
|
.xuanTIsClick {
|
|
|
background-image: url("../../assets/twentyFour/xuanTIsClick.png") !important;
|
|
|
+ opacity: 1;
|
|
|
}
|
|
|
.xuanFourIsClick {
|
|
|
background-image: url("../../assets/twentyFour/xuanFourIsClick.png") !important;
|
|
|
+ opacity: 1;
|
|
|
}
|
|
|
.addIsClick {
|
|
|
background-image: url("../../assets/twentyFour/addIsClick.png") !important;
|
|
|
+ opacity: 1;
|
|
|
}
|
|
|
.reduceIsClick {
|
|
|
background-image: url("../../assets/twentyFour/reduceIsClick.png") !important;
|
|
|
+ opacity: 1;
|
|
|
}
|
|
|
.takeIsClick {
|
|
|
background-image: url("../../assets/twentyFour/takeIsClick.png") !important;
|
|
|
+ opacity: 1;
|
|
|
}
|
|
|
.removeIsClick {
|
|
|
background-image: url("../../assets/twentyFour/removeIsClick.png") !important;
|
|
|
+ opacity: 1;
|
|
|
}
|
|
|
.dialog_diy >>> .el-dialog__header {
|
|
|
background: #fa7258;
|