addForm.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806
  1. <template>
  2. <div class='add-form'>
  3. <div class='form2'>
  4. <div class='input-left'>
  5. <el-row :gutter='20'>
  6. <el-col :span='12'>
  7. <div>图例编码</div>
  8. <!-- <el-input v-model='ruleForm.Id' style='width:200px;height:32px;' disabled></el-input> -->
  9. <Input v-model='ruleForm.Id' disabled placeholder style='width:200px' />
  10. </el-col>
  11. <el-col :span='12'>
  12. <div class='start'>图例名称</div>
  13. <el-input v-model='ruleForm.Name' class='reset-input-name' oninput='if(value.length>20)value=value.slice(0,20)'></el-input>
  14. <!-- <Input v-model='ruleForm.Name' placeholder style='width:200px;' @input='if(value.length>11)value=value.slice(0,11)' /> -->
  15. </el-col>
  16. <el-col :span='12' style='margin-top:20px'>
  17. <div class>单位</div>
  18. <!-- <el-input v-model='ruleForm.Unit' style='width:200px;height:32px;'></el-input> -->
  19. <Input v-model='ruleForm.Unit' placeholder style='width:200px' />
  20. </el-col>
  21. <el-col :span='12' style='margin-top:20px'>
  22. <div class='start'>图例类型</div>
  23. <!-- <el-select v-model='ruleForm.Type' placeholder='请选择' style='width:200px;height:32px' @change='initGraph'>
  24. <el-option v-for='item in options' :key='item.value' :label='item.label' :value='item.value'></el-option>
  25. </el-select>-->
  26. <span class='add-form-type'>
  27. <Select
  28. width='200'
  29. height='40'
  30. v-model='ruleForm.Type'
  31. :isReadOnly='true'
  32. @change='initGraph'
  33. :hideClear='true'
  34. :selectdata='options'
  35. placeholder='请选择'
  36. />
  37. </span>
  38. </el-col>
  39. </el-row>
  40. </div>
  41. <div v-show='ruleForm.Type=="Zone" || ruleForm.Type=="Image" || ruleForm.Type =="Line"'>
  42. <div style='color:#646C73'>展示预览</div>
  43. <div class='input-right' ref='graph' style='width:218px;height:114px;'>
  44. <canvas id='canvas' :width='canvasWidth' :height='canvasHeight'></canvas>
  45. </div>
  46. </div>
  47. </div>
  48. <div v-if='ruleForm.Type=="Zone" || ruleForm.Type=="Line"' class='form3'>
  49. <div class='form3-top'>
  50. <span class='form3-span1 start' v-if='ruleForm.Type=="Zone"'>填充色以及透明度</span>
  51. <span class='form3-span3 start'>边框颜色</span>
  52. <span class='form3-span4'>边框线型</span>
  53. <span class='form3-span5'>边框粗细</span>
  54. </div>
  55. <div class='form3-bottom'>
  56. <el-color-picker
  57. v-if='ruleForm.Type=="Zone"'
  58. v-model='ruleForm.FillColor'
  59. style='margin:0 172px 0 10px'
  60. show-alpha
  61. @change='changBgColor'
  62. :color-format='"hex"'
  63. ></el-color-picker>
  64. <el-color-picker v-model='ruleForm.Color' style='margin:0 90px 0 10px' @change='changLineColor'></el-color-picker>
  65. <el-select
  66. v-model='ruleForm.LineDash'
  67. placeholder='请选择'
  68. size='small'
  69. style='width:160px;margin-right:24px'
  70. ref='select1'
  71. @change='changeLineType'
  72. >
  73. <el-option v-for='item in borderLineOption' :key='item.id' :label='item.src' :value='item.id'>
  74. <img :src='item.src' alt />
  75. </el-option>
  76. </el-select>
  77. <div style='position:relative'>
  78. <a-input-number id='inputNumber' v-model='ruleForm.LineWidth' :min='1' :max='10' ref='select' @change='changeLineWidth' />
  79. <span class='line-width'>px</span>
  80. </div>
  81. </div>
  82. </div>
  83. <div v-if='ruleForm.Type=="Image"' class='form5'>
  84. <el-row :gutter='20'>
  85. <el-col :span='16'>
  86. <div class='form5-top start'>上传新图标</div>
  87. <div>
  88. <el-upload
  89. class='upload-demo'
  90. action='https://jsonplaceholder.typicode.com/posts/'
  91. :http-request='getFile'
  92. :file-list='fileList'
  93. :on-change='handleChange'
  94. :on-remove='handleRemove'
  95. >
  96. <el-button size='small' style='color:#1F2329;'>点击上传</el-button>
  97. </el-upload>
  98. </div>
  99. </el-col>
  100. <el-col :span='8'>
  101. <div class='form5-top'>默认图标显示尺寸</div>
  102. <el-input-number
  103. v-model='ruleForm.Size.Width'
  104. @change='handleChangeWidth'
  105. size='small'
  106. :min='1'
  107. :max='2000'
  108. :controls='false'
  109. style='width:72px'
  110. ></el-input-number>
  111. <i style='margin:0 10px'>x</i>
  112. <el-input-number
  113. v-model='ruleForm.Size.Height'
  114. @change='handleChangeHeight'
  115. size='small'
  116. :min='1'
  117. :max='2000'
  118. :controls='false'
  119. style='width:72px'
  120. ></el-input-number>
  121. </el-col>
  122. </el-row>
  123. <!-- <el-row :gutter='20'>
  124. <el-col :span='8'>
  125. <div>宽</div>
  126. <Select
  127. width='200'
  128. height='40'
  129. v-model='ruleForm.Size.Width'
  130. :isReadOnly='true'
  131. :hideClear='true'
  132. :selectdata='kuan'
  133. :placeholder='"请选择"'
  134. style='margin-bottom:10px'
  135. @change='handleKuan'
  136. />
  137. </el-col>
  138. <el-col :span='12'>
  139. <div>高</div>
  140. <Select
  141. width='200'
  142. height='40'
  143. v-model='ruleForm.Size.Height'
  144. :isReadOnly='true'
  145. :hideClear='true'
  146. :selectdata='gao'
  147. :placeholder='"请选择"'
  148. style='margin-bottom:10px'
  149. @change='handleGao'
  150. />
  151. </el-col>
  152. </el-row>-->
  153. </div>
  154. <div v-if='ruleForm.Type!="None"' class='form4'>
  155. <div class='form4-top'>
  156. <span class='form4-span1'>专业/设备、位置类型</span>
  157. <span class='form4-span3' v-if='ruleForm.Type!="Line"'>铺位可视化typeid</span>
  158. </div>
  159. <div class='form3-bottom'>
  160. <span class='device-list'>
  161. <TreeSelect
  162. tipPlace='top'
  163. width='200'
  164. style=' margin-right:48px;'
  165. :returnParentNode='false'
  166. :isShowAllChoice='true'
  167. :choseArea='true'
  168. :data='deviceList'
  169. @change='treeConfirmDevice'
  170. :hideClear='true'
  171. :lastStage='true'
  172. :selectedIds='InfosList'
  173. :notNull='true'
  174. />
  175. </span>
  176. <TreeSelect
  177. v-if='ruleForm.Type!="Line"'
  178. tipPlace='top'
  179. width='200'
  180. style='margin-left:10px'
  181. :notNull='true'
  182. :returnParentNode='false'
  183. :isShowAllChoice='true'
  184. :choseArea='true'
  185. :data='typeVisualization'
  186. @change='treeConfirm'
  187. @focusChange='focusChange'
  188. :hideClear='true'
  189. :selectedIds='InfoTypeIdList'
  190. :lastStage='true'
  191. />
  192. </div>
  193. </div>
  194. </div>
  195. </template>
  196. <script>
  197. import { queryDeviceAndPOsition, createLegend, updateLegend, uploadImg, getVisualization } from '@/api/legendLibrary.js'
  198. import transparency from './../legendLibrary/transparency.js'
  199. import { FloorView } from '@/lib/FloorView'
  200. import { FloorScene } from '@/lib/FloorScene'
  201. import { GraphView } from '@/lib/GraphView'
  202. export default {
  203. data() {
  204. return {
  205. maxlength: 20,
  206. options: [
  207. {
  208. id: 'None',
  209. name: '非图例'
  210. },
  211. {
  212. id: 'Zone',
  213. name: '区域'
  214. },
  215. {
  216. id: 'Image',
  217. name: '图标'
  218. },
  219. {
  220. id: 'Line',
  221. name: '线条'
  222. }
  223. ],
  224. kuan: [
  225. { id: '16', name: '16' },
  226. { id: '32', name: '32' },
  227. { id: '64', name: '64' }
  228. ],
  229. gao: [
  230. { id: '16', name: '16' },
  231. { id: '32', name: '32' },
  232. { id: '64', name: '64' }
  233. ],
  234. selectedIds: [],
  235. borderLineOption: [
  236. {
  237. id: 'solid',
  238. src: require('@/assets/imgs/1pxlines.png')
  239. },
  240. {
  241. id: 'dashed',
  242. src: require('@/assets/imgs/dashedLines.png')
  243. },
  244. {
  245. id: 'dotted',
  246. src: require('@/assets/imgs/dotLines.png')
  247. }
  248. ],
  249. linepxOption: [
  250. {
  251. id: 1,
  252. src: require('@/assets/imgs/1pxline.jpg')
  253. },
  254. {
  255. id: 2,
  256. src: require('@/assets/imgs/2pxline.jpg')
  257. },
  258. {
  259. id: 3,
  260. src: require('@/assets/imgs/3pxline.jpg')
  261. }
  262. ],
  263. fileList: [],
  264. file: '',
  265. // this.ruleForm.Url 图标的key,/serve/topology-wanda/Picture/query/${this.ruleForm.Url}
  266. value: '',
  267. linepxObject: {
  268. src: ''
  269. },
  270. borderLineOptionObject: {
  271. src: ''
  272. },
  273. canvasWidth: 28,
  274. canvasHeight: 28,
  275. view: null,
  276. scene: null,
  277. typeVisualization: [],
  278. // majorList: [], //专业
  279. deviceList: [],
  280. formData: [], //上传乳品的formdata
  281. key: 1,
  282. InfoLocals: undefined, //工程信息化
  283. // InfoSystems: undefined, //工程信息化专业/系统
  284. InfoTypeIds: undefined //铺位可视化typeid
  285. }
  286. },
  287. props: ['ruleForm', 'title', 'InfosList', 'InfoTypeIdList'],
  288. methods: {
  289. handleChangeWidth(val) {
  290. this.$set(this.ruleForm.Size, 'Width', val)
  291. },
  292. handleChangeHeight(val) {
  293. this.$set(this.ruleForm.Size, 'Height', val)
  294. },
  295. //业下设备分类和位置分类树形结构
  296. initQueryDeviceAndPOsition() {
  297. let postParams = {}
  298. queryDeviceAndPOsition({ postParams }).then(res => {
  299. this.deviceList = res.data.map(i => {
  300. i.children &&
  301. i.children.map(child => {
  302. child.id = child.id + child.type
  303. child.name = child.name
  304. })
  305. return i
  306. })
  307. })
  308. },
  309. handleRemove(file, fileList) {
  310. // console.log(file, fileList, 'file')
  311. this.ruleForm.Url = ''
  312. },
  313. //获取上传图片的信息 canvas得到图的url
  314. getFile(file) {
  315. this.file = file.file
  316. var reader = new FileReader()
  317. reader.readAsDataURL(this.file)
  318. reader.onload = e => {
  319. this.view.url = e.target.result
  320. }
  321. },
  322. create() {
  323. //新增
  324. if (this.ruleForm.FillColor.indexOf('#') > -1) {
  325. this.ruleForm.FillColor = this.ruleForm.FillColor
  326. } else {
  327. this.ruleForm.FillColor = this.hexify(this.ruleForm.FillColor)
  328. }
  329. let postParams = {
  330. Content: [this.ruleForm]
  331. }
  332. createLegend({ postParams }).then(res => {
  333. if (res.Result == 'success') {
  334. this.$message.success('添加图例成功!')
  335. this.$emit('addSuccess')
  336. this.fileList = []
  337. } else {
  338. this.$message.error(res.Message)
  339. }
  340. })
  341. },
  342. update() {
  343. //修改
  344. if (this.ruleForm.FillColor.indexOf('#') > -1) {
  345. this.ruleForm.FillColor = this.ruleForm.FillColor
  346. } else {
  347. this.ruleForm.FillColor = this.hexify(this.ruleForm.FillColor)
  348. }
  349. let postParams = {
  350. Content: [this.ruleForm]
  351. }
  352. updateLegend({ postParams }).then(res => {
  353. if (res.Result == 'success') {
  354. this.$message.success('图例修改成功!')
  355. this.$emit('updateSuccess')
  356. this.fileList = []
  357. } else {
  358. this.$message.error(res.Message)
  359. }
  360. })
  361. },
  362. handleChange(file, fileList) {
  363. this.fileList = fileList.slice(-1)
  364. },
  365. clearGraphy(type) {
  366. if (!(this.view instanceof GraphView)) {
  367. this.view = new GraphView('canvas')
  368. }
  369. this.view.type = type
  370. if (this.ruleForm.FillColor.indexOf('#') > -1) {
  371. this.view.bgcolor = this.ruleForm.FillColor
  372. } else {
  373. this.view.bgcolor = this.hexify(this.ruleForm.FillColor)
  374. }
  375. this.view.strokecolor = this.ruleForm.Color
  376. this.view.lineType = this.ruleForm.LineDash
  377. this.view.lineWidth = this.ruleForm.LineWidth
  378. //修改的时候canvas的image可以预览
  379. if (this.ruleForm.Url && type == 2) {
  380. let url = `/serve/topology-wanda/Picture/query/${this.ruleForm.Url}`
  381. this.view.url = url
  382. } else {
  383. this.view.url = ''
  384. }
  385. },
  386. initGraph() {
  387. if (this.ruleForm.Type == 'Zone' || this.ruleForm.Type == 'Line' || this.ruleForm.Type == 'Image') {
  388. //1是区域 0是线条
  389. this.clearGraphy(this.ruleForm.Type == 'Zone' ? 1 : this.ruleForm.Type == 'Line' ? 0 : 2)
  390. }
  391. },
  392. //rgba转成16进制
  393. hexify(color) {
  394. if (color) {
  395. let opacity = '',
  396. rgb = color.split(','),
  397. r = parseInt(rgb[0].split('(')[1]),
  398. g = parseInt(rgb[1]),
  399. b = parseInt(rgb[2].split(')')[0]),
  400. a = Number(rgb[3].split(')')[0] || 1) * 100
  401. transparency.forEach((i, index) => {
  402. if (index == a) {
  403. opacity = i
  404. }
  405. })
  406. var hex = '#' + ((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1) + opacity
  407. return hex
  408. } else {
  409. return
  410. }
  411. },
  412. // 背景颜色改变
  413. changBgColor(val) {
  414. if (this.view) {
  415. this.view.bgcolor = this.hexify(val)
  416. }
  417. },
  418. // 线条颜色改变
  419. changLineColor(val) {
  420. if (this.view) {
  421. this.view.strokecolor = val
  422. }
  423. },
  424. //线条类型改变
  425. changeLineType(val) {
  426. if (val) {
  427. this.borderLineOptionObject = val && this.borderLineOption.find(item => item.id == val)
  428. this.$nextTick(() => {
  429. if (this.$refs.select1 && this.$refs.select1.$el) {
  430. this.$refs.select1.$el.children[0].children[0].setAttribute(
  431. 'style',
  432. 'background:#ffffff url(' + this.borderLineOptionObject.src + ') 10px center no-repeat;color:transparent;'
  433. )
  434. }
  435. })
  436. this.$set(this.ruleForm, 'LineDash', val)
  437. }
  438. if (this.view) {
  439. this.view.lineType = val
  440. }
  441. },
  442. //线条宽度
  443. changeLineWidth(val) {
  444. this.$set(this.ruleForm, 'LineWidth', val)
  445. if (this.view) {
  446. this.view.lineWidth = Number(val)
  447. }
  448. },
  449. base64ToFile(dataurl, filename) {
  450. //console.log(dataurl, 'url')
  451. let arr = dataurl.split(',')
  452. let mime = arr[0].match(/:(.*?);/)[1]
  453. if (!filename) {
  454. filename = `${new Date().getTime()}.${mime.substr(mime.indexOf('/') + 1)}`
  455. }
  456. let bstr = atob(arr[1])
  457. let n = bstr.length
  458. let u8arr = new Uint8Array(n)
  459. while (n--) {
  460. u8arr[n] = bstr.charCodeAt(n)
  461. }
  462. return new File([u8arr], filename, { type: mime })
  463. },
  464. // 把canvas图保存到图片服务器
  465. saveImg() {
  466. let vm = this
  467. if (!this.file && this.ruleForm.Type == 'Image') {
  468. //修改图片的时候没有重新上传图片
  469. if (this.title == '添加图例库') {
  470. this.create()
  471. this.$emit('addSuccess')
  472. this.view.canvas.clearRect(0, 0, this.width, this.height)
  473. } else if (this.title == '修改图例库') {
  474. this.update()
  475. this.$emit('updateSuccess')
  476. this.view.canvas.clearRect(0, 0, this.width, this.height)
  477. }
  478. } else {
  479. if (this.view) {
  480. let data = this.view.canvasView.toDataURL('image/png')
  481. var formData = new FormData()
  482. if (this.ruleForm.Type == 'Zone' || this.ruleForm.Type == 'Line') {
  483. formData.append('file', this.base64ToFile(data))
  484. } else {
  485. formData.append('file', this.file)
  486. }
  487. let postParams = formData
  488. uploadImg({ postParams }).then(res => {
  489. if (res.Result == 'success') {
  490. this.$set(vm.ruleForm, 'Url', res.EntityList[0])
  491. this.$message.success('图标上传成功!')
  492. if (this.title == '添加图例库') {
  493. this.create()
  494. this.$emit('addSuccess')
  495. this.view.canvas.clearRect(0, 0, this.width, this.height)
  496. } else if (this.title == '修改图例库') {
  497. this.update()
  498. this.$emit('updateSuccess')
  499. this.view.canvas.clearRect(0, 0, this.width, this.height)
  500. }
  501. }
  502. })
  503. }
  504. }
  505. },
  506. // 铺位可视化
  507. treeConfirm(data) {
  508. //console.log(data, 'data')
  509. this.$set(this.ruleForm, 'InfoTypeId', data)
  510. },
  511. //位置/设备
  512. treeConfirmDevice(id, info) {
  513. let InfoSystem = [],
  514. InfoSystems = [],
  515. InfoLocal = []
  516. this.deviceList.forEach(i => {
  517. i.children.length > 0 &&
  518. i.children.forEach(j => {
  519. if (id.includes(j.id)) {
  520. InfoSystems.push(i)
  521. }
  522. })
  523. })
  524. InfoSystem = JSON.parse(JSON.stringify(InfoSystems))
  525. .reduce((prev, element) => {
  526. if (!prev.find(el => el.id == element.id)) {
  527. prev.push(element)
  528. }
  529. return prev
  530. }, [])
  531. .map(i => {
  532. if (i.children.length) {
  533. delete i.children
  534. }
  535. return i
  536. })
  537. InfoLocal = info.map(i => {
  538. return {
  539. type: i.id.split('')[i.id.length - 1],
  540. name: i.name,
  541. id: i.id.substr(0, i.id.length - 1)
  542. }
  543. })
  544. this.$set(this.ruleForm, 'InfoLocal', InfoLocal)
  545. this.$set(this.ruleForm, 'InfoSystem', InfoSystem)
  546. },
  547. focusChange(status) {
  548. // //console.log('focusChange', status)
  549. },
  550. visualization() {
  551. getVisualization({}).then(res => {
  552. this.typeVisualization =
  553. res.Data &&
  554. res.Data.map(i => {
  555. return {
  556. id: i.Id,
  557. name: i.Name,
  558. children: i.Children
  559. ? i.Children.map(j => {
  560. return {
  561. id: j.Id,
  562. name: j.Id + '-' + j.Name
  563. }
  564. })
  565. : []
  566. }
  567. })
  568. })
  569. },
  570. getTree(data) {
  571. return {
  572. id: data.Id,
  573. name: data.Name,
  574. children: data.Children ? data.Children.map(i => this.getTree(i)) : []
  575. }
  576. },
  577. focusChange(status) {
  578. //console.log('focusChange', status)
  579. }
  580. },
  581. mounted() {
  582. console.log(this.ruleForm, 'form')
  583. this.initQueryDeviceAndPOsition()
  584. this.visualization()
  585. if (this.title == '修改图例库') {
  586. this.changeLineWidth(this.ruleForm.LineWidth)
  587. this.changeLineType(this.ruleForm.LineDash)
  588. this.initGraph()
  589. }
  590. },
  591. watch: {
  592. 'ruleForm.Id': {
  593. handler() {
  594. this.initQueryDeviceAndPOsition()
  595. this.visualization()
  596. if (this.title == '修改图例库') {
  597. if (this.ruleForm.Type != 'Image') {
  598. this.changeLineWidth(this.ruleForm.LineWidth)
  599. this.changeLineType(this.ruleForm.LineDash)
  600. }
  601. this.initGraph()
  602. }
  603. }
  604. }
  605. }
  606. }
  607. </script>
  608. <style lang='less' scoped>
  609. .add-form {
  610. color: #646c73;
  611. margin: 16px 0 0 72px;
  612. font-size: 14px;
  613. .start::after {
  614. content: '*';
  615. color: #f56c6c;
  616. margin-left: 4px;
  617. }
  618. .ant-input-number {
  619. border-radius: 4px 0 0 4px;
  620. }
  621. .reset-input-name {
  622. /deep/ .el-input__inner {
  623. width: 200px;
  624. height: 32px;
  625. line-height: 32px;
  626. // border: 1px solid #c3c7cb;
  627. }
  628. }
  629. // .add-form-type {
  630. // /deep/ .p-select .p-select-header {
  631. // height: 40px;
  632. // line-height: 40px;
  633. // border: 1px solid #dcdfe6;
  634. // }
  635. // /deep/ .p-select .p-select-header .p-select-selected-box .p-select-fakePlaceholder {
  636. // line-height: 40px;
  637. // }
  638. // /deep/ .p-select .p-select-header .p-select-triangle{
  639. // top: 12px;
  640. // }
  641. // }
  642. .form2 {
  643. display: flex;
  644. .input-left {
  645. width: 500px;
  646. .title {
  647. margin-right: 100px;
  648. margin: 20px 0 8px 0;
  649. display: inline-block;
  650. width: 250px;
  651. }
  652. .type {
  653. margin-right: 100px;
  654. margin: 20px 0 8px 0;
  655. display: inline-block;
  656. width: 250px;
  657. }
  658. }
  659. .input-right {
  660. width: 200px;
  661. height: 114px;
  662. background: rgba(245, 246, 247, 1);
  663. display: inline-block;
  664. display: flex;
  665. align-items: center;
  666. justify-content: center;
  667. img {
  668. width: 28px;
  669. height: 28px;
  670. }
  671. .model1 {
  672. width: 56px;
  673. height: 6px;
  674. }
  675. .model {
  676. width: 56px;
  677. height: 40px;
  678. }
  679. }
  680. }
  681. .form3 {
  682. width: 720px;
  683. height: 86px;
  684. background: rgba(245, 246, 247, 1);
  685. border-radius: 4px;
  686. margin-top: 20px;
  687. .form3-top {
  688. padding: 12px 0 8px 12px;
  689. .form3-span1 {
  690. margin-right: 102px;
  691. }
  692. .form3-span2 {
  693. margin-right: 78px;
  694. }
  695. .form3-span3 {
  696. margin-right: 64px;
  697. }
  698. .form3-span4 {
  699. margin-right: 130px;
  700. }
  701. }
  702. .form3-bottom {
  703. display: flex;
  704. }
  705. }
  706. .form4 {
  707. .form4-top {
  708. padding: 20px 0 8px 0;
  709. .form4-span1 {
  710. margin-right: 32px;
  711. }
  712. .form4-span2 {
  713. margin-right: 102px;
  714. }
  715. .form4-span3 {
  716. margin-left: 96px;
  717. }
  718. }
  719. }
  720. .form5 {
  721. width: 720px;
  722. // height: 86px;
  723. background: rgba(245, 246, 247, 1);
  724. border-radius: 4px;
  725. margin-top: 20px;
  726. padding-left: 12px;
  727. padding-bottom: 20px;
  728. .form5-top {
  729. padding: 12px 0 8px 0;
  730. }
  731. }
  732. .upload-demo {
  733. display: flex;
  734. }
  735. .line-width {
  736. display: inline-block;
  737. width: 35px;
  738. height: 32px;
  739. background: rgba(239, 240, 241, 1);
  740. border-radius: 0 4px 4px 0;
  741. border-right: 1px solid rgba(195, 198, 203, 1);
  742. border-top: 1px solid rgba(195, 198, 203, 1);
  743. border-bottom: 1px solid rgba(195, 198, 203, 1);
  744. position: absolute;
  745. text-align: center;
  746. line-height: 26px;
  747. }
  748. }
  749. </style>
  750. <style >
  751. .p-select-area {
  752. width: 480px !important;
  753. }
  754. .p-select-area .p-transfer-left {
  755. width: 236px !important;
  756. }
  757. .p-tree-node-check .p-tree-node-title .p-tree-node-name {
  758. word-break: break-all !important;
  759. white-space: normal !important;
  760. word-break: break-all !important;
  761. word-wrap: break-word !important;
  762. height: auto !important;
  763. line-height: 21px;
  764. }
  765. .p-select-area .p-transfer-right {
  766. width: 245px !important;
  767. }
  768. .p-select-area .p-transfer-right .p-transfer-selected .p-transfer-selected-item {
  769. height: 30px !important;
  770. }
  771. .p-select-area .p-transfer-right .p-transfer-selected .p-transfer-selected-item > span {
  772. word-break: break-all !important;
  773. white-space: normal !important;
  774. word-break: break-all !important;
  775. word-wrap: break-word !important;
  776. height: auto !important;
  777. line-height: 16px;
  778. display: block;
  779. width: 225px;
  780. padding-right: 3px;
  781. }
  782. .p-popover-tip-content .p-popover-tip-content-item {
  783. margin-left: 4px;
  784. margin-bottom: 8px;
  785. padding-left: 4px;
  786. padding-right: 4px;
  787. background-color: #f5f6f7 !important;
  788. border-radius: 2px;
  789. max-width: 100%;
  790. overflow: hidden;
  791. white-space: nowrap;
  792. }
  793. </style>