achievement.vue 23 KB

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