|
|
|
@ -113,6 +113,20 @@
|
|
|
|
|
</a-card> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
<a-modal v-model="visible" title="" width="1200px" |
|
|
|
|
@cancel="handlerOk" |
|
|
|
|
cancelText="关闭"> |
|
|
|
|
<template slot="footer"> |
|
|
|
|
<a-button @click="handlerOk">关闭</a-button> |
|
|
|
|
</template> |
|
|
|
|
<p v-html="regimeConter" :style="{'max-height': this.timeLineHeight + 'px' }" |
|
|
|
|
style="overflow-y:scroll;margin-top: 2%"></p> |
|
|
|
|
|
|
|
|
|
</a-modal> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--全部应用--> |
|
|
|
|
<div style="width: 100%; height:70%; margin-top: 11px; overflow-y: hidden" :headStyle="{}" :bodyStyle="{height:'100%' , overflow:'hidden'}"> |
|
|
|
|
<a-row :gutter="24"> |
|
|
|
@ -173,7 +187,7 @@
|
|
|
|
|
<!-- </template>--> |
|
|
|
|
|
|
|
|
|
</a-modal> |
|
|
|
|
<process-regime-modal ref="modalForm" @ok="modalFormOk"></process-regime-modal> |
|
|
|
|
<!-- <process-regime-modal ref="modalForm" @ok="modalFormOk"></process-regime-modal>--> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
<!-- <a-card class="bottom-card" title="全部应用" style="width: 100%; height:60%; margin-top: 11px; overflow-y: hidden" :headStyle="{}" :bodyStyle="{height:'100%' , overflow:'hidden'}" >--> |
|
|
|
@ -194,9 +208,8 @@ import { JVXETypes } from '@/components/jeecg/JVxeTable/index'
|
|
|
|
|
import { colorList } from '@/components/tools/setting' |
|
|
|
|
import ShowAnnouncement from '@comp/tools/ShowAnnouncement' |
|
|
|
|
import KeyApplications from '@views/dashboard/KeyApplications' |
|
|
|
|
import ProcessRegimeModal from '@views/regime/modules/ProcessRegimeModal' |
|
|
|
|
// import { mixinDevice } from '@/utils/mixin' |
|
|
|
|
// import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
|
|
|
|
// import ProcessRegimeModal from '@views/regime/modules/ProcessRegimeModal' |
|
|
|
|
// import Institution from '@views/regime/institution' |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
name: 'HomePage', |
|
|
|
@ -205,16 +218,19 @@ export default {
|
|
|
|
|
KeyApplications, |
|
|
|
|
JVXETypes, |
|
|
|
|
ShowAnnouncement, |
|
|
|
|
ProcessRegimeModal, |
|
|
|
|
// ProcessRegimeModal, |
|
|
|
|
// Institution |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
regime: false, |
|
|
|
|
regimeConter: undefined, |
|
|
|
|
isorter:{ |
|
|
|
|
column: 'createTime', |
|
|
|
|
order: 'desc', |
|
|
|
|
}, |
|
|
|
|
visible: false, |
|
|
|
|
//待办 登录日志 站内消息查询地址 |
|
|
|
|
url: { |
|
|
|
|
listCementByUser:"/sys/annountCement/listByUser", |
|
|
|
@ -262,16 +278,18 @@ export default {
|
|
|
|
|
// ellipsis: true, |
|
|
|
|
// sorter: true |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
align:"left", |
|
|
|
|
dataIndex: 'contentDetails', |
|
|
|
|
ellipsis: true, |
|
|
|
|
sorter: true, |
|
|
|
|
customRender:function (t,r,index) { |
|
|
|
|
t = t.replace("<p>", "user") |
|
|
|
|
return t; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
|
// align:"left", |
|
|
|
|
// dataIndex: 'contentDetails', |
|
|
|
|
// ellipsis: true, |
|
|
|
|
// sorter: true, |
|
|
|
|
// customRender:function (t,r,index) { |
|
|
|
|
// let str = ''; |
|
|
|
|
// |
|
|
|
|
// t =str; |
|
|
|
|
// return t; |
|
|
|
|
// } |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'createTime', |
|
|
|
@ -304,9 +322,16 @@ export default {
|
|
|
|
|
KeyApplicationsChildren:[], |
|
|
|
|
selectRowKeys:[], |
|
|
|
|
routerGo:"", |
|
|
|
|
timeLineHeight:"", |
|
|
|
|
colors:[], |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
this.timeLineHeight = document.documentElement.clientHeight - 300; |
|
|
|
|
window.onresize = () => { |
|
|
|
|
this.timeLineHeight = document.documentElement.clientHeight - 300; |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
getAction(this.url.keyApplications).then((res) => { |
|
|
|
|
if (res.success) { |
|
|
|
@ -332,6 +357,10 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
methods: { |
|
|
|
|
handlerOk(e) { |
|
|
|
|
console.log(e); |
|
|
|
|
this.visible = false; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
expandedRowKeys(row){ |
|
|
|
|
console.log("=====",row); |
|
|
|
@ -560,9 +589,12 @@ export default {
|
|
|
|
|
handleDetail(record){ |
|
|
|
|
|
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
this.$refs.modalForm.edit(record); |
|
|
|
|
this.$refs.modalForm.title="详情"; |
|
|
|
|
this.$refs.modalForm.disableSubmit = true; |
|
|
|
|
this.visible = true; |
|
|
|
|
this.regimeConter = record.contentDetails; |
|
|
|
|
// console.log("=edrsfg-q=wse0gf=",record.contentDetails); |
|
|
|
|
// this.$refs.modalForm.edit(record); |
|
|
|
|
// this.$refs.modalForm.title="详情"; |
|
|
|
|
// this.$refs.modalForm.disableSubmit = true; |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
@ -647,6 +679,18 @@ export default {
|
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
|
<style scoped> |
|
|
|
|
|
|
|
|
|
/deep/ .ant-modal-content { |
|
|
|
|
position: relative; |
|
|
|
|
background-color: #fff; |
|
|
|
|
background-clip: padding-box; |
|
|
|
|
border: 0; |
|
|
|
|
border-radius: 2px; |
|
|
|
|
pointer-events: auto; |
|
|
|
|
max-width: 1500px; |
|
|
|
|
display: inline-block; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.ant-carousel >>> .slick-slide img { |
|
|
|
|
border: 5px solid #fff; |
|
|
|
|
display: block; |
|
|
|
|