合并冲突 完成实验步骤

main
JayChou 2 weeks ago
parent adacb8a7f3
commit 6aef54d306
  1. 2
      src/store/modules/setting.ts
  2. 10
      src/views/experimentalData/index.vue
  3. 2
      src/views/largeDataScreen/home.vue
  4. 2
      src/views/program/index.vue

@ -125,7 +125,7 @@ const settingStore = defineStore("settingStore", {
router.push({ router.push({
path: "/", path: "/",
query: { query: {
ieda: true, idea: true,
}, },
}); });
} }

@ -25,6 +25,9 @@
</el-table> </el-table>
</div> </div>
</div> </div>
<div class="settting">
<el-button @click="router.back()">返回</el-button>
</div>
</template> </template>
<script setup> <script setup>
@ -32,6 +35,8 @@ import settingstore from '@/store/modules/setting'
import { setStepEvent } from "@/utils/setStep"; import { setStepEvent } from "@/utils/setStep";
import { formatDate } from "@/utils"; import { formatDate } from "@/utils";
import {ref} from 'vue' import {ref} from 'vue'
import { useRouter } from 'vue-router';
const router = useRouter()
const useSettingStore = settingstore() const useSettingStore = settingstore()
const tableData = ref([]) const tableData = ref([])
tableData.value = useSettingStore.shiyanData tableData.value = useSettingStore.shiyanData
@ -88,4 +93,9 @@ setStepEvent(10,formatDate(new Date()))
.el-table::before { .el-table::before {
background: transparent !important; background: transparent !important;
} }
.settting{
position: absolute;
top: 20px;
right: 20px;
}
</style> </style>

@ -799,7 +799,7 @@ const setInstallationStep = (): void => {
Popup.value = true; Popup.value = true;
} }
if(installationStep.value == 11){ if(installationStep.value == 11){
Installation.value = true // Installation.value = true
Popup.value = false Popup.value = false
} }
}; };

@ -93,7 +93,7 @@
<div class="dialog-footer"> <div class="dialog-footer">
<el-button @click="dialogVisible = false">取消</el-button> <el-button @click="dialogVisible = false">取消</el-button>
<el-button type="primary" @click="exportWord"> <el-button type="primary" @click="exportWord">
导出 保存
</el-button> </el-button>
</div> </div>
</template> </template>

Loading…
Cancel
Save