index.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822
  1. <template>
  2. <div class="app-container " >
  3. <el-row :gutter="10">
  4. <el-col :span="4">
  5. <div class=" infinite-list" style="overflow:auto; background-color: #fff;border-radius: 10px;padding: 10px 20px;height: 96vh;">
  6. <p style="margin: 0;border-left: 6px solid #03BF8A;margin-left: -20px;padding-left: 10px;font-weight: 800;">选择设备</p>
  7. <div :class="ishge == index ? 'anche' : ''" style=" height: 36px;;line-height: 36px;margin-top: 10px;padding: 0 10px; cursor: pointer;"v-for="(item,index) in equipmentManageList" :key="index">
  8. <div @click="ishg(item,index)" style="display: flex;align-items: center;justify-content: space-between;">
  9. <div style="font-size: 16px;
  10. color: #333333;"> {{item.equipmentName == null?'暂无数据' : item.equipmentName}}</div>
  11. <img src="../../../assets/images/icon_htgl_zd.png" alt="" style="width: 10px;height: 12px;">
  12. </div>
  13. </div>
  14. </div>
  15. </el-col>
  16. <el-col :span="open == false? 20 : 14">
  17. <div style="background-color: #fff;padding: 20px;border-radius: 10px; padding-bottom: 0; padding-top: 10px;">
  18. <p style="margin: 0; font-weight: 800;font-size: 16px;color: #343434;display: flex;align-items: center;margin-bottom: 20px;border-left: 6px solid #03BF8A;margin-left: -20px;">
  19. <!-- <img src="../../../assets/images/icon_htgl_btzs.png" alt="" style="width: 16px;height: 20px;"> -->
  20. <span style="margin-left: 10px;">搜索条件</span>
  21. </p>
  22. <div style="padding-bottom: 0;margin-bottom: 20px;">
  23. <el-form class="qucheu" :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="88px">
  24. <el-form-item label="通道编号" prop="channelNum">
  25. <el-input
  26. v-model="queryParams.channelNum"
  27. placeholder="请输入通道编号"
  28. clearable
  29. @keyup.enter.native="handleQuery"
  30. />
  31. </el-form-item>
  32. <el-form-item style="border: 0;">
  33. <el-button style="background-color: #03BF8A; border-color: #03BF8A;" type="primary" size="mini" @click="handleQuery">查询 </el-button>
  34. <el-button size="mini" @click="resetQuery">重置</el-button>
  35. </el-form-item>
  36. </el-form>
  37. </div>
  38. </div>
  39. <el-row :gutter="10" class="mb8">
  40. <el-col :span="24">
  41. <div style="display: flex; justify-content: space-between;">
  42. <p style="margin: 0; font-weight: 800;font-size: 16px;color: #343434;display: flex;align-items: center;margin-bottom: 20px;border-left: 6px solid #03BF8A;">
  43. <!-- <img src="../../../assets/images/icon_htgl_btzs.png" alt="" style="width: 16px;height: 20px;"> -->
  44. <span style="margin-left: 10px;">通道列表</span>
  45. </p>
  46. <div>
  47. <el-button
  48. type="success"
  49. plain
  50. size="mini"
  51. @click="handleAdd"
  52. v-hasPermi="['manage:channelNumber:add']"
  53. >新增</el-button>
  54. <el-button
  55. type="danger"
  56. plain
  57. size="mini"
  58. :disabled="multiple"
  59. @click="handleDelete"
  60. v-hasPermi="['manage:channelNumber:remove']"
  61. >删除</el-button>
  62. <el-button
  63. type="warning"
  64. plain
  65. size="mini"
  66. @click="handleExport"
  67. v-hasPermi="['manage:channelNumber:export']"
  68. >导出</el-button>
  69. </div>
  70. </div>
  71. </el-col>
  72. </el-row>
  73. <div class=" infinite-list" :style="dynamicStyle" >
  74. <div style="display: flex;flex-wrap: wrap;" v-if="inhgeshwe">
  75. <!-- item.channelDetails == null?'height:200px; margin-bottom: 10px;' : -->
  76. <div class="box_3dr flex-col" style="margin-bottom: 10px;" v-for="(item,index ) in channelNumberList" :key="index" >
  77. <div class="box_4 flex-row" style="justify-content: space-between;margin: 0;">
  78. <div @click="handleSelectionChange(item)" style="display: flex;align-items: center;">
  79. <img
  80. class="thumbnail_21"
  81. referrerpolicy="no-referrer"
  82. src="../../../assets/images/icon_lby_gx_normal.png"
  83. v-show="!item.isnum && isgsow"
  84. />
  85. <img
  86. class="thumbnail_21"
  87. referrerpolicy="no-referrer"
  88. src="../../../assets/images/icon_lby_gx_selcted.png"
  89. v-show="item.isnum && isgsow"
  90. />
  91. <span class="text_19">{{item.channelNum}}</span>
  92. </div>
  93. <div>
  94. <img
  95. class="image_1"
  96. style="cursor: pointer;"
  97. referrerpolicy="no-referrer"
  98. @click="handleUpdate(item)"
  99. v-hasPermi="['manage:equipmentManage:edit']"
  100. src="../../../assets/images/icon_lby_gdtc_bj.png"
  101. />
  102. <img
  103. class="thumbnail_22"
  104. style="cursor: pointer;"
  105. @click="handleDelete(item)"
  106. v-hasPermi="['manage:equipmentManage:remove']"
  107. referrerpolicy="no-referrer"
  108. src="../../../assets/images/icon_lby_gdtc_del.png"/>
  109. </div>
  110. </div>
  111. <div style="padding: 10px;">
  112. <div class="box_6 flex-row jiange" style=" align-items: center;">
  113. <span class="text_21">视频地址: </span>
  114. <el-tooltip class="item" effect="dark" :content="item.videoAddress" placement="top-start">
  115. <div style=" margin-left: 12px; font-weight: 500;font-size: 13px;color: #222327; white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
  116. {{item.videoAddress}}
  117. </div>
  118. </el-tooltip>
  119. </div>
  120. <div class="box_6 flex-row jiange" style="align-items: center;">
  121. <span class="text_21">协议类型: </span>
  122. <div style="margin-left: 12px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
  123. <dict-tag :options="dict.type.probing_protocol" :value="item.protocolType"/>
  124. </div>
  125. </div>
  126. <!-- <span class="text_20">设备地址:192.168.1.1</span> -->
  127. <div class="box_6 flex-row jiange">
  128. <span class="text_21">设备账号: </span>
  129. <div style=" margin-left: 12px; font-weight: 500;font-size: 13px;color: #222327; white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
  130. {{item.account}}
  131. </div>
  132. </div>
  133. <div class="box_6 flex-row jiange">
  134. <span class="text_21">设备密码: </span>
  135. <div style=" margin-left: 12px; font-weight: 500;font-size: 13px;color: #222327; white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
  136. {{item.password}}
  137. </div>
  138. </div>
  139. <div class="box_6 flex-row jiange" style=" align-items: center;">
  140. <span class="text_21">预览端口: </span>
  141. <div style=" margin-left: 12px; font-weight: 500;font-size: 13px;color: #222327; white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
  142. {{item.equipmentAddress}}
  143. </div>
  144. </div>
  145. <div class="box_6 flex-row jiange" style=" align-items: center;" >
  146. <span class="text_21">通道描述: </span>
  147. <el-tooltip class="item" effect="dark" :content="item.channelDetails" placement="top-start">
  148. <div style=" margin-left: 12px; font-weight: 500;font-size: 13px;color: #222327; white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
  149. {{item.channelDetails}}
  150. </div>
  151. </el-tooltip>
  152. </div>
  153. </div>
  154. </div>
  155. </div>
  156. </div>
  157. <paginations
  158. v-show="total>0"
  159. :total="total"
  160. :page.sync="queryParams.pageNum"
  161. :limit.sync="queryParams.pageSize"
  162. @pagination="getList"
  163. />
  164. </el-col>
  165. <el-col :span="6" v-if="open">
  166. <div style="background-color: #fff;padding: 10px 20px;border-radius: 10px; padding-bottom: 10px;">
  167. <p style="margin: 0; font-weight: 800;font-size: 16px;color: #343434;display: flex;align-items: center;margin-bottom: 20px;border-left: 6px solid #03BF8A;">
  168. <!-- <img src="../../../assets/images/icon_htgl_btzs.png" alt="" style="width: 16px;height: 20px;"> -->
  169. <span style="margin-left: 10px;">通道信息</span>
  170. </p>
  171. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  172. <el-row>
  173. <el-col :span="24" v-if="xiugai">
  174. <el-form-item label="设备管理" prop="protocolType">
  175. <el-select style="width:100%" v-model="form.equipmentId" placeholder="请选择设备管理">
  176. <el-option
  177. @click="issheg(dict)"
  178. v-for="dict in equipmentManageList"
  179. :key="dict.equipmentId"
  180. :label="dict.equipmentName"
  181. :value="dict.equipmentId"
  182. ></el-option>
  183. </el-select>
  184. </el-form-item>
  185. </el-col>
  186. <el-col :span="24">
  187. <el-form-item label="编号" prop="channelNum">
  188. <el-input v-model="form.channelNum" placeholder="请输入通道编号" />
  189. </el-form-item>
  190. </el-col>
  191. <el-col :span="24">
  192. <el-form-item label="视频地址" prop="videoAddress">
  193. <el-input v-model="form.videoAddress" placeholder="请输入视频地址" />
  194. </el-form-item>
  195. </el-col>
  196. <el-col :span="24">
  197. <el-form-item label="账号" prop="account">
  198. <el-input v-model="form.account" placeholder="请输入账号" />
  199. </el-form-item>
  200. </el-col>
  201. <el-col :span="24">
  202. <el-form-item label="探测协议" prop="protocolType">
  203. <el-select style="width:100%" v-model="form.protocolType" placeholder="请选择探测协议类型">
  204. <el-option
  205. v-for="dict in dict.type.probing_protocol"
  206. :key="dict.value"
  207. :label="dict.label"
  208. :value="dict.value"
  209. ></el-option>
  210. </el-select>
  211. </el-form-item>
  212. </el-col>
  213. <el-col :span="24">
  214. <el-form-item label="密码" prop="password">
  215. <el-input v-model="form.password" placeholder="请输入密码" />
  216. </el-form-item>
  217. </el-col>
  218. <el-col :span="24">
  219. <el-form-item label="预览端口" prop="port">
  220. <el-input v-model="form.port" placeholder="请输入内容" />
  221. </el-form-item>
  222. </el-col>
  223. <el-col :span="24">
  224. <el-form-item label="备注" prop="remark">
  225. <el-input v-model="form.remark" placeholder="请输入内容" />
  226. </el-form-item>
  227. </el-col>
  228. <el-col :span="24">
  229. <el-form-item label="通道描述" prop="channelDetails">
  230. <el-input v-model="form.channelDetails" type="textarea" placeholder="请输入内容" />
  231. </el-form-item>
  232. </el-col>
  233. </el-row>
  234. <!-- <el-form-item label="删除标志" prop="delFlag">
  235. <el-input v-model="form.delFlag" placeholder="请输入删除标志" />
  236. </el-form-item> -->
  237. </el-form>
  238. <div slot="footer" class="dialog-footer" style="display: flex;justify-content: flex-end;">
  239. <el-button style="background-color:#03BF8A ; border-color: #03BF8A;" type="primary" @click="submitForm">确 定</el-button>
  240. <el-button style="background-color:#DDEBE7 ; border-color: #DDEBE7; color: #475669;" @click="cancel">取 消</el-button>
  241. </div>
  242. </div>
  243. </el-col>
  244. </el-row>
  245. </div>
  246. </template>
  247. <script>
  248. import { listChannelNumber, getChannelNumber, delChannelNumber, addChannelNumber, updateChannelNumber } from "@/api/system/channelNumber"
  249. import { listEquipmentManageNoPage, } from "@/api/manage/equipmentManage"
  250. import Masonry from "masonry-layout";
  251. export default {
  252. name: "ChannelNumber",
  253. dicts: ['probing_protocol'],
  254. data() {
  255. return {
  256. // 遮罩层
  257. loading: true,
  258. // 选中数组
  259. ids: [],
  260. // 非单个禁用
  261. single: true,
  262. // 非多个禁用
  263. multiple: true,
  264. // 显示搜索条件
  265. showSearch: true,
  266. // 总条数
  267. total: 0,
  268. // 通道管理表格数据
  269. channelNumberList: [],
  270. equipmentManageList:[],
  271. // 弹出层标题
  272. title: "",
  273. // 是否显示弹出层
  274. open: false,
  275. // 查询参数
  276. queryParams: {
  277. pageNum: 1,
  278. pageSize: 8,
  279. channelNum: null,
  280. videoAddress: null,
  281. protocolType: null,
  282. channelDetails: null,
  283. },
  284. // 表单参数
  285. form: {},
  286. // 表单校验
  287. rules: {
  288. channelNum: [
  289. { required: true, message: "不能为空", trigger: "blur" }
  290. ],
  291. account: [
  292. { required: true, message: "不能为空", trigger: "blur" }
  293. ],
  294. // password: [
  295. // { required: true, message: "不能为空", trigger: "blur" }
  296. // ],
  297. videoAddress: [
  298. { required: true, message: "不能为空", trigger: "blur" }
  299. ],
  300. },
  301. tableMaxHeight:'200',
  302. equipmentManageList:[],
  303. ishge:0,
  304. singleg:true,
  305. xiugai:false,
  306. ishsouetan:false,
  307. isgsow:true,
  308. manid:0,
  309. inhgeshwe:true
  310. }
  311. },
  312. created() {
  313. this.getList()
  314. this.getListsehb()
  315. window.onresize = () => {
  316. this.changeTableMaxHeight()
  317. }
  318. this.changeTableMaxHeight()
  319. },
  320. computed: {
  321. dynamicStyle() {
  322. return {
  323. overflow:'auto',
  324. height: this.tableMaxHeight + 'px',
  325. }
  326. }
  327. },
  328. mounted() {
  329. window.onresize = () => {
  330. this.changeTableMaxHeight()
  331. }
  332. this.changeTableMaxHeight()
  333. },
  334. methods: {
  335. // 切换点击
  336. sande(row){
  337. console.log(row)
  338. this.isgsow = false
  339. row.isnum = !row.isnum
  340. this.isgsow = true
  341. let nhde = []
  342. let nsg = ''
  343. this.equipmentManageList.filter(rou=>{
  344. if(rou.isnum == true){
  345. nhde.push(rou.equipmentId)
  346. }
  347. })
  348. if(nhde.length == 1){
  349. this.equipmentManageList.filter(rou=>{
  350. if(rou.isnum == true){
  351. console.log(rou.equipmentId)
  352. this.manid = rou.equipmentId
  353. console.log(this.manid)
  354. }
  355. })
  356. this.singleg = false
  357. }else{
  358. // this.manid = row.
  359. this.singleg = true
  360. }
  361. // console.log()
  362. },
  363. /** 查询通道管理列表 */
  364. getList() {
  365. this.loading = true
  366. listChannelNumber(this.queryParams).then(response => {
  367. this.channelNumberList = response.rows
  368. this.channelNumberList.filter(rou=>{
  369. rou.isnum = false
  370. })
  371. this.total = response.total
  372. this.loading = false
  373. })
  374. },
  375. /** 查询设备管理列表 */
  376. getListsehb() {
  377. this.loading = true
  378. listEquipmentManageNoPage().then(response => {
  379. this.equipmentManageList = response.rows
  380. if(this.equipmentManageList.length !=0){
  381. // this.queryParams.equipmentId = this.equipmentManageList[0].equipmentId
  382. this.form.equipmentId = this.equipmentManageList[0].equipmentId
  383. this.form.equipmentNum = this.equipmentManageList[0].equipmentNum
  384. this.form.equipmentName = this.equipmentManageList[0].equipmentName
  385. this.form.equipmentIp = this.equipmentManageList[0].equipmentIp
  386. }
  387. this.loading = false
  388. })
  389. },
  390. // 设备点击
  391. ishg(row,index){
  392. this.ishge = index
  393. this.queryParams.equipmentId = row.equipmentId
  394. this.form.equipmentId = row.equipmentId
  395. this.form.equipmentNum = row.equipmentNum
  396. this.form.equipmentName = row.equipmentName
  397. this.form.equipmentIp = row.equipmentIp
  398. this.getList()
  399. },
  400. // 取消按钮
  401. cancel() {
  402. this.open = false
  403. this.reset()
  404. },
  405. // 表单重置
  406. reset() {
  407. this.form = {
  408. channelId: null,
  409. channelNum: null,
  410. videoAddress: null,
  411. protocolType: '1',
  412. channelDetails: null,
  413. delFlag: null,
  414. createBy: null,
  415. createTime: null,
  416. updateBy: null,
  417. updateTime: null,
  418. remark: null,
  419. equipmentId:null,
  420. port:'80'
  421. }
  422. this.resetForm("form")
  423. },
  424. /** 搜索按钮操作 */
  425. handleQuery() {
  426. this.queryParams.pageNum = 1
  427. this.getList()
  428. },
  429. /** 重置按钮操作 */
  430. resetQuery() {
  431. this.queryParams.equipmentId = null
  432. this.resetForm("queryForm")
  433. this.handleQuery()
  434. },
  435. // 多选框选中数据
  436. handleSelectionChange(selection) {
  437. // console.log(selection)
  438. this.isgsow = false
  439. selection.isnum = !selection.isnum
  440. this.isgsow = true
  441. let nhseg= []
  442. this.channelNumberList.filter(rou=>{
  443. if(rou.isnum == true){
  444. nhseg.push(rou)
  445. }
  446. })
  447. console.log(nhseg)
  448. this.ids = nhseg.map(item => item.channelId)
  449. console.log(this.ids,nhseg)
  450. this.single = nhseg.length!==1
  451. this.multiple = !nhseg.length
  452. },
  453. /** 新增按钮操作 */
  454. handleAdd() {
  455. this.reset()
  456. this.open = true
  457. // this.title = "添加通道管理"
  458. this.xiugai = false
  459. this.inhgeshwe = false
  460. this.form.port = '80'
  461. if(this.equipmentManageList.length !=0){
  462. this.form.equipmentId = this.equipmentManageList[0].equipmentId
  463. this.form.equipmentNum = this.equipmentManageList[0].equipmentNum
  464. this.form.equipmentName = this.equipmentManageList[0].equipmentName
  465. }
  466. this.inhgeshwe = true
  467. },
  468. /** 修改按钮操作 */
  469. handleUpdate(row) {
  470. this.reset()
  471. const channelId = row.channelId || this.ids
  472. getChannelNumber(channelId).then(response => {
  473. this.form = response.data
  474. this.xiugai = true
  475. this.open = true
  476. // this.title = "修改通道管理"
  477. })
  478. },
  479. /** 提交按钮 */
  480. submitForm() {
  481. this.$refs["form"].validate(valid => {
  482. if (valid) {
  483. if (this.form.channelId != null) {
  484. updateChannelNumber(this.form).then(response => {
  485. this.$modal.msgSuccess("修改成功")
  486. this.open = false
  487. this.getList()
  488. })
  489. } else {
  490. addChannelNumber(this.form).then(response => {
  491. this.$modal.msgSuccess("新增成功")
  492. this.open = false
  493. this.getList()
  494. })
  495. }
  496. }
  497. })
  498. },
  499. /** 删除按钮操作 */
  500. handleDelete(row) {
  501. const channelIds = row.channelId || this.ids
  502. this.$modal.confirm('是否确认删除通道管理数据项?').then(function() {
  503. return delChannelNumber(channelIds)
  504. }).then(() => {
  505. this.getList()
  506. this.$modal.msgSuccess("删除成功")
  507. }).catch(() => {})
  508. },
  509. /** 导出按钮操作 */
  510. handleExport() {
  511. this.download('system/channelNumber/export', {
  512. ...this.queryParams
  513. }, `channelNumber_${new Date().getTime()}.xlsx`)
  514. },
  515. // 设备选择
  516. issheg(row){
  517. this.form.equipmentId = row.equipmentId
  518. this.form.equipmentNum = row.equipmentNum
  519. this.form.equipmentName = row.equipmentName
  520. },
  521. canshu(row){
  522. this.$router.push({
  523. path: '/huabuhaik',
  524. query: {
  525. 'id':row.channelId,
  526. }
  527. })
  528. },
  529. // 获取屏幕高度
  530. showFilterForm () {
  531. this.filterActive = !this.filterActive
  532. this.changeTableMaxHeight()
  533. },
  534. changeTableMaxHeight () {
  535. let height = document.body.offsetHeight // 网页可视区域高度
  536. // if (this.filterActive) {
  537. // this.tableMaxHeight = height - 320
  538. // } else {
  539. this.tableMaxHeight = height - 250
  540. // }
  541. console.log(height)
  542. }
  543. }
  544. }
  545. </script>
  546. <style lang="scss">
  547. .el-table .el-table__header-wrapper th, .el-table .el-table__fixed-header-wrapper th{
  548. background-color:#F5F6F8;
  549. }
  550. .el-checkbox__input.is-checked .el-checkbox__inner{
  551. background-color: #03BF8A;
  552. border-color: #03BF8A;
  553. }
  554. .el-checkbox__input.is-indeterminate .el-checkbox__inner{
  555. background-color: #03BF8A;
  556. border-color: #03BF8A;
  557. }
  558. .qucheu{
  559. .el-form-item--small.el-form-item{
  560. border: 1px solid #E6E6E6;
  561. }
  562. .el-input__inner{
  563. border:0;
  564. }
  565. }
  566. .anche{
  567. background: #E7F1EE !important;
  568. border-radius: 4px !important;
  569. font-weight: 400;
  570. div{
  571. color: #03BF8A !important;
  572. }
  573. }
  574. </style>
  575. <style scoped>
  576. .el-table .el-table__header-wrapper th, .el-table .el-table__fixed-header-wrapper th{
  577. background-color:#F5F6F8;
  578. }
  579. .el-checkbox__input.is-checked .el-checkbox__inner{
  580. background-color: #03BF8A;
  581. border-color: #03BF8A;
  582. }
  583. .el-checkbox__input.is-indeterminate .el-checkbox__inner{
  584. background-color: #03BF8A;
  585. border-color: #03BF8A;
  586. }
  587. .flex-col {
  588. display: flex;
  589. flex-direction: column;
  590. }
  591. .flex-row {
  592. display: flex;
  593. flex-direction: row;
  594. }
  595. .justify-between {
  596. display: flex;
  597. justify-content: space-between;
  598. }
  599. .box_3dr {
  600. background-color: rgba(255, 255, 255, 1);
  601. border-radius: 10px;
  602. position: relative;
  603. width: 49%;
  604. height: 100%;
  605. /* padding-bottom: 15px; */
  606. margin-left: 3px ;
  607. margin-right: 3px;
  608. }
  609. .box_4 {
  610. width: 100%;
  611. /* height: 18px; */
  612. padding: 11px 10px 11px 10px;
  613. border-bottom: 1px solid #E6E6E6;
  614. }
  615. .thumbnail_21 {
  616. width: 18px;
  617. height: 18px;
  618. }
  619. .text_19 {
  620. /* width: 97px; */
  621. height: 13px;
  622. overflow-wrap: break-word;
  623. color: rgba(34, 35, 39, 1);
  624. font-size: 14px;
  625. font-family: PingFang-SC-Bold;
  626. font-weight: 700;
  627. text-align: left;
  628. white-space: nowrap;
  629. line-height: 13px;
  630. margin: 0 0 0 11px;
  631. }
  632. .image_1 {
  633. width:14px;
  634. height: 14px;
  635. /* margin-left: 51px; */
  636. }
  637. .thumbnail_22 {
  638. width: 14px;
  639. height: 14px;
  640. margin: 3px 0 0 10px;
  641. }
  642. .image_2 {
  643. width: 248px;
  644. height: 1px;
  645. margin-top: 9px;
  646. }
  647. .box_5 {
  648. background-color: rgba(255, 255, 255, 1);
  649. /* width: 220px; */
  650. height: 118px;
  651. padding: 10px;
  652. /* margin: 12px 0 0 14px; */
  653. }
  654. .text_20 {
  655. /* width: 139px; */
  656. height: 14px;
  657. overflow-wrap: break-word;
  658. color: rgba(34, 35, 39, 1);
  659. font-size: 14px;
  660. font-family: PingFang-SC-Medium;
  661. font-weight: 500;
  662. text-align: left;
  663. white-space: nowrap;
  664. line-height: 8px;
  665. margin: 0 0 14px 0;
  666. }
  667. .box_6 {
  668. /* width: 126px; */
  669. height: 24px;
  670. margin: 0;
  671. }
  672. .text_21 {
  673. width: 60px;
  674. height: 14px;
  675. overflow-wrap: break-word;
  676. color: rgba(34, 35, 39, 1);
  677. font-size: 14px;
  678. font-family: PingFang-SC-Medium;
  679. font-weight: 500;
  680. text-align: left;
  681. white-space: nowrap;
  682. line-height: 8px;
  683. margin-top: 5px;
  684. }
  685. .text-wrapper_7 {
  686. background-color: rgba(255, 244, 235, 1);
  687. border-radius: 4px;
  688. height: 24px;
  689. border: 1px solid rgba(253, 127, 16, 1);
  690. width: 58px;
  691. }
  692. .text_22 {
  693. width: 42px;
  694. height: 13px;
  695. overflow-wrap: break-word;
  696. color: rgba(253, 127, 16, 1);
  697. font-size: 14px;
  698. font-family: PingFang-SC-Medium;
  699. font-weight: 500;
  700. text-align: left;
  701. white-space: nowrap;
  702. line-height: 46px;
  703. margin: 6px 0 0 8px;
  704. }
  705. .text_23 {
  706. width: 145px;
  707. height: 14px;
  708. overflow-wrap: break-word;
  709. color: rgba(34, 35, 39, 1);
  710. font-size: 14px;
  711. font-family: PingFang-SC-Medium;
  712. font-weight: 500;
  713. text-align: left;
  714. white-space: nowrap;
  715. line-height: 46px;
  716. margin: 8px 0 0 14px;
  717. }
  718. .text_24 {
  719. width: 152px;
  720. height: 14px;
  721. overflow-wrap: break-word;
  722. color: rgba(34, 35, 39, 1);
  723. font-size: 14px;
  724. font-family: PingFang-SC-Medium;
  725. font-weight: 500;
  726. text-align: left;
  727. white-space: nowrap;
  728. line-height: 46px;
  729. margin: 13px 0 0 14px;
  730. }
  731. .text_25 {
  732. width: 154px;
  733. height: 14px;
  734. overflow-wrap: break-word;
  735. color: rgba(34, 35, 39, 1);
  736. font-size: 14px;
  737. font-family: PingFang-SC-Medium;
  738. font-weight: 500;
  739. text-align: left;
  740. white-space: nowrap;
  741. line-height: 46px;
  742. margin: 13px 0 15px 15px;
  743. }
  744. .box_7 {
  745. box-shadow: 0px 0px 10px 0px rgba(209, 209, 209, 1);
  746. background-color: rgba(255, 255, 255, 1);
  747. border-radius: 8px;
  748. position: absolute;
  749. left: 159px;
  750. top: 35px;
  751. width: 88px;
  752. height: 70px;
  753. }
  754. .image-text_2 {
  755. width: 58px;
  756. height: 15px;
  757. margin: 13px 0 0 16px;
  758. }
  759. .thumbnail_23 {
  760. width: 15px;
  761. height: 15px;
  762. }
  763. .text-group_2 {
  764. width: 27px;
  765. height: 14px;
  766. overflow-wrap: break-word;
  767. color: rgba(61, 69, 91, 1);
  768. font-size: 14px;
  769. font-family: PingFang-SC-Medium;
  770. font-weight: 500;
  771. text-align: left;
  772. white-space: nowrap;
  773. line-height: 80px;
  774. margin-top: 1px;
  775. }
  776. .image-text_3 {
  777. width: 59px;
  778. height: 17px;
  779. margin: 11px 0 14px 15px;
  780. }
  781. .thumbnail_24 {
  782. width: 16px;
  783. height: 17px;
  784. }
  785. .text-group_3 {
  786. width: 27px;
  787. height: 14px;
  788. overflow-wrap: break-word;
  789. color: rgba(61, 69, 91, 1);
  790. font-size: 14px;
  791. font-family: PingFang-SC-Medium;
  792. font-weight: 500;
  793. text-align: left;
  794. white-space: nowrap;
  795. line-height: 80px;
  796. margin-top: 2px;
  797. }
  798. .jiange{
  799. margin-bottom: 3px;
  800. align-items: center;
  801. }
  802. </style>