mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-20 16:26:45 +08:00
评估题目
This commit is contained in:
@@ -164,6 +164,10 @@
|
||||
</a-modal>
|
||||
<!--操作弹窗 -->
|
||||
</div>
|
||||
<!-- 加载动画 -->
|
||||
<div class="aeLoading" :style="{ display: addLoading ? 'flex' : 'none' }">
|
||||
<a-spin :spinning="addLoading" tip="" />
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { reactive, toRefs, onMounted, ref } from "vue";
|
||||
@@ -186,6 +190,7 @@ export default {
|
||||
setup() {
|
||||
const router = useRouter();
|
||||
const state = reactive({
|
||||
addLoading: false,
|
||||
// projectNameList: [
|
||||
// {
|
||||
// id: 1,
|
||||
@@ -383,6 +388,7 @@ export default {
|
||||
|
||||
const getTableDate = async () => {
|
||||
// let data = state.tableData;
|
||||
state.addLoading = true;
|
||||
let startTime,
|
||||
endTime = "";
|
||||
if (state.projectTime) {
|
||||
@@ -419,6 +425,7 @@ export default {
|
||||
},
|
||||
true
|
||||
);
|
||||
state.addLoading = false;
|
||||
data.map((value) => {
|
||||
{
|
||||
//单层项目
|
||||
|
||||
Reference in New Issue
Block a user