|
@@ -291,6 +291,20 @@ const queryParams = reactive({
|
|
const queryFormRef = ref() // 搜索的表单
|
|
const queryFormRef = ref() // 搜索的表单
|
|
const dialog_upload = ref(false)
|
|
const dialog_upload = ref(false)
|
|
|
|
|
|
|
|
+// const loadingMark = ref(null)
|
|
|
|
+// const loadingMarkSetting = (bool) => {
|
|
|
|
+// if (bool) {
|
|
|
|
+// loadingMark.value = ElLoading.service({
|
|
|
|
+// lock: true,
|
|
|
|
+// text: '加载中...',
|
|
|
|
+// background: 'rgba(0, 0, 0, 0.7)',
|
|
|
|
+// })
|
|
|
|
+// } else {
|
|
|
|
+// if (loadingMark.value) loadingMark.value.close()
|
|
|
|
+// loadingMark.value = null
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+
|
|
/** 查询列表 */
|
|
/** 查询列表 */
|
|
const getList = async () => {
|
|
const getList = async () => {
|
|
loading.value = true
|
|
loading.value = true
|
|
@@ -684,6 +698,7 @@ const handleSelect = () => {
|
|
openSelect.value = false
|
|
openSelect.value = false
|
|
formData.value = null
|
|
formData.value = null
|
|
showWebAnalysis.value = false
|
|
showWebAnalysis.value = false
|
|
|
|
+ showFormPage.value = true // 默认展示表单
|
|
const type = radioValue.value
|
|
const type = radioValue.value
|
|
if (type === 'card') {
|
|
if (type === 'card') {
|
|
createAnalysisNum.value++
|
|
createAnalysisNum.value++
|
|
@@ -693,7 +708,7 @@ const handleSelect = () => {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
if (type === 'web') {
|
|
if (type === 'web') {
|
|
- showFormPage.value = false
|
|
|
|
|
|
+ showFormPage.value = false // 新任命没有表单
|
|
showWebAnalysis.value = true
|
|
showWebAnalysis.value = true
|
|
dialog_analysisInfo.value = true
|
|
dialog_analysisInfo.value = true
|
|
return
|
|
return
|