achievement.vue 23 KB

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