|
@@ -14,7 +14,7 @@
|
|
|
<div class="result-content center-center"
|
|
|
v-loading="loading"
|
|
|
:element-loading-svg="loadingIcon"
|
|
|
- element-loading-background="rgba(5, 2, 11, 0.6)"
|
|
|
+ element-loading-background="rgba(5, 2, 11, 0.6)"
|
|
|
>
|
|
|
<div v-if="!resultData.outPutUrl" class="result-text">
|
|
|
<img class="r-img" src="../assets/images/img-page.png" alt="">
|
|
@@ -26,11 +26,11 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!-- <div class="right-bar">
|
|
|
+ <div class="right-bar">
|
|
|
<Operation
|
|
|
@onOpertion="onOpertion"
|
|
|
/>
|
|
|
- </div> -->
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="bottom-content">
|
|
|
<div class="sub-title sub-title_style">
|
|
@@ -80,7 +80,7 @@
|
|
|
</template>
|
|
|
<script setup>
|
|
|
import {ref, onMounted, reactive, watch} from 'vue'
|
|
|
-import { useStore } from 'vuex'
|
|
|
+import {useStore} from 'vuex'
|
|
|
import {postCreatTask, postCollectTask, postTaskList} from '@/network/api/user'
|
|
|
import emitter from '@/utils/bus'
|
|
|
import Operation from './OperationPage'
|
|
@@ -96,7 +96,7 @@ const props = defineProps({
|
|
|
})
|
|
|
const emit = defineEmits(['taskDetail', 'getTaskList'])
|
|
|
|
|
|
-const { dispatch } = useStore()
|
|
|
+const {dispatch} = useStore()
|
|
|
|
|
|
let isShowResult = ref(false)
|
|
|
let resultData = reactive({})
|