demand.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640
  1. <template>
  2. <div class="index">
  3. <el-row>
  4. <el-col :span="24" class="main" v-loading="loading">
  5. <el-col :span="24" class="one">
  6. <div class="one_left">
  7. <div class="button" @click="toAdd">发布需求</div>
  8. <div class="button" @click="toExpert">导入数据</div>
  9. <custom-export table="Demand"></custom-export>
  10. <!-- <div class="button" @click="toDownload">导出数据</div> -->
  11. </div>
  12. <div class="one_right">
  13. <el-input v-model="searchForm.name" style="width: 250px" size="large" placeholder="搜索" @change="search" :suffix-icon="Search" />
  14. </div>
  15. </el-col>
  16. <el-col :span="24" class="two">
  17. <el-table :data="list" style="width: 100%" size="large" :header-cell-style="{ backgroundColor: '#edf3ff' }">
  18. <template #empty>
  19. <el-empty description="暂无数据" />
  20. </template>
  21. <el-table-column prop="name" align="center" label="需求名称" />
  22. <el-table-column prop="start_time" align="center" label="开始时间" width="180" />
  23. <el-table-column prop="end_time" align="center" label="结束时间" width="180" />
  24. <el-table-column prop="status" align="center" label="状态" width="180">
  25. <template #default="scope">
  26. <div>{{ getDict(scope.row.status, 'status') }}</div>
  27. </template>
  28. </el-table-column>
  29. <el-table-column align="center" label="操作" width="180">
  30. <template #default="{ row }">
  31. <el-link v-if="row.status == '-2'" :underline="false" type="warning" size="mini" @click="toExam(row)" style="margin-right: 10px">提交审核</el-link>
  32. <el-link :underline="false" type="primary" size="mini" @click="toEdit(row)" style="margin-right: 10px">修改</el-link>
  33. <el-link :underline="false" type="danger" size="mini" @click="toDelete(row)"> 删除 </el-link>
  34. </template>
  35. </el-table-column>
  36. </el-table>
  37. </el-col>
  38. <el-col :span="24" class="thr">
  39. <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
  40. </el-col>
  41. </el-col>
  42. </el-row>
  43. <el-dialog v-model="dialog.show" :title="dialog.title" :destroy-on-close="false" @close="toClose" :width="width">
  44. <el-row>
  45. <el-col :span="24" v-if="dialog.type == '1'">
  46. <custom-form v-model="form" :fields="formFields" :rules="rules" @save="toSave" @draftSave="toDraftSave">
  47. <template #is_use>
  48. <el-radio v-for="i in isUseList" :key="i.id" :label="i.value">{{ i.label }}</el-radio>
  49. </template>
  50. <template #field>
  51. <el-option v-for="i in fieldList" :key="i.id" :label="i.label" :value="i.label"></el-option>
  52. </template>
  53. <template #industry>
  54. <el-option v-for="i in sectorList" :key="i.id" :label="i.title" :value="i.title"></el-option>
  55. </template>
  56. <template #urgent>
  57. <el-option v-for="i in urgentList" :key="i.id" :label="i.label" :value="i.value"></el-option>
  58. </template>
  59. <template #method>
  60. <el-option v-for="i in methodList" :key="i.id" :label="i.label" :value="i.label"></el-option>
  61. </template>
  62. <template #area>
  63. <el-cascader v-model="form.area" :props="{ value: 'name', label: 'name' }" :options="cityList" style="width: 100%" />
  64. </template>
  65. <template #tags>
  66. <el-select v-model="form.tags" multiple filterable allow-create default-first-option :reserve-keyword="false" placeholder="请选择标签" style="width: 100%">
  67. <el-option v-for="item in tagsList" :key="item.id" :label="item.title" :value="item.title" />
  68. </el-select>
  69. </template>
  70. </custom-form>
  71. </el-col>
  72. <!-- 加载界面 -->
  73. <transition name="why">
  74. <el-col :span="24" v-if="dialog.type == '2'" class="dialog" v-loading="isLoading" element-loading-text="智能推荐中..." :element-loading-svg="svg" element-loading-svg-view-box="-10,-10,50,50">
  75. <el-empty v-if="supplytotal == 0" description="暂无数据" />
  76. <div class="list" v-for="(item, index) in supplyList" :key="index" @click="toView(item)">
  77. <h2 class="name textMore">
  78. <span>{{ item.name || '暂无' }}</span>
  79. </h2>
  80. <div class="other">
  81. <span class="other_1">{{ getDict(item.urgent, 'urgent') || '暂无' }}</span>
  82. <div class="other_2">
  83. <span>应用行业:</span>
  84. {{ item.field || '暂无' }}
  85. </div>
  86. <div class="other_2">
  87. <span>所属产业:</span>
  88. {{ item.industry || '暂无' }}
  89. </div>
  90. <div class="other_2">
  91. <span>来源:</span>
  92. {{ item.source || '暂无' }}
  93. </div>
  94. <div class="other_2">
  95. <span>推荐指数:</span>
  96. <el-rate size="large" v-model="item._recommend" disabled show-score text-color="#ff9900" :score-template="`${item._recommend} 星`" />
  97. </div>
  98. </div>
  99. </div>
  100. <el-col :span="24" class="page">
  101. <el-pagination background layout="prev, pager, next" :total="supplytotal" :page-size="supplylimit" v-model:current-page="scurrentPage" @current-change="schangePage" @size-change="ssizeChange" />
  102. </el-col>
  103. </el-col>
  104. </transition>
  105. <el-col :span="24" class="dialog_thr" v-if="dialog.type == '3'">
  106. <el-col :span="24" class="one">
  107. <el-checkbox :indeterminate="isIndeterminate" v-model="checkAll" @change="handleCheckAllChange">全选</el-checkbox>
  108. </el-col>
  109. <el-col :span="24" class="two">
  110. <el-checkbox-group v-model="checkedExport" @change="checkedExportChange">
  111. <el-checkbox v-for="i in formFields" :label="i" :key="i.model">{{ i.label }}</el-checkbox>
  112. </el-checkbox-group>
  113. </el-col>
  114. <el-col :span="24" class="btn">
  115. <el-button type="primary" size="mini" @click="toFile()">确定导出</el-button>
  116. </el-col>
  117. </el-col>
  118. <el-col :span="24" class="dialog_four" v-if="dialog.type == '4'">
  119. <el-row justify="center">
  120. <el-col :span="16">
  121. <el-steps style="max-width: 600px" :active="importActive" align-center>
  122. <el-step title="下载导入模板">
  123. <template #description v-if="importActive == 0">
  124. <el-button type="primary" size="mini" @click="toTemplate">下载导入模板</el-button>
  125. </template>
  126. </el-step>
  127. <el-step title="上传导入模板" description="上传导入模板">
  128. <template #description v-if="importActive == 1">
  129. <el-upload action="/files/web/cxyy_import/upload" :show-file-list="false" :on-success="onSuccess" accept=".xlsx">
  130. <el-button type="primary" size="mini">上传导入文件</el-button>
  131. </el-upload>
  132. </template>
  133. </el-step>
  134. <el-step title="确定导入" description="确定导入">
  135. <template #description v-if="importActive == 2">
  136. <el-button type="primary" size="mini" @click="onImport">确定</el-button>
  137. </template>
  138. </el-step>
  139. </el-steps>
  140. </el-col>
  141. </el-row>
  142. </el-col>
  143. </el-row>
  144. </el-dialog>
  145. </div>
  146. </template>
  147. <script setup>
  148. import { Search } from '@element-plus/icons-vue'
  149. import { cloneDeep, get } from 'lodash-es'
  150. const $checkRes = inject('$checkRes')
  151. import { UserStore } from '@/store/user'
  152. const userStore = UserStore()
  153. const user = computed(() => userStore.user)
  154. // 接口
  155. import { DemandStore } from '@/store/api/platform/demand'
  156. import { DictDataStore } from '@/store/api/system/dictData'
  157. import { TagsStore } from '@/store/api/system/tags'
  158. import { SectorStore } from '@/store/api/platform/sector'
  159. import { RegionStore } from '@/store/api/system/region'
  160. import { UtilStore } from '@/store/api/util'
  161. import { EsStore } from '@/store/api/es'
  162. const esStore = EsStore()
  163. const utilStore = UtilStore()
  164. const regionStore = RegionStore()
  165. const store = DemandStore()
  166. const dictDataStore = DictDataStore()
  167. const tagsStore = TagsStore()
  168. const sectorStore = SectorStore()
  169. // 加载中
  170. const loading = ref(false)
  171. const isLoading = ref(false)
  172. const svg = ref(`
  173. <path class="path" d="
  174. M 30 15
  175. L 28 17
  176. M 25.61 25.61
  177. A 15 15, 0, 0, 1, 15 30
  178. A 15 15, 0, 1, 1, 27.99 7.5
  179. L 15 15
  180. " style="stroke-width: 4px; fill: rgba(0, 0, 0, 0)"/>
  181. `)
  182. const router = useRouter()
  183. const searchForm = ref({})
  184. // 列表
  185. const list = ref([])
  186. let skip = 0
  187. let limit = inject('limit')
  188. const total = ref(0)
  189. const currentPage = ref(1)
  190. // 字典表
  191. const isUseList = ref([])
  192. const statusList = ref([])
  193. const methodList = ref([])
  194. const urgentList = ref([])
  195. const fieldList = ref([])
  196. const cityList = ref([])
  197. const demandList = ref([])
  198. const tagsList = ref([])
  199. const sectorList = ref([])
  200. // 推荐供给列表
  201. const supplyList = ref([])
  202. let supplyskip = 0
  203. let supplylimit = 4
  204. const supplytotal = ref(0)
  205. const key = ref('')
  206. const width = ref('50%')
  207. const form = ref({ time: [] })
  208. const dialog = ref({ type: '1', show: false, title: '发布需求' })
  209. const formFields = ref([
  210. { label: '需求名称', model: 'name' },
  211. { label: '标签', model: 'tags', custom: true, mark: 'tags' },
  212. { label: '行业', model: 'industry', type: 'select' },
  213. { label: '行业领域', model: 'field', type: 'select' },
  214. { label: '需求紧急度', model: 'urgent', type: 'select', mark: 'dict', code: 'urgent' },
  215. { label: '合作方式', model: 'method', type: 'selectMany', mark: 'dict', code: 'method' },
  216. { label: '价格(万元)', model: 'money' },
  217. { label: '所属企业', model: 'company' },
  218. { label: '企业简况', model: 'company_brief', type: 'textarea' },
  219. { label: '联系人', model: 'contacts' },
  220. { label: '联系电话', model: 'tel' },
  221. { label: '年份', model: 'year', type: 'year' },
  222. { label: '月份', model: 'month', type: 'month' },
  223. { label: '技术需求名称', model: 'tec_name' },
  224. { label: '待解决问题', model: 'question', type: 'textarea' },
  225. { label: '需求地区', model: 'area', custom: true, mark: 'area' },
  226. { label: '发布时间', model: 'time', type: 'daterange', mark: 'time' },
  227. { label: '是否公开', model: 'is_use', type: 'radio', mark: 'dict', code: 'isUse' },
  228. { label: '简介', model: 'brief', type: 'textarea' }
  229. ])
  230. const rules = reactive({
  231. name: [{ required: true, message: '请输入需求名称', trigger: 'blur' }],
  232. field: [{ required: true, message: '请输入行业领域', trigger: 'blur' }],
  233. urgent: [{ required: true, message: '请选择需求紧急度', trigger: 'blur' }],
  234. method: [{ required: true, message: '请选择合作方式', trigger: 'blur' }],
  235. money: [{ required: true, message: '请输入价格', trigger: 'blur' }],
  236. company: [{ required: true, message: '请输入所属企业', trigger: 'blur' }],
  237. contacts: [{ required: true, message: '请输入联系人', trigger: 'blur' }],
  238. tel: [{ required: true, message: '请输入联系电话', trigger: 'blur' }],
  239. area: [{ required: true, message: '请选择需求地区', trigger: 'blur' }],
  240. time: [{ required: true, message: '请选择发布时间', trigger: 'blur' }]
  241. })
  242. // 导出文件
  243. const checkAll = ref(false)
  244. const checkedExport = ref([])
  245. const isIndeterminate = ref(true)
  246. // 导入文件
  247. const importActive = ref(0)
  248. const url = ref('')
  249. // 请求
  250. onMounted(async () => {
  251. loading.value = true
  252. await searchOther()
  253. await search()
  254. loading.value = false
  255. })
  256. const search = async (query = { skip, limit }) => {
  257. skip = query.skip
  258. limit = query.limit
  259. const info = {
  260. skip: query.skip,
  261. limit: query.limit,
  262. user: user.value.id,
  263. ...searchForm.value
  264. }
  265. const res = await store.query(info)
  266. if (res.errcode == '0') {
  267. list.value = res.data
  268. total.value = res.total
  269. }
  270. }
  271. const searchOther = async () => {
  272. let result
  273. // 是否使用
  274. result = await dictDataStore.query({ code: 'isUse', is_use: '0' })
  275. if ($checkRes(result)) isUseList.value = result.data
  276. // 状态
  277. result = await dictDataStore.query({ code: 'examStatus', is_use: '0' })
  278. if ($checkRes(result)) statusList.value = result.data
  279. // 合作方式
  280. result = await dictDataStore.query({ code: 'method', is_use: '0' })
  281. if ($checkRes(result)) methodList.value = result.data
  282. // 需求紧急度
  283. result = await dictDataStore.query({ code: 'urgent', is_use: '0' })
  284. if ($checkRes(result)) urgentList.value = result.data
  285. // 技术领域
  286. result = await dictDataStore.query({ code: 'field', is_use: '0' })
  287. if ($checkRes(result)) fieldList.value = result.data
  288. // 需求状态
  289. result = await dictDataStore.query({ code: 'demandStatus', is_use: '0' })
  290. if ($checkRes(result)) demandList.value = result.data
  291. // 标签
  292. result = await tagsStore.query({ is_use: '0' })
  293. if ($checkRes(result)) tagsList.value = result.data
  294. // 行业
  295. result = await sectorStore.query({ is_use: '0' })
  296. if ($checkRes(result)) sectorList.value = result.data
  297. // 城市
  298. result = await regionStore.area({ level: 'province', code: 22 })
  299. if ($checkRes(result)) cityList.value = result.data
  300. }
  301. // 字典数据转换
  302. const getDict = (data, model) => {
  303. if (data) {
  304. let res
  305. if (model == 'status') res = statusList.value.find((f) => f.value == data)
  306. else if (model == 'urgent') res = urgentList.value.find((f) => f.value == data)
  307. return get(res, 'label')
  308. }
  309. }
  310. // 添加
  311. const toAdd = () => {
  312. dialog.value = { type: '1', show: true, title: '发布需求' }
  313. }
  314. // 修改
  315. const toEdit = (data) => {
  316. data.time = [data.start_time, data.end_time]
  317. form.value = data
  318. dialog.value = { type: '1', show: true, title: '修改需求' }
  319. }
  320. // 删除
  321. const toDelete = (data) => {
  322. ElMessageBox.confirm(`您确认删除${data.name}该数据?`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' })
  323. .then(async () => {
  324. const res = await store.del(data.id)
  325. if ($checkRes(res, true)) {
  326. search({ skip, limit })
  327. }
  328. })
  329. .catch(() => {})
  330. }
  331. const toSave = async () => {
  332. const data = cloneDeep(form.value)
  333. const other = { status: '0', user: user.value.id }
  334. if (data.time && data.time.length > 1) {
  335. data.start_time = data.time[0]
  336. data.end_time = data.time[1]
  337. }
  338. delete data.time
  339. let res
  340. if (get(data, 'id')) res = await store.update({ ...data, ...other })
  341. else res = await store.create({ ...data, ...other })
  342. if ($checkRes(res, true)) {
  343. key.value = form.value.name
  344. await search({ skip, limit })
  345. await toClose()
  346. await searchSupply({ supplyskip, supplylimit })
  347. width.value = '90%'
  348. dialog.value = { type: '2', show: true, title: '相关供给推荐' }
  349. }
  350. }
  351. const toDraftSave = async () => {
  352. const data = cloneDeep(form.value)
  353. const other = { status: '-2', user: user.value.id }
  354. if (data.time && data.time.length > 1) {
  355. data.start_time = data.time[0]
  356. data.end_time = data.time[1]
  357. }
  358. delete data.time
  359. let res
  360. if (get(data, 'id')) res = await store.update({ ...data, ...other })
  361. else res = await store.create({ ...data, ...other })
  362. if ($checkRes(res, true)) {
  363. key.value = form.value.name
  364. await search({ skip, limit })
  365. await toClose()
  366. await searchSupply({ supplyskip, supplylimit })
  367. width.value = '90%'
  368. dialog.value = { type: '2', show: true, title: '相关供给推荐' }
  369. }
  370. }
  371. // 审核保存
  372. const toExam = async (row) => {
  373. ElMessageBox.confirm(`您确认保存并提交审核该数据?`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' })
  374. .then(async () => {
  375. const data = cloneDeep(row)
  376. let res = await store.update({ id: data.id, status: '0', user: user.value.id })
  377. if ($checkRes(res, true)) {
  378. key.value = row.name
  379. await search({ skip, limit })
  380. await toClose()
  381. await searchSupply({ supplyskip, supplylimit })
  382. width.value = '90%'
  383. dialog.value = { type: '2', show: true, title: '相关供给推荐' }
  384. }
  385. })
  386. .catch(() => {})
  387. }
  388. // 供给列表查询
  389. const searchSupply = async (query = { supplyskip, supplylimit }) => {
  390. supplyskip = query.supplyskip
  391. supplylimit = query.supplylimit
  392. isLoading.value = true
  393. const info = { skip: supplyskip, limit: supplylimit, keyword: key.value }
  394. const res = await esStore.supply(info)
  395. if (res.errcode == '0') {
  396. supplyList.value = res.data
  397. supplytotal.value = res.total
  398. }
  399. setTimeout(() => {
  400. isLoading.value = false
  401. }, 3000) // 假设3秒后加载完成
  402. }
  403. const scurrentPage = ref(1)
  404. // 分页
  405. const schangePage = (page = scurrentPage.value) => {
  406. searchSupply({ supplyskip: (page - 1) * supplylimit, supplylimit: supplylimit })
  407. }
  408. const ssizeChange = (limits) => {
  409. supplylimit = limits
  410. scurrentPage.value = 1
  411. searchSupply({ supplyskip: 0, supplylimit: supplylimit })
  412. }
  413. // 查看详情
  414. const toView = (item) => {
  415. router.push({ path: '/supply/detail', query: { id: item.id || item._id } })
  416. }
  417. const toClose = () => {
  418. importActive.value = 0
  419. url.value = ''
  420. checkedExport.value = []
  421. checkAll.value = false
  422. form.value = { time: [] }
  423. width.value = '50%'
  424. dialog.value = { show: false }
  425. }
  426. // 全选
  427. const handleCheckAllChange = (val) => {
  428. checkedExport.value = val ? formFields.value : []
  429. isIndeterminate.value = false
  430. }
  431. // 选择
  432. const checkedExportChange = (value) => {
  433. let checkedCount = value.length
  434. checkAll.value = checkedCount === formFields.value.length
  435. isIndeterminate.value = checkedCount > 0 && checkedCount < formFields.value.length
  436. }
  437. // 导入数据
  438. const toExpert = () => {
  439. dialog.value = { type: '4', show: true, title: '导入数据' }
  440. }
  441. // 下载导入模板
  442. const toTemplate = () => {
  443. importActive.value = importActive.value + 1
  444. window.open('/产学研用需求模板.xlsx')
  445. }
  446. // 上传Excel
  447. const onSuccess = async (response) => {
  448. importActive.value = importActive.value + 1
  449. url.value = response.uri
  450. }
  451. // 确定导出
  452. const onImport = async () => {
  453. const msgbox = ElMessage({ message: '正在导入中,请稍后...', center: true, duration: 0 })
  454. try {
  455. const res = await utilStore.toImport({ url: url.value })
  456. if (res.errcode == '0') {
  457. if (res.data[0].errorList) {
  458. ElMessageBox.alert(res.data[0].errorList, '错误提示', {
  459. confirmButtonText: 'OK'
  460. })
  461. } else {
  462. ElMessage({ message: '导入成功', type: 'success' })
  463. }
  464. await search({ skip, limit })
  465. await toClose()
  466. }
  467. } catch (error) {
  468. console.error(error)
  469. } finally {
  470. msgbox.close()
  471. }
  472. }
  473. // 导出数据
  474. const toFile = async () => {
  475. if (checkedExport.value.length > 0) {
  476. const reqData = { table: 'demand', config: checkedExport.value, user: user.value.id }
  477. const res = await utilStore.toExport(reqData)
  478. if (res.errcode == '0') {
  479. ElMessage({ type: `success`, message: `导出成功` })
  480. window.open(res.data)
  481. }
  482. toClose()
  483. } else {
  484. ElMessage({ type: `warning`, message: `请选择导出信息字段` })
  485. }
  486. }
  487. // 分页
  488. const changePage = (page = currentPage.value) => {
  489. search({ skip: (page - 1) * limit, limit: limit })
  490. }
  491. const sizeChange = (limits) => {
  492. limit = limits
  493. currentPage.value = 1
  494. search({ skip: 0, limit: limit })
  495. }
  496. </script>
  497. <style scoped lang="scss">
  498. .main {
  499. height: 85vh;
  500. .one {
  501. height: 50px;
  502. display: flex;
  503. justify-content: space-between;
  504. align-items: center;
  505. margin: 0 0 10px 0;
  506. .one_left {
  507. display: flex;
  508. font-size: 16px;
  509. .button {
  510. background: #1875df;
  511. padding: 0 10px;
  512. height: 30px;
  513. color: #fff;
  514. line-height: 30px;
  515. text-align: center;
  516. cursor: default;
  517. margin: 0 10px 0 0;
  518. }
  519. }
  520. }
  521. .thr {
  522. display: flex;
  523. justify-content: center;
  524. margin: 20px 0 0 0;
  525. }
  526. }
  527. .why-enter-from,
  528. .why-leave-to {
  529. opacity: 0;
  530. transform: scale(0.6);
  531. }
  532. .why-enter-to,
  533. .why-leave-from {
  534. opacity: 1;
  535. transform: scale(1);
  536. }
  537. .why-enter-active,
  538. .why-leave-active {
  539. transition: all 2s ease;
  540. }
  541. .dialog {
  542. display: flex;
  543. flex-wrap: wrap;
  544. margin-top: 20px;
  545. .list {
  546. position: relative;
  547. margin-right: 10px;
  548. margin-bottom: 10px;
  549. width: 380px;
  550. box-shadow: 0 0 13px 0 rgba(5, 88, 219, 0.18);
  551. .name {
  552. padding: 10px 20px;
  553. width: 380px;
  554. height: 71px;
  555. background-color: #dce5ff;
  556. font-size: 16px;
  557. line-height: 24px;
  558. color: #0d0d0d;
  559. display: flex;
  560. align-items: center;
  561. }
  562. .other {
  563. padding: 10px 20px 20px;
  564. .other_1 {
  565. padding: 0 10px;
  566. height: 25px;
  567. background-color: #e6f2fd;
  568. border-radius: 2px;
  569. border: solid 1px #cae0f5;
  570. font-size: $global-font-size-14;
  571. line-height: 25px;
  572. color: #0085f5;
  573. }
  574. .other_2 {
  575. display: flex;
  576. justify-content: space-between;
  577. align-items: center;
  578. margin-top: 15px;
  579. font-size: $global-font-size-16;
  580. span {
  581. color: #909090;
  582. }
  583. .state {
  584. position: absolute;
  585. right: 20px;
  586. bottom: 15px;
  587. display: inline-block;
  588. vertical-align: middle;
  589. padding: 0 20px;
  590. height: 30px;
  591. line-height: 30px;
  592. background-image: linear-gradient(90deg, #ff8a00 0, #ff5a00 100%), linear-gradient(#ff7800, #ff7800);
  593. background-blend-mode: normal, normal;
  594. border-radius: 14px;
  595. border: solid 1px #e5e5e5;
  596. color: #fff;
  597. }
  598. }
  599. }
  600. }
  601. .list:hover {
  602. box-shadow: 0 0 5px 0 $global-color-107;
  603. .name {
  604. background-color: $global-color-107;
  605. color: $global-color-fff;
  606. }
  607. }
  608. .page {
  609. margin: 10px 0;
  610. display: flex;
  611. justify-content: center;
  612. }
  613. }
  614. .dialog_thr {
  615. padding: 20px;
  616. .one {
  617. margin: 0 0 10px 0;
  618. }
  619. .two {
  620. margin: 0 0 10px 0;
  621. :deep(.el-checkbox) {
  622. padding: 0 0 20px 0;
  623. }
  624. }
  625. .btn {
  626. text-align: center;
  627. margin: 20px 0 0 0;
  628. }
  629. }
  630. .dialog_four {
  631. padding: 20px;
  632. }
  633. </style>