0cebad01 by 任超

style:样式

1 parent 9c7e4bc7
......@@ -44,8 +44,6 @@
</el-row>
</el-form>
</div>
<!-- 表格 -->
<!-- 表格 -->
<div class="from-clues-content">
<lb-table :page-size="pageData.size" border :current-page.sync="pageData.currentPage" :total="tableData.total"
@size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns"
......
......@@ -10,9 +10,14 @@ export default {
computed: {
...mapGetters(["dictData"]),
},
props: {
tableData: {
type: Array,
default: []
}
},
data () {
return {
tableData: [],
InformationTable: [
{
width: '60',
......@@ -33,7 +38,7 @@ export default {
}
},
{
prop: "xm",
prop: "sqrmc",
label: "姓名/名称",
render: (h, scope) => {
return (
......@@ -43,7 +48,7 @@ export default {
}
},
{
prop: "zjzl",
prop: "dlrzjlx",
label: "证件种类",
render: (h, scope) => {
return (
......@@ -51,7 +56,7 @@ export default {
{
this.dictData && this.dictData['A30'].map(option => {
return (
<el-option label={option.label} value={option.value}></el-option>
<el-option label={option.dname} value={option.dcode}></el-option>
)
})
}
......@@ -60,7 +65,7 @@ export default {
}
},
{
prop: "zjh",
prop: "dlrzjh",
label: "证件号",
render: (h, scope) => {
return (
......@@ -95,9 +100,9 @@ export default {
handleAdd () {
this.tableData.push(
{
xm: '',
zjzl: '',
zjh: '',
sqrmc: '',
dlrzjlx: '',
dlrzjh: '',
fr: ''
}
)
......
......@@ -10,7 +10,7 @@
<!-- 材料目录明细 -->
<div class="clmlmx-box" v-if="checkedId == '1'">
<div class="title">申请材料目录</div>
<lb-table :column="column" :key="key" :pagination="false" :data="tableData">
<lb-table :column="column" :key="key" :heightNum="210" :pagination="false" :data="tableData">
</lb-table>
</div>
......@@ -386,13 +386,12 @@ export default {
<style scoped lang='scss'>
.clxx {
width: 100%;
height: 100%;
display: flex;
padding-left: 15px;
height: calc(100vh - 150px);
.left {
width: 52px;
height: calc(100vh - 150px);
background: #f3f4f7;
border-radius: 1px;
......@@ -510,7 +509,7 @@ export default {
.clyl-img {
width: 75%;
height: 800px;
height: 100%;
background: #f3f4f7;
margin: 0 auto;
position: relative;
......
......@@ -128,7 +128,7 @@
</el-form-item>
</el-col>
<el-col>
<InformationTable />
<InformationTable :tableData="ruleForm.qlrxx" />
</el-col>
</el-row>
<div class="slxx_title">登记原因</div>
......@@ -179,6 +179,7 @@ export default {
zddm: "",
bdcdyh: "",
qlxzmc: "",
qlrxx: [],
zdmj: "",
zl: "",
tdyt: "",
......@@ -200,10 +201,11 @@ export default {
//可以通过append()方法来追加数据
formdata.append("bsmSldy", bsmSldy);
Init(formdata).then((res) => {
if (res.code === 200) {
if (res.code === 200 && res.result) {
this.ruleForm = { ...res.result, ...res.result.zdjbxxdatas, ...res.result.qlxxdatas, ...res.result.jsydsyqdatas }
console.log(this.ruleForm, 'this.ruleForm');
}
});
})
},
onSubmit () { },
},
......
......@@ -226,7 +226,6 @@ export default {
/deep/.el-tabs__content {
height: calc(100vh - 135px) !important;
overflow-y: auto !important;
}
.splitScreen-con {
......