6dbd007b by 任超

style:证书使用记录

1 parent 6bee1405
...@@ -2,16 +2,23 @@ ...@@ -2,16 +2,23 @@
2 <div class="from-clues"> 2 <div class="from-clues">
3 <!-- 表单部分 --> 3 <!-- 表单部分 -->
4 <div class="from-clues-header"> 4 <div class="from-clues-header">
5 <el-form :model="queryForm" ref="queryForm" label-width="70px"> 5 <el-form :model="ruleForm" label-width="70px">
6 <el-row> 6 <el-row>
7 <el-col :span="5"> 7 <el-col :span="5">
8 <el-form-item label="家庭房产"> 8 <el-form-item label="入库编号">
9 <el-input v-model="ruleForm.rkbh" placeholder="入库编号"></el-input>
9 </el-form-item> 10 </el-form-item>
10 </el-col> 11 </el-col>
11 12 <el-col :span="8">
12 <el-col :span="4" class="btnCol"> 13 <el-form-item label="人库时间">
14 <el-date-picker v-model="ruleForm.rksj" type="datetimerange" range-separator="至" start-placeholder="开始日期"
15 end-placeholder="结束日期">
16 </el-date-picker>
17 </el-form-item>
18 </el-col>
19 <el-col :span="11" class="btnCol">
13 <el-form-item> 20 <el-form-item>
14 <el-button type="primary" @click="queryClick()">查询</el-button> 21 <el-button type="primary" @click="fetchData">查询</el-button>
15 <el-button @click="moreQueryClick()">高级查询</el-button> 22 <el-button @click="moreQueryClick()">高级查询</el-button>
16 </el-form-item> 23 </el-form-item>
17 </el-col> 24 </el-col>
...@@ -20,17 +27,9 @@ ...@@ -20,17 +27,9 @@
20 </div> 27 </div>
21 <!-- 表格 --> 28 <!-- 表格 -->
22 <div class="from-clues-content"> 29 <div class="from-clues-content">
23 <lb-table 30 <lb-table :page-size="pageData.size" :current-page.sync="pageData.current" :total="tableData.total"
24 :page-size="pageData.size" 31 @size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns"
25 @sort-change="handleSort" 32 :data="tableData.data">
26 :current-page.sync="pageData.current"
27 :total="pageData.total"
28 @selection-change="handleSelectionChange"
29 @size-change="handleSizeChange"
30 @p-current-change="handleCurrentChange"
31 :column="tableData.columns"
32 :data="tableData.data"
33 >
34 </lb-table> 33 </lb-table>
35 </div> 34 </div>
36 </div> 35 </div>
...@@ -42,26 +41,17 @@ export default { ...@@ -42,26 +41,17 @@ export default {
42 name: "zsff", 41 name: "zsff",
43 components: {}, 42 components: {},
44 mixins: [table], 43 mixins: [table],
45 mounted() { 44 mounted () {
46 sendThis(this); 45 sendThis(this);
47 }, 46 },
48 data() { 47 data () {
49 return { 48 return {
50 queryForm: { 49 ruleForm: {
51 ywly: "", 50 rkbh: "",
52 qllx: "", 51 rksj: ""
53 djlx: "",
54 ywh: "",
55 }, 52 },
56 pageData: {
57 current: 1,
58 size: 10,
59 total: 2,
60 },
61
62 ywlys: datas.ywlys(),
63
64 tableData: { 53 tableData: {
54 total: 0,
65 columns: datas.columns(), 55 columns: datas.columns(),
66 data: [ 56 data: [
67 { 57 {
...@@ -76,11 +66,8 @@ export default { ...@@ -76,11 +66,8 @@ export default {
76 }, 66 },
77 methods: { 67 methods: {
78 // 初始化数据 68 // 初始化数据
79 fetchData() {}, 69 fetchData () { },
80 handleSort(name, sort) { 70 openDialog () {
81 console.log(name, sort);
82 },
83 openDialog() {
84 console.log(999999999999999); 71 console.log(999999999999999);
85 }, 72 },
86 }, 73 },
......
...@@ -2,14 +2,21 @@ ...@@ -2,14 +2,21 @@
2 <div class="from-clues"> 2 <div class="from-clues">
3 <!-- 表单部分 --> 3 <!-- 表单部分 -->
4 <div class="from-clues-header"> 4 <div class="from-clues-header">
5 <el-form :model="queryForm" ref="queryForm" label-width="70px"> 5 <el-form :model="ruleForm" label-width="70px">
6 <el-row> 6 <el-row>
7 <el-col :span="5"> 7 <el-col :span="5">
8 <el-form-item label="家庭房产"> 8 <el-form-item label="入库编号">
9 <el-input v-model="ruleForm.rkbh" placeholder="入库编号"></el-input>
9 </el-form-item> 10 </el-form-item>
10 </el-col> 11 </el-col>
11 12 <el-col :span="8">
12 <el-col :span="4" class="btnCol"> 13 <el-form-item label="人库时间">
14 <el-date-picker v-model="ruleForm.rksj" type="datetimerange" range-separator="至" start-placeholder="开始日期"
15 end-placeholder="结束日期">
16 </el-date-picker>
17 </el-form-item>
18 </el-col>
19 <el-col :span="11" class="btnCol">
13 <el-form-item> 20 <el-form-item>
14 <el-button type="primary" @click="queryClick()">查询</el-button> 21 <el-button type="primary" @click="queryClick()">查询</el-button>
15 <el-button @click="moreQueryClick()">高级查询</el-button> 22 <el-button @click="moreQueryClick()">高级查询</el-button>
...@@ -20,17 +27,9 @@ ...@@ -20,17 +27,9 @@
20 </div> 27 </div>
21 <!-- 表格 --> 28 <!-- 表格 -->
22 <div class="from-clues-content"> 29 <div class="from-clues-content">
23 <lb-table 30 <lb-table :page-size="pageData.size" :current-page.sync="pageData.current" :total="tableData.total"
24 :page-size="pageData.size" 31 @size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns"
25 @sort-change="handleSort" 32 :data="tableData.data">
26 :current-page.sync="pageData.current"
27 :total="pageData.total"
28 @selection-change="handleSelectionChange"
29 @size-change="handleSizeChange"
30 @p-current-change="handleCurrentChange"
31 :column="tableData.columns"
32 :data="tableData.data"
33 >
34 </lb-table> 33 </lb-table>
35 </div> 34 </div>
36 </div> 35 </div>
...@@ -42,26 +41,17 @@ export default { ...@@ -42,26 +41,17 @@ export default {
42 name: "zsrk", 41 name: "zsrk",
43 components: {}, 42 components: {},
44 mixins: [table], 43 mixins: [table],
45 mounted() { 44 mounted () {
46 sendThis(this); 45 sendThis(this);
47 }, 46 },
48 data() { 47 data () {
49 return { 48 return {
50 queryForm: { 49 ruleForm: {
51 ywly: "", 50 rkbh: "",
52 qllx: "", 51 rksj: ""
53 djlx: "",
54 ywh: "",
55 }, 52 },
56 pageData: {
57 current: 1,
58 size: 10,
59 total: 2,
60 },
61
62 ywlys: datas.ywlys(),
63
64 tableData: { 53 tableData: {
54 total: 0,
65 columns: datas.columns(), 55 columns: datas.columns(),
66 data: [ 56 data: [
67 { 57 {
...@@ -76,11 +66,8 @@ export default { ...@@ -76,11 +66,8 @@ export default {
76 }, 66 },
77 methods: { 67 methods: {
78 // 初始化数据 68 // 初始化数据
79 fetchData() {}, 69 fetchData () { },
80 handleSort(name, sort) { 70 openDialog () {
81 console.log(name, sort);
82 },
83 openDialog() {
84 console.log(999999999999999); 71 console.log(999999999999999);
85 }, 72 },
86 }, 73 },
......
...@@ -2,16 +2,32 @@ ...@@ -2,16 +2,32 @@
2 <div class="from-clues"> 2 <div class="from-clues">
3 <!-- 表单部分 --> 3 <!-- 表单部分 -->
4 <div class="from-clues-header"> 4 <div class="from-clues-header">
5 <el-form :model="queryForm" ref="queryForm" label-width="70px"> 5 <el-form :model="ruleForm" label-width="120px">
6 <el-row> 6 <el-row>
7 <el-col :span="5"> 7 <el-col :span="5">
8 <el-form-item label="家庭房产"> 8 <el-form-item label="印刷序列号" prop="ysxlh">
9 <el-input v-model="ruleForm.ysxlh"></el-input>
10 </el-form-item>
11 </el-col>
12 <el-col :span="5">
13 <el-form-item label="证书类型" prop="zslx">
14 <el-input v-model="ruleForm.zslx"></el-input>
15 </el-form-item>
16 </el-col>
17 <el-col :span="5">
18 <el-form-item label="业务号" prop="ywh">
19 <el-input v-model="ruleForm.ywh"></el-input>
20 </el-form-item>
21 </el-col>
22 <el-col :span="6">
23 <el-form-item label="不动产权证号" prop="bdcqzh">
24 <el-input v-model="ruleForm.bdcqzh"></el-input>
9 </el-form-item> 25 </el-form-item>
10 </el-col> 26 </el-col>
11 27
12 <el-col :span="4" class="btnCol"> 28 <el-col :span="3" class="btnCol">
13 <el-form-item> 29 <el-form-item>
14 <el-button type="primary" @click="queryClick()">查询</el-button> 30 <el-button type="primary" @click="fetchData">查询</el-button>
15 <el-button @click="moreQueryClick()">高级查询</el-button> 31 <el-button @click="moreQueryClick()">高级查询</el-button>
16 </el-form-item> 32 </el-form-item>
17 </el-col> 33 </el-col>
...@@ -20,17 +36,9 @@ ...@@ -20,17 +36,9 @@
20 </div> 36 </div>
21 <!-- 表格 --> 37 <!-- 表格 -->
22 <div class="from-clues-content"> 38 <div class="from-clues-content">
23 <lb-table 39 <lb-table :page-size="pageData.size" :current-page.sync="pageData.current" :total="tableData.total"
24 :page-size="pageData.size" 40 @size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns"
25 @sort-change="handleSort" 41 :data="tableData.data">
26 :current-page.sync="pageData.current"
27 :total="pageData.total"
28 @selection-change="handleSelectionChange"
29 @size-change="handleSizeChange"
30 @p-current-change="handleCurrentChange"
31 :column="tableData.columns"
32 :data="tableData.data"
33 >
34 </lb-table> 42 </lb-table>
35 </div> 43 </div>
36 </div> 44 </div>
...@@ -42,26 +50,19 @@ export default { ...@@ -42,26 +50,19 @@ export default {
42 name: "zssyjl", 50 name: "zssyjl",
43 components: {}, 51 components: {},
44 mixins: [table], 52 mixins: [table],
45 mounted() { 53 mounted () {
46 sendThis(this); 54 sendThis(this);
47 }, 55 },
48 data() { 56 data () {
49 return { 57 return {
50 queryForm: { 58 ruleForm: {
51 ywly: "", 59 ysxlh: "",
52 qllx: "", 60 zslx: "",
53 djlx: "",
54 ywh: "", 61 ywh: "",
62 bdcqzh: "",
55 }, 63 },
56 pageData: {
57 current: 1,
58 size: 10,
59 total: 2,
60 },
61
62 ywlys: datas.ywlys(),
63
64 tableData: { 64 tableData: {
65 total: 0,
65 columns: datas.columns(), 66 columns: datas.columns(),
66 data: [ 67 data: [
67 { 68 {
...@@ -76,11 +77,8 @@ export default { ...@@ -76,11 +77,8 @@ export default {
76 }, 77 },
77 methods: { 78 methods: {
78 // 初始化数据 79 // 初始化数据
79 fetchData() {}, 80 fetchData () { },
80 handleSort(name, sort) { 81 openDialog () {
81 console.log(name, sort);
82 },
83 openDialog() {
84 console.log(999999999999999); 82 console.log(999999999999999);
85 }, 83 },
86 }, 84 },
......