smartReportImgSet.vue 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851
  1. <template>
  2. <div class="smart-report-img-set-page">
  3. <div class="top-wrap">
  4. <el-input v-model="keyword" :placeholder="$t('SystemManage.BaseConfig.resource_placeholder01')" clearable style="width:200px;margin-right:20px" @input="handleSearch"></el-input>
  5. <el-select :placeholder="$t('SystemManage.BaseConfig.resource_placeholder02')" v-model="type" clearable style="width:200px" @change="handleSearch">
  6. <el-option :label="$t('SystemManage.BaseConfig.resource_type01')" :value="1"></el-option>
  7. <el-option :label="$t('SystemManage.BaseConfig.resource_type02')" :value="2"></el-option>
  8. </el-select>
  9. <el-button type="primary" style="float:right" @click="handleShowUploadPop" v-permission="permissionBtn.baseConfigPermission.etaBaseConfig_source_upload">{{$t('SystemManage.BaseConfig.resource_btn04')}}</el-button>
  10. </div>
  11. <div class="select-status-box" v-if="selectIds.length>0">
  12. <el-checkbox
  13. :indeterminate="isIndeterminate"
  14. v-model="checkAll"
  15. @change="handleCheckAllChange"
  16. >全选</el-checkbox>
  17. <span>已选择{{selectIds.length}}项</span>
  18. <span @click="selectIds=[]" style="color:#1146DB;margin-left:20px;cursor: pointer;">{{$t('SystemManage.BaseConfig.resource_btn03')}}</span>
  19. <span @click="handleBatchDel" style="color:#1146DB;margin-left:20px;cursor: pointer;">{{$t('Table.delete_btn')}}</span>
  20. </div>
  21. <ul class="img-list-wrap">
  22. <li class="img-item" v-for="item in list" :key="item.ResourceId">
  23. <div :class="['select-box',selectIds.includes(item.ResourceId)?'select-box-active':'']" @click="handleSelectItem(item)"></div>
  24. <div class="opt-box">
  25. <div class="item" @click="handleShowImgFull(item)">
  26. <img src="~@/assets/img/icons/fullsreen.png" alt="">
  27. </div>
  28. <el-dropdown @command="handleClickOpt">
  29. <div class="item">
  30. <img src="~@/assets/img/icons/more.png" alt="">
  31. </div>
  32. <el-dropdown-menu slot="dropdown">
  33. <el-dropdown-item :command="{type:'edit',data:item}">{{$t('Dialog.title_prefix_edit')}}</el-dropdown-item>
  34. <el-dropdown-item :command="{type:'del',data:item}" style="color: #AD352F;">{{$t('Table.delete_btn')}}</el-dropdown-item>
  35. </el-dropdown-menu>
  36. </el-dropdown>
  37. </div>
  38. <img class="img" :src="item.ImgUrl" alt="">
  39. <p class="name">{{item.ImgName}}</p>
  40. </li>
  41. </ul>
  42. <tableNoData :text="$t('Table.prompt_slogan')" v-if="list.length===0"/>
  43. <!-- <el-col :span="24" class="toolbar">
  44. <el-pagination
  45. layout="total,prev,pager,next"
  46. background
  47. @current-change="handleCurrentChange"
  48. :page-size="pageSize"
  49. :total="total"
  50. style="float: right"
  51. />
  52. </el-col> -->
  53. <!-- 上传图片弹窗 -->
  54. <el-dialog
  55. :visible.sync="uploadImgPop"
  56. :title="formData.id?$t('SystemManage.BaseConfig.resource_btn05'):$t('SystemManage.BaseConfig.resource_btn04')"
  57. :close-on-click-modal="false"
  58. :append-to-body="true"
  59. @close="cancelHandle"
  60. custom-class="classify-dialog"
  61. center
  62. width="550px"
  63. v-dialogDrag
  64. >
  65. <el-form
  66. :model="formData"
  67. :rules="formRules"
  68. ref="ruleForm"
  69. label-width="120px"
  70. class="upload-img-form"
  71. >
  72. <div class="step-box">
  73. <div class="step-item" v-for="(item,index) in steps">
  74. <div class="step" :class="[step==(index+1) && 'active',step>(index+1) && 'finish']">
  75. <template v-if="!(step>(index+1))">
  76. <div class="step-number" >{{ index+1 }}</div>
  77. <span class="step-text">{{ item }}</span>
  78. </template>
  79. <template v-else>
  80. <i class="el-icon-success" style="font-size: 18px;color: #0052D9;"></i>
  81. <span class="step-text" style="color: #333333;">{{$t('SystemManage.BaseConfig.completed_step')}}</span>
  82. </template>
  83. </div>
  84. <div class="line" v-if="index==0"></div>
  85. </div>
  86. </div>
  87. <template v-if="step==1">
  88. <el-form-item :label="$t('SystemManage.BaseConfig.resource_label01')" prop="name">
  89. <el-input v-model="formData.name" :placeholder="$t('SystemManage.BaseConfig.resource_placeholder01')"></el-input>
  90. </el-form-item>
  91. <el-form-item :label="$t('SystemManage.BaseConfig.resource_label02')" prop="type">
  92. <el-radio-group v-model="formData.type">
  93. <el-radio :label="1">{{$t('SystemManage.BaseConfig.resource_type01')}}</el-radio>
  94. <el-radio :label="2">{{$t('SystemManage.BaseConfig.resource_type02')}}</el-radio>
  95. </el-radio-group>
  96. </el-form-item>
  97. <el-form-item
  98. :label="$t('SystemManage.BaseConfig.resource_btn01')"
  99. prop="imgUrl"
  100. >
  101. <el-upload
  102. action=""
  103. accept="image/*"
  104. :http-request="handleUploadImg"
  105. :show-file-list="false"
  106. >
  107. <div class="upload-box">
  108. <template v-if="!formData.imgUrl">
  109. <i class="el-icon-plus" style="font-size: 24px;"></i>
  110. </template>
  111. <template v-else>
  112. <img class="upload-img" :src="formData.imgUrl" alt="">
  113. </template>
  114. </div>
  115. </el-upload>
  116. <p>{{$t('SystemManage.BaseConfig.upload_suggest')}}</p>
  117. </el-form-item>
  118. </template>
  119. <template v-else>
  120. <draggable tag="div" class="layout-options" :sort="false" :list="layoutOptions" @start="dropStart">
  121. <div class="option-item" v-for="item in layoutOptions" :key="item.value">
  122. <div class="option-item-title">{{ item.label }}</div>
  123. <img src="~@/assets/img/icons/layout-option-icon.png" class="option-item-icon" />
  124. </div>
  125. </draggable>
  126. <div class="layout-background" @dragover.prevent @drop="handleAddOption">
  127. <img :src="formData.imgUrl" class="layout-image" ref="layoutImage" />
  128. <vue-drag-resize :parentLimitation="true" :sticks="['bl','br']" :minw="10" :minh="10"
  129. :w="item.width" :h="item.height" @resizestop="(p)=>resizeStop(p,item.value)" @dragstop="(p)=>dragStop(p,item.value)"
  130. v-for="item in layoutItems" :key="item.value" :x="item.x" :y="item.y" :z="item.z" @clicked="()=>optionClick(item)">
  131. <div class="layout-item" @contextmenu.prevent="(e)=>rightClick(e,item)" @blur="blur" tabindex="-1"
  132. :style="{fontFamily:item.family,fontSize:item.size+'px',fontWeight:item.weight,textAlign:item.align,color:item.color}">{{ item.label }}</div>
  133. </vue-drag-resize>
  134. <div
  135. class="right-mouse-menu"
  136. ref="rightMenuRef"
  137. v-if="rightMouseMenu.show"
  138. :style="{
  139. left: rightMouseMenu.left,
  140. top: rightMouseMenu.top,
  141. }"
  142. >
  143. <div class="item" @click="optionDel" style="color: #AD352F;">{{$t('Table.delete_btn')}}</div>
  144. </div>
  145. </div>
  146. <div class="layout-font">
  147. <div class="layout-font-title">{{$t('SystemManage.BaseConfig.text_style')}}</div>
  148. <div class="layout-font-options">
  149. <el-select v-model="layoutFont.family" class="font-options-row">
  150. <el-option :label="item" :value="item" v-for="item in layoutFontF" :key="item"></el-option>
  151. </el-select>
  152. <el-select v-model="layoutFont.size" class="font-options-row">
  153. <el-option :label="item" :value="item" v-for="item in layoutFontS" :key="item"></el-option>
  154. </el-select>
  155. <el-select v-model="layoutFont.weight" class="font-options-row">
  156. <el-option :label="item.label" :value="item.value" v-for="item in layoutFontW" :key="item.value"></el-option>
  157. </el-select>
  158. <el-select v-model="layoutFont.align" class="font-options-row">
  159. <el-option :label="item.label" :value="item.value" v-for="item in layoutFontAlign" :key="item.value"></el-option>
  160. </el-select>
  161. <el-color-picker v-model="layoutFont.color"></el-color-picker>
  162. </div>
  163. </div>
  164. </template>
  165. <div style="text-align: center;padding: 30px 0;margin-top: 60px;">
  166. <el-button type="primary" style="width:120px;" @click="Steptoggle('+')" v-if="step==1">{{$t('Dialog.next_step')}}</el-button>
  167. <el-button type="primary" plain style="width:120px;" @click="Steptoggle('-')" v-else>{{$t('Dialog.prev_step')}}</el-button>
  168. <el-button type="primary" style="margin-left:20px;width:120px;" @click="handleSave" v-if="step==2">{{$t('Dialog.complete_btn')}}</el-button>
  169. </div>
  170. </el-form>
  171. </el-dialog>
  172. <el-image-viewer
  173. v-if="showViewer"
  174. :on-close="()=>{this.picShowList=[];this.showViewer = false}"
  175. :url-list="picShowList"
  176. />
  177. </div>
  178. </template>
  179. <script>
  180. import {bannerupload} from '@/api/api.js';
  181. import {apiSmartReport} from '@/api/modules/smartReport'
  182. import ElImageViewer from 'element-ui/packages/image/src/image-viewer';
  183. import draggable from 'vuedraggable'
  184. import VueDragResize from 'vue-drag-resize'
  185. export default {
  186. components:{ElImageViewer,draggable,VueDragResize},
  187. data() {
  188. return {
  189. keyword:'',
  190. type:'',
  191. page:1,
  192. pageSize:1000,
  193. list:[],
  194. total:0,
  195. uploadImgPop:false,
  196. formData:{
  197. id:0,
  198. name:'',
  199. type:'',
  200. imgUrl:'',
  201. layout:''
  202. },
  203. formRules:{
  204. name:[{ required: true, message: this.$t('SystemManage.BaseConfig.resource_placeholder01')||'请输入图片名称', trigger: 'blur' }],
  205. type:[{ required: true, message: this.$t('SystemManage.BaseConfig.resource_placeholder02')||'请选择图片类型', trigger: 'change' }],
  206. imgUrl:[{ required: true, message: this.$t('SystemManage.BaseConfig.resource_placeholder03')||'请上传图片', trigger: 'change' }]
  207. },
  208. step:1,
  209. steps:[this.$t('SystemManage.BaseConfig.select_layout'),this.$t('SystemManage.BaseConfig.edit_layout')],
  210. /**
  211. * value不能变
  212. * 一开始定义为创建时间,后面改为发布时间
  213. */
  214. layoutOptions:[{value:'研报标题',label:this.$t('SystemManage.BaseConfig.report_title')},//研报标题
  215. {value:'研报作者',label:this.$t('SystemManage.BaseConfig.report_author')},//研报作者
  216. {value:'创建时间',label:this.$t('SystemManage.BaseConfig.report_release_time')}],//发布时间
  217. layoutItems:[],
  218. // currentLayout:{},
  219. layoutFont:{
  220. family:'Arial',
  221. size:'14',
  222. weight:'normal',
  223. align:'left',
  224. color:'#333333'
  225. },
  226. rightMouseMenu:{
  227. show: false,
  228. left: '99999px',
  229. top: '99999px',
  230. value: '',
  231. },
  232. dragIndex:0,
  233. layoutFontF:['微软雅黑','宋体','黑体','仿宋','楷体','隶书','幼圆','思源宋体','思源黑体','Helvetica','Arial','Arial Black','Georgia','Impact','Tahoma','Times New Roman','Andale Mono','Verdana','Book Antiqua','Comic Sans MS','Courier New','Webdings','Wingdings'],
  234. // layoutFontF:['Arial','Georgia','Impact','Tahoma','Times New Roman','Verdana','思源宋体','思源黑体'],
  235. layoutFontS:['12','13','14','15','16','18','20','24','28','32','36','40'],
  236. layoutFontW:[{value:'normal',label:this.$t('SystemManage.BaseConfig.style_font_w_normal')},
  237. {value:'bold',label:this.$t('SystemManage.BaseConfig.style_font_w_bold')}],
  238. layoutFontAlign:[{value:'left',label:this.$t('SystemManage.BaseConfig.style_text_align_left')},
  239. {value:'center',label:this.$t('SystemManage.BaseConfig.style_text_align_center')},
  240. {value:'right',label:this.$t('SystemManage.BaseConfig.style_text_align_right')}],
  241. showViewer:false,
  242. picShowList:[],
  243. rigtMenuHideTimer:null,
  244. delIds:[],//要删除的id集合
  245. selectIds:[],
  246. isIndeterminate:false,
  247. checkAll:false
  248. }
  249. },
  250. created() {
  251. this.getImgList()
  252. },
  253. mounted(){
  254. },
  255. methods: {
  256. handleSelectItem(e){
  257. const index=this.selectIds.indexOf(e.ResourceId)
  258. if(index>-1){
  259. this.selectIds.splice(index,1)
  260. }else{
  261. this.selectIds.push(e.ResourceId)
  262. }
  263. this.checkAll=this.selectIds.length===this.list.length?true:false
  264. this.isIndeterminate=this.selectIds.length>0&&this.selectIds.length<this.list.length
  265. },
  266. handleCheckAllChange(val){
  267. if(val){
  268. this.selectIds=this.list.map(item=>item.ResourceId)
  269. }else{
  270. this.selectIds=[]
  271. }
  272. },
  273. //分页页码跳转
  274. handleCurrentChange(current) {
  275. this.page = current;
  276. this.getImgList();
  277. },
  278. //资源库列表
  279. async getImgList(){
  280. // 获取列表数据重置选择数据
  281. this.selectIds=[]
  282. this.isIndeterminate=false
  283. this.checkAll=false
  284. this.delIds=[]
  285. const res=await apiSmartReport.imgReourceList({
  286. CurrentIndex:this.page,
  287. PageSize:this.pageSize,
  288. Type:this.type,
  289. Keyword:this.keyword
  290. })
  291. if(res.Ret===200){
  292. this.list=res.Data.List||[]
  293. this.total=res.Data.Paging.Totals
  294. }
  295. },
  296. handleSearch(){
  297. this.page=1
  298. this.getImgList()
  299. },
  300. handleUploadImg(file){
  301. //图片大小和格式限制
  302. const {size,type} = file.file
  303. let form = new FormData();
  304. form.append('file',file.file);
  305. bannerupload(form).then(res=>{
  306. // console.log(res);
  307. if(res.Ret!==200) return
  308. this.formData.imgUrl=res.Data.ResourceUrl
  309. })
  310. },
  311. handleSave(){
  312. this.$refs.ruleForm.validate((valid)=>{
  313. if(valid){
  314. let backgroundWidth = this.$refs.layoutImage.width
  315. let backgroundGHeight = this.$refs.layoutImage.height
  316. let layoutStr = this.layoutItems.map(item =>{
  317. return {
  318. value:item.value,
  319. label:item.label,
  320. left:item.x/backgroundWidth*100+'%',
  321. top:item.y/backgroundGHeight*100+'%',
  322. width:item.width/backgroundWidth*100+'%',
  323. height:item.height/backgroundGHeight*100+'%',
  324. family:item.family,
  325. size:item.size,
  326. weight:item.weight,
  327. align:item.align,
  328. color:item.color,
  329. }
  330. })
  331. const params={
  332. Type:this.formData.type,
  333. ImgUrl:this.formData.imgUrl,
  334. ImgName:this.formData.name,
  335. Style:JSON.stringify(layoutStr)
  336. }
  337. if(this.formData.id){
  338. // 编辑
  339. apiSmartReport.imgReourceEdit({
  340. ResourceId:this.formData.id,
  341. ...params
  342. }).then(res=>{
  343. if(res.Ret===200){
  344. this.$message.success(this.$t('MsgPrompt.edit_msg'))
  345. this.page=1
  346. this.getImgList()
  347. this.handleCloseImgUpload()
  348. }
  349. })
  350. return
  351. }
  352. apiSmartReport.imgReourceAdd(params).then(res=>{
  353. if(res.Ret===200){
  354. this.$message.success(this.$t('MsgPrompt.add_msg'))
  355. this.page=1
  356. this.getImgList()
  357. this.handleCloseImgUpload()
  358. }
  359. })
  360. }
  361. })
  362. },
  363. convertLabel(value){
  364. let row = this.layoutOptions.find(it => it.value==value)
  365. return row?row.label:value
  366. },
  367. handleCloseImgUpload(){
  368. this.uploadImgPop=false
  369. },
  370. cancelHandle(){
  371. this.step=1
  372. this.formData.id=0
  373. this.formData.name=''
  374. this.formData.type=''
  375. this.formData.imgUrl=''
  376. this.formData.layout=''
  377. this.layoutItems=[]
  378. this.layoutFont={
  379. family:'Arial',
  380. size:'14',
  381. weight:'normal',
  382. align:'left',
  383. color:'#333333'
  384. }
  385. this.rightMouseMenu={
  386. show: false,
  387. left: '99999px',
  388. top: '99999px',
  389. value: '',
  390. },
  391. this.$nextTick(()=>{
  392. this.$refs.ruleForm.clearValidate()
  393. })
  394. },
  395. handleShowImgFull(e){
  396. console.log(e);
  397. this.picShowList=[e.ImgUrl]
  398. this.showViewer=true
  399. },
  400. handleClickOpt(e){
  401. if(e.type==='del'){
  402. this.delIds=[e.data.ResourceId]
  403. this.handleImgDel()
  404. }
  405. if(e.type==='edit'){
  406. this.formData.id=e.data.ResourceId
  407. this.formData.name=e.data.ImgName
  408. this.formData.type=e.data.Type
  409. this.formData.imgUrl=e.data.ImgUrl
  410. this.formData.layout=e.data.Style
  411. this.uploadImgPop=true
  412. }
  413. },
  414. handleShowUploadPop(){
  415. this.formData.id=0
  416. this.formData.name=''
  417. this.formData.type=''
  418. this.formData.imgUrl=''
  419. this.formData.layout=''
  420. this.uploadImgPop=true
  421. },
  422. handleBatchDel(){
  423. this.delIds=this.selectIds
  424. this.handleImgDel()
  425. },
  426. handleImgDel(){
  427. this.$confirm(this.$t('SystemManage.BaseConfig.resource_del_msg'),this.$t('Confirm.prompt'),{
  428. // confirmButtonText: '确定',
  429. // cancelButtonText: '取消',
  430. type: 'warning'
  431. }).then(()=>{
  432. apiSmartReport.imgReourceDel({ResourceIds:this.delIds.join(',')}).then(res=>{
  433. if(res.Ret===200){
  434. this.$message.success(this.$t('MsgPrompt.delete_msg'))
  435. this.page=1
  436. this.getImgList()
  437. }
  438. })
  439. })
  440. },
  441. // 切换步骤
  442. Steptoggle(t){
  443. if(t=='+'){
  444. this.$refs.ruleForm.validate((valid)=>{
  445. if(valid){
  446. this.step++
  447. }
  448. })
  449. }else{
  450. this.step--
  451. }
  452. if(this.step==2){
  453. this.setLayoutItems()
  454. }
  455. },
  456. // 设置布局设置
  457. setLayoutItems(){
  458. this.$nextTick(()=>{
  459. let backgroundWidth = this.$refs.layoutImage?this.$refs.layoutImage.width:400
  460. let backgroundGHeight = this.$refs.layoutImage?this.$refs.layoutImage.height:100
  461. try {
  462. this.layoutItems=this.formData.layout?JSON.parse(this.formData.layout).map(it =>{
  463. return {
  464. value:it.value,
  465. label:this.convertLabel(it.value),
  466. x:this.percent2Number(it.left,backgroundWidth),
  467. y:this.percent2Number(it.top,backgroundGHeight),
  468. z:1,
  469. width:this.percent2Number(it.width,backgroundWidth),
  470. height:this.percent2Number(it.height,backgroundGHeight),
  471. family:it.family,
  472. size:it.size,
  473. weight:it.weight,
  474. align:it.align,
  475. color:it.color,
  476. }
  477. }):[]
  478. } catch (error) {
  479. console.log(error,'error');
  480. this.layoutItems=[]
  481. }
  482. // console.log(this.layoutItems,'this.layoutItems');
  483. })
  484. },
  485. percent2Number(per,entirety){
  486. per=per+''
  487. let decimals = (+per.substring(0,per.length-1))/100
  488. return entirety*decimals
  489. },
  490. dropStart(e){
  491. this.dragIndex = e.oldIndex
  492. },
  493. handleAddOption(e){
  494. let options = this.layoutOptions[this.dragIndex]
  495. let layoutItem = this.layoutItems.find(it => it.value == options.value)
  496. if(layoutItem){
  497. layoutItem.z = Math.max(...this.layoutItems.map(t => t.z))+1
  498. this.$message.warning(this.$i18nt.locale==='zh'?`已添加${options.label}!`:`${options.label} already added!`)
  499. return
  500. }
  501. this.layoutItems.push({
  502. value:options.value,
  503. label:options.label,
  504. x:e.layerX,
  505. y:e.layerY,
  506. z:1,
  507. width:120,
  508. height:20,
  509. family:"Arial",
  510. size:"14px",
  511. weight:"normal",
  512. align:"left",
  513. color:'#333333'
  514. })
  515. },
  516. resizeStop({width,height},value){
  517. let item = this.layoutItems.find(it => it.value==value)
  518. if(!item) return
  519. item.width=width
  520. item.height=height
  521. },
  522. dragStop({left,top},value){
  523. let item = this.layoutItems.find(it => it.value==value)
  524. if(!item) return
  525. item.x=left
  526. item.y=top
  527. },
  528. optionClick(op){
  529. this.layoutFont = op
  530. },
  531. rightClick(e,item){
  532. clearTimeout(this.rigtMenuHideTimer)
  533. this.rightMouseMenu.left = e.clientX + "px";
  534. this.rightMouseMenu.top = e.clientY + "px";
  535. this.rightMouseMenu.value = item.value;
  536. this.rightMouseMenu.show = true;
  537. },
  538. optionDel(){
  539. this.layoutItems=this.layoutItems.filter(it => it.value!=this.rightMouseMenu.value)
  540. this.rightMouseMenu.show=false
  541. },
  542. blur(){
  543. this.$refs.rightMenuRef.style.opacity=0
  544. setTimeout(()=>{
  545. this.rightMouseMenu.show=false
  546. },300)
  547. }
  548. },
  549. }
  550. </script>
  551. <style lang="scss" scoped>
  552. .ghost-class{
  553. display: none;
  554. }
  555. .smart-report-img-set-page{
  556. padding: 30px;
  557. padding-bottom: 100px;
  558. .select-status-box{
  559. background-color: #F8F8F8;
  560. padding: 10px 20px;
  561. margin-top: 20px;
  562. }
  563. }
  564. .img-list-wrap{
  565. margin-top: 20px;
  566. display: flex;
  567. flex-wrap: wrap;
  568. gap: 20px;
  569. .img-item{
  570. position: relative;
  571. width: 160px;
  572. cursor: pointer;
  573. .img{
  574. display: block;
  575. width: 100%;
  576. height: 160px;
  577. background-color: var(--gary-gy-3-disabled, #EBEFF6);
  578. object-fit: contain !important;
  579. box-sizing: border-box;
  580. &:hover{
  581. border: 1px solid #3375e1;
  582. }
  583. }
  584. .name{
  585. margin-top: 5px;
  586. display: -webkit-box;
  587. overflow: hidden;
  588. text-overflow: ellipsis;
  589. -webkit-line-clamp: 2;
  590. line-break: anywhere;
  591. -webkit-box-orient: vertical;
  592. }
  593. .select-box{
  594. position: absolute;
  595. left: 1px;
  596. top: 1px;
  597. width: 12px;
  598. height: 12px;
  599. background-color: #EBEFF6;
  600. display: none;
  601. }
  602. .select-box-active{
  603. background-image: url('~@/assets/img/smartReport/icon17.png');
  604. background-repeat: no-repeat;
  605. background-size: cover;
  606. display: block;
  607. }
  608. .opt-box{
  609. display: none;
  610. position: absolute;
  611. top: 10px;
  612. right: 10px;
  613. z-index: 5;
  614. .item{
  615. width: 24px;
  616. height: 24px;
  617. display: flex;
  618. align-items: center;
  619. justify-content: center;
  620. background-color: #fff;
  621. border-radius: 50%;
  622. margin-left: 10px;
  623. img{
  624. width: 16px;
  625. height: 16px;
  626. }
  627. }
  628. }
  629. &:hover{
  630. .opt-box{
  631. display: flex;
  632. }
  633. .select-box{
  634. display: block;
  635. }
  636. }
  637. }
  638. }
  639. .upload-img-form{
  640. .el-upload {
  641. .upload-box {
  642. position: relative;
  643. width: 120px;
  644. height: 120px;
  645. background-color: #F5F7F9;
  646. border: 1px dashed #DCDFE6;
  647. display: flex;
  648. flex-direction: column;
  649. align-items: center;
  650. justify-content: center;
  651. box-sizing: border-box;
  652. padding: 4px;
  653. overflow: hidden;
  654. &:hover {
  655. border: 1px dashed #3375e1;
  656. .upload-mask {
  657. opacity: 1;
  658. }
  659. }
  660. .form-hint {
  661. margin-top: 10px;
  662. color: #999999;
  663. }
  664. .upload-img,
  665. .upload-mask {
  666. width: 100%;
  667. height: 100%;
  668. }
  669. .upload-mask {
  670. position: absolute;
  671. left: 0;
  672. top: 0;
  673. cursor: default;
  674. text-align: center;
  675. color: #fff;
  676. opacity: 0;
  677. font-size: 20px;
  678. background-color: rgba(0, 0, 0, .5);
  679. transition: opacity .3s;
  680. z-index: 2;
  681. line-height: 120px;
  682. .mask-icon {
  683. cursor: pointer;
  684. }
  685. }
  686. }
  687. }
  688. .step-box{
  689. padding-left: 43px;
  690. display: flex;
  691. align-items: center;
  692. margin-bottom: 25px;
  693. .step-item{
  694. display: flex;
  695. align-items: center;
  696. .step{
  697. display: flex;
  698. align-items: center;
  699. .step-number{
  700. font-size: 14px;
  701. font-weight: 600;
  702. color: #C0C4CC;
  703. border-radius: 50%;
  704. width: 18px;
  705. height: 18px;
  706. box-sizing: border-box;
  707. border: solid 2px #C0C4CC;
  708. display: flex;
  709. align-items: center;
  710. justify-content: center;
  711. }
  712. .step-text{
  713. margin-left: 10px;
  714. font-size: 16px;
  715. color: #C0C4CC;
  716. line-height: 24px;
  717. }
  718. }
  719. .active{
  720. .step-number{
  721. border: solid 2px #0052D9;
  722. color: white;
  723. background-color: #0052D9;
  724. }
  725. .step-text{
  726. color: #0052D9;
  727. }
  728. }
  729. .line{
  730. margin: 0 10px;
  731. width: 40px;
  732. height: 2px;
  733. background-color: #C8CDD9;
  734. }
  735. }
  736. }
  737. .layout-options{
  738. padding-left: 43px;
  739. display: inline-flex;
  740. align-items: center;
  741. margin-bottom: 20px;
  742. .option-item{
  743. display: flex;
  744. align-items: center;
  745. flex-direction: column;
  746. margin-right: 30px;
  747. background-color: white;
  748. .option-item-title{
  749. font-size: 14px;
  750. color: #333333;
  751. }
  752. .option-item-icon{
  753. margin-top: 6px;
  754. width: 32px;
  755. height: 32px;
  756. }
  757. }
  758. }
  759. .layout-background{
  760. // background-color: #D9D9D9;
  761. border: solid 1px #D9D9D9;
  762. margin-left: 43px;
  763. width: 400px;
  764. text-align: center;
  765. margin-bottom: 20px;
  766. position: relative;
  767. .layout-image{
  768. vertical-align: bottom;
  769. width: 100%;
  770. }
  771. .layout-item{
  772. text-align: left;
  773. cursor: move;
  774. background-color: white;
  775. border: dashed 1px #B2B9CB;
  776. color: #C0C4CC;
  777. border-radius: 2px;
  778. width: 100%;
  779. height: 100%;
  780. overflow: hidden;
  781. box-sizing: border-box
  782. }
  783. }
  784. .layout-font{
  785. padding-left: 43px;
  786. .layout-font-title{
  787. font-size: 14px;
  788. font-weight: bold;
  789. color: #333333;
  790. }
  791. .layout-font-options{
  792. margin-top: 12px;
  793. display: flex;
  794. align-items: center;
  795. gap: 16px;
  796. .font-options-row{
  797. width: 90px;
  798. }
  799. }
  800. }
  801. }
  802. .right-mouse-menu{
  803. position: fixed;
  804. z-index: 9999999;
  805. background: #ffffff;
  806. border: 1px solid #ececec;
  807. box-shadow: 0px 3px 6px rgba(143, 143, 143, 0.16);
  808. border-radius: 4px;
  809. color: #333;
  810. font-size: 15px;
  811. padding: 13px 0;
  812. .item {
  813. line-height: 30px;
  814. padding: 0 20px;
  815. cursor: pointer;
  816. &:hover {
  817. background-color: #f5f7fa;
  818. }
  819. }
  820. }
  821. </style>