修改
This commit is contained in:
@@ -296,7 +296,7 @@
|
||||
this.$refs.uploadFile.perentHandleFunc()
|
||||
this.$refs.uploadFile.visible = true
|
||||
this.uploadName = current
|
||||
getAction('sys/common/getFileInfos', { connectId: this.formInline[current] }).then((res) => {
|
||||
getAction('sys/common/getFileInfos', { id: this.formInline[current] }).then((res) => {
|
||||
if (res.success) {
|
||||
this.$refs.uploadFile.perentHandleFunc(res.result)
|
||||
} else {
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
<a class="text" v-for="(ol,index) in OperationList"
|
||||
@click="OperationClick(ol,record)">{{ol.text}}</a>
|
||||
</span>
|
||||
|
||||
</a-table>
|
||||
</div>
|
||||
<div class="page" v-if="dataSource.length > 0">
|
||||
|
||||
@@ -196,6 +196,8 @@
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
<style>
|
||||
.ant-upload-list-item-name{
|
||||
color: rgba(0, 0, 0, 0.65) !important;
|
||||
}
|
||||
</style>
|
||||
@@ -67,7 +67,29 @@
|
||||
</a-card>
|
||||
</template>
|
||||
<script>
|
||||
import { getAction, postAction } from '@/api/manage'
|
||||
|
||||
export default {
|
||||
name: 'docIndex',
|
||||
data() {
|
||||
return {
|
||||
url: {
|
||||
getInfo: 'document/bussDocumentLibraryEO/getInfoById'
|
||||
},
|
||||
detailList: []
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.getInfoById()
|
||||
},
|
||||
methods: {
|
||||
getInfoById() {
|
||||
getAction(this.url.getInfo, { id: '559594408e50406b867dc6fa1b0a515c' }).then((res) => {
|
||||
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style lang="less" scoped>
|
||||
.doc-detail {
|
||||
@@ -144,6 +166,7 @@
|
||||
height: 50px;
|
||||
border-top: 1.6px #eff1f3 solid;
|
||||
border-right: 1.6px #eff1f3 solid;
|
||||
|
||||
.TextInformationContentLeft {
|
||||
width: 310px;
|
||||
height: 50px;
|
||||
@@ -159,6 +182,7 @@
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.TextInformationContentcontent {
|
||||
width: calc(100% - 410px);
|
||||
line-height: 50px;
|
||||
@@ -183,8 +207,9 @@
|
||||
position: absolute;
|
||||
}
|
||||
}
|
||||
.TextInformationContent:last-child{
|
||||
border-bottom: 1.6px #eff1f3 solid;
|
||||
|
||||
.TextInformationContent:last-child {
|
||||
border-bottom: 1.6px #eff1f3 solid;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,6 +13,12 @@
|
||||
<a-button @click="handleCompare()" type="primary" icon="plus">推送</a-button>
|
||||
</div>
|
||||
<div>
|
||||
<!--
|
||||
showAction是否有操作按钮
|
||||
OperationList操作列表的list
|
||||
onSelectChange 选中的id值
|
||||
editTable再传操作按钮的同时把事件定义名称也传过去
|
||||
-->
|
||||
<tableData
|
||||
:flag="'1'"
|
||||
:OperationList="OperationList"
|
||||
@@ -76,6 +82,7 @@
|
||||
],
|
||||
selectedRowKeys: [],
|
||||
loading: false,
|
||||
//url传参严格按照当前命名
|
||||
url: {
|
||||
tableHeader: 'document/bussDocumentLibraryEO/getHeader', //表格头部字段
|
||||
seachList: 'document/bussDocumentLibraryEO/queryCondition', //搜索字段
|
||||
|
||||
Reference in New Issue
Block a user