Compare commits

..

No commits in common. "d5135d7fa0c42a699f0cf2c227756424d856c9b6" and "3a360df84e1db575b6863fa54615650f8da802b4" have entirely different histories.

1 changed files with 4 additions and 42 deletions

View File

@ -138,20 +138,13 @@
<div class="btns"> <div class="btns">
<div class="btnbg fs35" @click="handleClickPC"></div> <div class="btnbg fs35" @click="handleClickPC"></div>
<div <div
v-if="!send_Status" v-if="!send_Status"
:class="[btn_sendFlag ? '' : 'send_drp', `btnbg fs35 `]" :class="[btn_sendFlag ? '' : 'send_drp', `btnbg fs35 `]"
@click="haneleprogress" @click="haneleprogress"
> >
下发指令 下发指令
</div> </div>
<div class="send_box" v-else> <div v-else></div>
发送中
<div class="loading-dots">
<span>.</span>
<span>.</span>
<span>.</span>
</div>
</div>
</div> </div>
</div> </div>
</div> </div>
@ -529,11 +522,11 @@ let adjustContentFlag = ref(true);
// //
let newAjustTableData = reactive<any>([]); let newAjustTableData = reactive<any>([]);
let send_Status = ref(false); // let send_Status=ref(false);//
let btn_sendFlag = ref(false); // let btn_sendFlag = ref(false); //
const haneleprogress = () => { const haneleprogress = () => {
send_Status.value = true; // div send_Status.value=true// div
if (btn_sendFlag.value === false) return; //flag if (btn_sendFlag.value === false) return; //flag
alert(1); alert(1);
btn_sendFlag.value = false; // btn_sendFlag.value = false; //
@ -1277,37 +1270,6 @@ const styleVar = computed(() => {
display: flex; display: flex;
width: changeHeight(550); width: changeHeight(550);
justify-content: space-between; justify-content: space-between;
.loading-dots {
display: inline-block;
font-size: 20px; /* 根据需要调整大小 */
color: #58a7cb; /* 点的颜色 */
}
.loading-dots span {
animation: blink 1s step-start infinite;
}
.loading-dots span:nth-child(1) {
animation-delay: 0s;
}
.loading-dots span:nth-child(2) {
animation-delay: 0.33s;
}
.loading-dots span:nth-child(3) {
animation-delay: 0.66s;
}
@keyframes blink {
0%,
100% {
opacity: 0;
}
50% {
opacity: 1;
}
}
} }
} }