pull/2/head
qsh 2 months ago
parent ec14af1351
commit 97b941055e
  1. 4
      .env.base
  2. 17
      src/components/Dialog/src/Dialog.vue
  3. 7
      src/views/Clue/Pool/Comp/DialogClue.vue
  4. 3
      src/views/Clue/Pool/Comp/DialogFollow.vue
  5. 3
      src/views/Clue/Pool/Comp/DialogSuccess.vue

@ -4,8 +4,8 @@ VITE_NODE_ENV=development
VITE_DEV=true
# 请求路径
VITE_BASE_URL='http://118.31.23.45:48080'
# VITE_BASE_URL='http://114.55.169.15:48080'
# VITE_BASE_URL='http://118.31.23.45:48080'
VITE_BASE_URL='http://114.55.169.15:48080'
# 上传路径
VITE_UPLOAD_URL='http://118.31.23.45:48080/admin-api/system/file/upload'

@ -75,13 +75,16 @@ const emit = defineEmits(['close'])
<slot name="title">
{{ title }}
</slot>
<Icon
v-if="fullscreen"
:icon="isFullscreen ? 'zmdi:fullscreen-exit' : 'zmdi:fullscreen'"
class="mr-22px cursor-pointer is-hover mt-2px z-10"
color="var(--el-color-info)"
@click="toggleFull"
/>
<div class="flex items-center">
<slot name="btn"></slot>
<Icon
v-if="fullscreen"
:icon="isFullscreen ? 'zmdi:fullscreen-exit' : 'zmdi:fullscreen'"
class="mr-22px cursor-pointer is-hover z-10"
color="var(--el-color-info)"
@click="toggleFull"
/>
</div>
</div>
</template>

@ -1,5 +1,8 @@
<template>
<Dialog :title="dialogTitle" v-model="dialogVisible" width="800px" @close="destroyMap">
<template #btn>
<el-button class="mr-20px" type="primary" size="small" @click="handleSave">保存</el-button>
</template>
<el-tabs v-model="tabName" @tab-change="changeTab">
<el-tab-pane label="线索信息" name="info">
<Form ref="formRef" v-loading="formLoading" :rules="rules" isCol :schema="formSchema" />
@ -118,10 +121,10 @@
</el-collapse>
</el-tab-pane>
</el-tabs>
<div style="position: absolute; top: 75px; right: 20px">
<template #footer>
<el-button @click="dialogVisible = false"> </el-button>
<el-button :disabled="formLoading" type="primary" @click="handleSave"> </el-button>
</div>
</template>
<DialogSchoolInfo ref="schoolInfoDialog" />
</Dialog>
</template>

@ -1,5 +1,8 @@
<template>
<Dialog :title="dialogTitle" v-model="dialogVisible" width="1000px">
<template #btn>
<el-button class="mr-20px" type="primary" size="small" @click="handleSave">保存</el-button>
</template>
<div class="flex">
<el-form style="flex: 1" :model="form" ref="formRef" :rules="rules" label-width="120px">
<el-row :gutter="20">

@ -1,5 +1,8 @@
<template>
<Dialog title="成交登记" v-model="show" width="900px">
<template #btn>
<el-button class="mr-20px" type="primary" size="small" @click="handleSave">保存</el-button>
</template>
<Descriptions
:title="`线索信息-${info.name}`"
:data="info"

Loading…
Cancel
Save