0cebad01 by 任超

style:样式

1 parent 9c7e4bc7
...@@ -44,8 +44,6 @@ ...@@ -44,8 +44,6 @@
44 </el-row> 44 </el-row>
45 </el-form> 45 </el-form>
46 </div> 46 </div>
47 <!-- 表格 -->
48 <!-- 表格 -->
49 <div class="from-clues-content"> 47 <div class="from-clues-content">
50 <lb-table :page-size="pageData.size" border :current-page.sync="pageData.currentPage" :total="tableData.total" 48 <lb-table :page-size="pageData.size" border :current-page.sync="pageData.currentPage" :total="tableData.total"
51 @size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns" 49 @size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns"
......
...@@ -10,9 +10,14 @@ export default { ...@@ -10,9 +10,14 @@ export default {
10 computed: { 10 computed: {
11 ...mapGetters(["dictData"]), 11 ...mapGetters(["dictData"]),
12 }, 12 },
13 props: {
14 tableData: {
15 type: Array,
16 default: []
17 }
18 },
13 data () { 19 data () {
14 return { 20 return {
15 tableData: [],
16 InformationTable: [ 21 InformationTable: [
17 { 22 {
18 width: '60', 23 width: '60',
...@@ -33,7 +38,7 @@ export default { ...@@ -33,7 +38,7 @@ export default {
33 } 38 }
34 }, 39 },
35 { 40 {
36 prop: "xm", 41 prop: "sqrmc",
37 label: "姓名/名称", 42 label: "姓名/名称",
38 render: (h, scope) => { 43 render: (h, scope) => {
39 return ( 44 return (
...@@ -43,7 +48,7 @@ export default { ...@@ -43,7 +48,7 @@ export default {
43 } 48 }
44 }, 49 },
45 { 50 {
46 prop: "zjzl", 51 prop: "dlrzjlx",
47 label: "证件种类", 52 label: "证件种类",
48 render: (h, scope) => { 53 render: (h, scope) => {
49 return ( 54 return (
...@@ -51,7 +56,7 @@ export default { ...@@ -51,7 +56,7 @@ export default {
51 { 56 {
52 this.dictData && this.dictData['A30'].map(option => { 57 this.dictData && this.dictData['A30'].map(option => {
53 return ( 58 return (
54 <el-option label={option.label} value={option.value}></el-option> 59 <el-option label={option.dname} value={option.dcode}></el-option>
55 ) 60 )
56 }) 61 })
57 } 62 }
...@@ -60,7 +65,7 @@ export default { ...@@ -60,7 +65,7 @@ export default {
60 } 65 }
61 }, 66 },
62 { 67 {
63 prop: "zjh", 68 prop: "dlrzjh",
64 label: "证件号", 69 label: "证件号",
65 render: (h, scope) => { 70 render: (h, scope) => {
66 return ( 71 return (
...@@ -95,9 +100,9 @@ export default { ...@@ -95,9 +100,9 @@ export default {
95 handleAdd () { 100 handleAdd () {
96 this.tableData.push( 101 this.tableData.push(
97 { 102 {
98 xm: '', 103 sqrmc: '',
99 zjzl: '', 104 dlrzjlx: '',
100 zjh: '', 105 dlrzjh: '',
101 fr: '' 106 fr: ''
102 } 107 }
103 ) 108 )
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
10 <!-- 材料目录明细 --> 10 <!-- 材料目录明细 -->
11 <div class="clmlmx-box" v-if="checkedId == '1'"> 11 <div class="clmlmx-box" v-if="checkedId == '1'">
12 <div class="title">申请材料目录</div> 12 <div class="title">申请材料目录</div>
13 <lb-table :column="column" :key="key" :pagination="false" :data="tableData"> 13 <lb-table :column="column" :key="key" :heightNum="210" :pagination="false" :data="tableData">
14 </lb-table> 14 </lb-table>
15 </div> 15 </div>
16 16
...@@ -386,13 +386,12 @@ export default { ...@@ -386,13 +386,12 @@ export default {
386 <style scoped lang='scss'> 386 <style scoped lang='scss'>
387 .clxx { 387 .clxx {
388 width: 100%; 388 width: 100%;
389 height: 100%;
390 display: flex; 389 display: flex;
391 padding-left: 15px; 390 padding-left: 15px;
391 height: calc(100vh - 150px);
392 392
393 .left { 393 .left {
394 width: 52px; 394 width: 52px;
395 height: calc(100vh - 150px);
396 background: #f3f4f7; 395 background: #f3f4f7;
397 border-radius: 1px; 396 border-radius: 1px;
398 397
...@@ -510,7 +509,7 @@ export default { ...@@ -510,7 +509,7 @@ export default {
510 509
511 .clyl-img { 510 .clyl-img {
512 width: 75%; 511 width: 75%;
513 height: 800px; 512 height: 100%;
514 background: #f3f4f7; 513 background: #f3f4f7;
515 margin: 0 auto; 514 margin: 0 auto;
516 position: relative; 515 position: relative;
......
...@@ -128,7 +128,7 @@ ...@@ -128,7 +128,7 @@
128 </el-form-item> 128 </el-form-item>
129 </el-col> 129 </el-col>
130 <el-col> 130 <el-col>
131 <InformationTable /> 131 <InformationTable :tableData="ruleForm.qlrxx" />
132 </el-col> 132 </el-col>
133 </el-row> 133 </el-row>
134 <div class="slxx_title">登记原因</div> 134 <div class="slxx_title">登记原因</div>
...@@ -179,6 +179,7 @@ export default { ...@@ -179,6 +179,7 @@ export default {
179 zddm: "", 179 zddm: "",
180 bdcdyh: "", 180 bdcdyh: "",
181 qlxzmc: "", 181 qlxzmc: "",
182 qlrxx: [],
182 zdmj: "", 183 zdmj: "",
183 zl: "", 184 zl: "",
184 tdyt: "", 185 tdyt: "",
...@@ -200,10 +201,11 @@ export default { ...@@ -200,10 +201,11 @@ export default {
200 //可以通过append()方法来追加数据 201 //可以通过append()方法来追加数据
201 formdata.append("bsmSldy", bsmSldy); 202 formdata.append("bsmSldy", bsmSldy);
202 Init(formdata).then((res) => { 203 Init(formdata).then((res) => {
203 if (res.code === 200) { 204 if (res.code === 200 && res.result) {
204 this.ruleForm = { ...res.result, ...res.result.zdjbxxdatas, ...res.result.qlxxdatas, ...res.result.jsydsyqdatas } 205 this.ruleForm = { ...res.result, ...res.result.zdjbxxdatas, ...res.result.qlxxdatas, ...res.result.jsydsyqdatas }
206 console.log(this.ruleForm, 'this.ruleForm');
205 } 207 }
206 }); 208 })
207 }, 209 },
208 onSubmit () { }, 210 onSubmit () { },
209 }, 211 },
......
...@@ -226,7 +226,6 @@ export default { ...@@ -226,7 +226,6 @@ export default {
226 226
227 /deep/.el-tabs__content { 227 /deep/.el-tabs__content {
228 height: calc(100vh - 135px) !important; 228 height: calc(100vh - 135px) !important;
229 overflow-y: auto !important;
230 } 229 }
231 230
232 .splitScreen-con { 231 .splitScreen-con {
......