a909f7fe by jiaozeping@pashanhoo.com

修改样式

1 parent 89d6513b
...@@ -101,11 +101,18 @@ ...@@ -101,11 +101,18 @@
101 } 101 }
102 102
103 // 搜索框按钮的位置 103 // 搜索框按钮的位置
104 .btnCol { 104 .btnColRight {
105 box-sizing: border-box; 105 box-sizing: border-box;
106 text-align: right; 106 text-align: right;
107 } 107 }
108 108
109 // 搜索框按钮的位置 左
110 .btnColLeft {
111 box-sizing: border-box;
112 text-align: left;
113 }
114
115
109 .title-block { 116 .title-block {
110 display: inline-block; 117 display: inline-block;
111 position: relative; 118 position: relative;
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
35 </el-form-item> 35 </el-form-item>
36 </el-col> 36 </el-col>
37 37
38 <el-col :span="4" class="btnCol"> 38 <el-col :span="4" class="btnColRight">
39 <el-form-item> 39 <el-form-item>
40 <el-button type="primary" icon="el-icon-search" @click="fetchData">查询</el-button> 40 <el-button type="primary" icon="el-icon-search" @click="fetchData">查询</el-button>
41 <el-button @click="moreQueryClick()">高级查询</el-button> 41 <el-button @click="moreQueryClick()">高级查询</el-button>
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
24 <personInfoTable @getInfoList="handleGetSqList" :dataList="sqdataList" /> 24 <personInfoTable @getInfoList="handleGetSqList" :dataList="sqdataList" />
25 25
26 <b class="title">权利人</b> 26 <b class="title">权利人</b>
27 <personInfoTable :dataList="qldataList" @getInfoList="handleGetQlList" /> 27 <personInfoTable @getInfoList="handleGetQlList" :dataList="qldataList" />
28 <div class="submit-button"> 28 <div class="submit-button">
29 <el-button type="primary" @click="queryChick()">查询</el-button> 29 <el-button type="primary" @click="queryChick()">查询</el-button>
30 <el-button @click="resetClick()">重置</el-button> 30 <el-button @click="resetClick()">重置</el-button>
...@@ -130,7 +130,14 @@ export default { ...@@ -130,7 +130,14 @@ export default {
130 } 130 }
131 }, 131 },
132 queryChick () { 132 queryChick () {
133
134 debugger;
133 this.addJtfc.djSqcxDO = { ...this.ruleForm } 135 this.addJtfc.djSqcxDO = { ...this.ruleForm }
136 this.$message({
137 type: 'success',
138 message: '删除成功!'
139 });
140
134 addJtfcCxjgXx(this.addJtfc).then(res => { 141 addJtfcCxjgXx(this.addJtfc).then(res => {
135 debugger; 142 debugger;
136 this.searchData.data = res.result; 143 this.searchData.data = res.result;
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
26 </el-input> 26 </el-input>
27 </el-form-item> 27 </el-form-item>
28 </el-col> 28 </el-col>
29 <el-col :span="14" class="btnCol"> 29 <el-col :span="14" class="btnColRight">
30 <el-button type="primary" @click="queryClick()" 30 <el-button type="primary" @click="queryClick()"
31 >查询</el-button 31 >查询</el-button
32 > 32 >
......
...@@ -6,25 +6,35 @@ ...@@ -6,25 +6,35 @@
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 placeholder="请输入编号" v-model="queryForm.cxbh" clearable> 9 <el-input
10 placeholder="请输入编号"
11 v-model="queryForm.cxbh"
12 class="width200px"
13 clearable
14 >
10 </el-input> 15 </el-input>
11 </el-form-item> 16 </el-form-item>
12 </el-col> 17 </el-col>
13 <el-col :span="5"> 18 <el-col :span="5">
14 <el-form-item label="申请人"> 19 <el-form-item label="申请人">
15 <el-input placeholder="请输入申请人" v-model="queryForm.sqr" clearable> 20 <el-input
21 placeholder="请输入申请人"
22 v-model="queryForm.sqr"
23 class="width200px"
24 clearable
25 >
16 </el-input> 26 </el-input>
17 </el-form-item> 27 </el-form-item>
18 </el-col> 28 </el-col>
19 <el-col :span="5"> 29 <!-- <el-col :span="5">
20 <el-form-item label="业务号"> 30 <el-form-item label="业务号">
21 <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable class="width200px"> 31 <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable class="width200px">
22 </el-input> 32 </el-input>
23 </el-form-item> 33 </el-form-item>
24 </el-col> 34 </el-col> -->
25 <el-col :span="4" class="btnCol"> 35 <el-col :span="14" class="btnColRight">
26 <el-form-item> 36 <el-form-item>
27 <el-button type="primary" @click="queryClick()">查询</el-button> 37 <el-button type="primary" @click="queryClick()">查询</el-button>
28 <el-button @click="moreQueryClick()">高级查询</el-button> 38 <el-button @click="moreQueryClick()">高级查询</el-button>
29 </el-form-item> 39 </el-form-item>
30 </el-col> 40 </el-col>
...@@ -33,26 +43,33 @@ ...@@ -33,26 +43,33 @@
33 </div> 43 </div>
34 <!-- 表格 --> 44 <!-- 表格 -->
35 <div class="from-clues-content"> 45 <div class="from-clues-content">
36 <lb-table :page-size="pageData.size" border @sort-change="handleSort" :current-page.sync="pageData.current" 46 <lb-table
37 :total="tableData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange" 47 :page-size="pageData.size"
38 :column="tableData.columns" :data="tableData.data"> 48 border
49 @sort-change="handleSort"
50 :current-page.sync="pageData.current"
51 :total="tableData.total"
52 @size-change="handleSizeChange"
53 @p-current-change="handleCurrentChange"
54 :column="tableData.columns"
55 :data="tableData.data"
56 >
39 </lb-table> 57 </lb-table>
40 </div> 58 </div>
41 </div> 59 </div>
42 </template> 60 </template>
43 <script> 61 <script>
44 import table from "@/utils/mixin/table" 62 import table from "@/utils/mixin/table";
45 import { datas, sendThis } from "./sqcxjldata" 63 import { datas, sendThis } from "./sqcxjldata";
46 import { getJtfcPage } from '@/api/jtfc' 64 import { getJtfcPage } from "@/api/jtfc";
47 export default { 65 export default {
48 name: "sqcxjl", 66 name: "sqcxjl",
49 mixins: [table], 67 mixins: [table],
50 mounted () { 68 mounted() {
51 sendThis(this); 69 sendThis(this);
52 }, 70 },
53 data () { 71 data() {
54 return { 72 return {
55
56 queryForm: { 73 queryForm: {
57 cxbh: "", 74 cxbh: "",
58 sqr: "", 75 sqr: "",
...@@ -62,15 +79,15 @@ export default { ...@@ -62,15 +79,15 @@ export default {
62 columns: datas.columns(), 79 columns: datas.columns(),
63 data: [], 80 data: [],
64 }, 81 },
65 } 82 };
66 }, 83 },
67 methods: { 84 methods: {
68 queryClick(){ 85 queryClick() {
69 this.fetchData(); 86 this.fetchData();
70 }, 87 },
71 88
72 // 初始化数据 89 // 初始化数据
73 fetchData () { 90 fetchData() {
74 debugger; 91 debugger;
75 getJtfcPage({ ...this.queryForm, ...this.pageData }).then((res) => { 92 getJtfcPage({ ...this.queryForm, ...this.pageData }).then((res) => {
76 let { records, total } = res.result; 93 let { records, total } = res.result;
...@@ -78,33 +95,30 @@ export default { ...@@ -78,33 +95,30 @@ export default {
78 this.tableData.total = total; 95 this.tableData.total = total;
79 }); 96 });
80 }, 97 },
81 handleSort (name, sort) { 98 handleSort(name, sort) {
82 console.log(name, sort); 99 console.log(name, sort);
83 }, 100 },
84 // 查看 101 // 查看
85 handleView () { 102 handleView() {
86 // this.isDialog = true 103 // this.isDialog = true
87 104
88
89 let that = this; 105 let that = this;
90 this.$popup({ 106 this.$popup({
91 title: "申请查询记录", 107 title: "申请查询记录",
92 width: "85%", 108 width: "85%",
93 btnShow: true, 109 btnShow: true,
94 editItem: 'sqcx/sqcxjl/components/addjtfc', // 弹窗内容 110 editItem: "sqcx/sqcxjl/components/addjtfc", // 弹窗内容
95 height: "700px", 111 height: "700px",
96 formData: { 112 formData: {
97 bsmSlsq: this.bsmSlsq, 113 bsmSlsq: this.bsmSlsq,
98 dataList: this.unitData, 114 dataList: this.unitData,
99 }, 115 },
100 cancel: function () { }, //取消事件的回调 116 cancel: function () {}, //取消事件的回调
101 confirm: function () { 117 confirm: function () {
102 that.loadBdcdylist(); 118 that.loadBdcdylist();
103 }, //确认事件的回调 119 }, //确认事件的回调
104 }); 120 });
105 121 },
106
107 }
108 }, 122 },
109 }; 123 };
110 </script> 124 </script>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
14 <el-input v-model="ruleForm.dname" placeholder="字典类型名称"></el-input> 14 <el-input v-model="ruleForm.dname" placeholder="字典类型名称"></el-input>
15 </el-form-item> 15 </el-form-item>
16 </el-col> 16 </el-col>
17 <el-col :span="12" class="btnCol"> 17 <el-col :span="12" class="btnColRight">
18 <el-form-item> 18 <el-form-item>
19 <el-button type="primary" icon="el-icon-search" @click="fetchData">查询</el-button> 19 <el-button type="primary" icon="el-icon-search" @click="fetchData">查询</el-button>
20 <el-button icon="el-icon-refresh" @click="handleRefresh">刷新缓存</el-button> 20 <el-button icon="el-icon-refresh" @click="handleRefresh">刷新缓存</el-button>
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
12 </el-select> 12 </el-select>
13 </el-form-item> 13 </el-form-item>
14 </el-col> 14 </el-col>
15 <el-col :span="18" class="btnCol"> 15 <el-col :span="18" class="btnColRight">
16 <el-form-item> 16 <el-form-item>
17 <el-button type="primary" icon="el-icon-search" @click="fetchData()">查询</el-button> 17 <el-button type="primary" icon="el-icon-search" @click="fetchData()">查询</el-button>
18 <el-button @click="moreQueryClick()">高级查询</el-button> 18 <el-button @click="moreQueryClick()">高级查询</el-button>
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
18 </el-input> 18 </el-input>
19 </el-form-item> 19 </el-form-item>
20 </el-col> 20 </el-col>
21 <el-col :span="12" class="btnCol"> 21 <el-col :span="12" class="btnColRight">
22 <el-form-item> 22 <el-form-item>
23 <el-button type="primary" icon="el-icon-search" @click="queryClick()">查询</el-button> 23 <el-button type="primary" icon="el-icon-search" @click="queryClick()">查询</el-button>
24 </el-form-item> 24 </el-form-item>
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
19 <el-input v-model="ruleForm.qlr" clearable placeholder="请输入权利人"></el-input> 19 <el-input v-model="ruleForm.qlr" clearable placeholder="请输入权利人"></el-input>
20 </el-form-item> 20 </el-form-item>
21 </el-col> 21 </el-col>
22 <el-col :span="6" class="btnCol"> 22 <el-col :span="6" class="btnColRight">
23 <el-form-item> 23 <el-form-item>
24 <el-button type="primary" icon="el-icon-search" @click="fetchData()">查询</el-button> 24 <el-button type="primary" icon="el-icon-search" @click="fetchData()">查询</el-button>
25 </el-form-item> 25 </el-form-item>
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
35 </el-form-item> 35 </el-form-item>
36 </el-col> 36 </el-col>
37 37
38 <el-col :span="4" class="btnCol"> 38 <el-col :span="4" class="btnColRight">
39 <el-form-item> 39 <el-form-item>
40 <el-button type="primary" @click="queryClick()">查询</el-button> 40 <el-button type="primary" @click="queryClick()">查询</el-button>
41 <el-button @click="moreQueryClick()">高级查询</el-button> 41 <el-button @click="moreQueryClick()">高级查询</el-button>
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
35 </el-form-item> 35 </el-form-item>
36 </el-col> 36 </el-col>
37 37
38 <el-col :span="4" class="btnCol"> 38 <el-col :span="4" class="btnColRight">
39 <el-form-item> 39 <el-form-item>
40 <el-button type="primary" @click="queryClick()">查询</el-button> 40 <el-button type="primary" @click="queryClick()">查询</el-button>
41 <el-button @click="moreQueryClick()">高级查询</el-button> 41 <el-button @click="moreQueryClick()">高级查询</el-button>
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
30 </el-input> 30 </el-input>
31 </el-form-item> 31 </el-form-item>
32 </el-col> 32 </el-col>
33 <el-col :span="2" class="btnCol"> 33 <el-col :span="2" class="btnColRight">
34 <el-form-item> 34 <el-form-item>
35 <el-button type="primary" @click="fetchData">查询</el-button> 35 <el-button type="primary" @click="fetchData">查询</el-button>
36 </el-form-item> 36 </el-form-item>
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
31 </el-input> 31 </el-input>
32 </el-form-item> 32 </el-form-item>
33 </el-col> 33 </el-col>
34 <el-col :span="2" class="btnCol"> 34 <el-col :span="2" class="btnColRight">
35 <el-form-item> 35 <el-form-item>
36 <el-button type="primary" @click="fetchData()">查询</el-button> 36 <el-button type="primary" @click="fetchData()">查询</el-button>
37 </el-form-item> 37 </el-form-item>
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
30 </el-input> 30 </el-input>
31 </el-form-item> 31 </el-form-item>
32 </el-col> 32 </el-col>
33 <el-col :span="2" class="btnCol"> 33 <el-col :span="2" class="btnColRight">
34 <el-form-item> 34 <el-form-item>
35 <el-button type="primary" @click="fetchData()">查询</el-button> 35 <el-button type="primary" @click="fetchData()">查询</el-button>
36 </el-form-item> 36 </el-form-item>
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
32 </el-input> 32 </el-input>
33 </el-form-item> 33 </el-form-item>
34 </el-col> 34 </el-col>
35 <el-col :span="2" class="btnCol"> 35 <el-col :span="2" class="btnColRight">
36 <el-form-item> 36 <el-form-item>
37 <el-button type="primary" @click="queryClick()">查询</el-button> 37 <el-button type="primary" @click="queryClick()">查询</el-button>
38 </el-form-item> 38 </el-form-item>
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
19 </el-input> 19 </el-input>
20 </el-form-item> 20 </el-form-item>
21 </el-col> 21 </el-col>
22 <el-col :span="12" class="btnCol"> 22 <el-col :span="12" class="btnColRight">
23 <el-form-item> 23 <el-form-item>
24 <el-button type="primary" @click="fetchData()">查询</el-button> 24 <el-button type="primary" @click="fetchData()">查询</el-button>
25 </el-form-item> 25 </el-form-item>
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
16 </el-input> 16 </el-input>
17 </el-form-item> 17 </el-form-item>
18 </el-col> 18 </el-col>
19 <el-col :span="4" class="btnCol"> 19 <el-col :span="4" class="btnColRight">
20 <el-form-item> 20 <el-form-item>
21 <el-button type="primary" @click="fetchData">查询</el-button> 21 <el-button type="primary" @click="fetchData">查询</el-button>
22 </el-form-item> 22 </el-form-item>
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
32 </el-input> 32 </el-input>
33 </el-form-item> 33 </el-form-item>
34 </el-col> 34 </el-col>
35 <el-col :span="2" class="btnCol"> 35 <el-col :span="2" class="btnColRight">
36 <el-form-item> 36 <el-form-item>
37 <el-button type="primary" @click="fetchData">查询</el-button> 37 <el-button type="primary" @click="fetchData">查询</el-button>
38 </el-form-item> 38 </el-form-item>
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
31 </el-form-item> 31 </el-form-item>
32 </el-col> 32 </el-col>
33 33
34 <el-col :span="4" class="btnCol"> 34 <el-col :span="4" class="btnColRight">
35 <el-form-item> 35 <el-form-item>
36 <el-button type="primary" @click="queryClick()">查询</el-button> 36 <el-button type="primary" @click="queryClick()">查询</el-button>
37 <el-button @click="moreQueryClick()">高级查询</el-button> 37 <el-button @click="moreQueryClick()">高级查询</el-button>
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
35 </el-form-item> 35 </el-form-item>
36 </el-col> 36 </el-col>
37 37
38 <el-col :span="4" class="btnCol"> 38 <el-col :span="4" class="btnColRight">
39 <el-form-item> 39 <el-form-item>
40 <el-button type="primary" @click="queryClick()">查询</el-button> 40 <el-button type="primary" @click="queryClick()">查询</el-button>
41 <el-button @click="moreQueryClick()">高级查询</el-button> 41 <el-button @click="moreQueryClick()">高级查询</el-button>
......
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
49 </el-form-item> 49 </el-form-item>
50 </el-col> 50 </el-col>
51 51
52 <el-col :span="4" class="btnCol"> 52 <el-col :span="4" class="btnColRight">
53 <el-form-item> 53 <el-form-item>
54 <el-button type="primary" @click="queryClick()">查询</el-button> 54 <el-button type="primary" @click="queryClick()">查询</el-button>
55 <el-button @click="moreQueryClick()">高级查询</el-button> 55 <el-button @click="moreQueryClick()">高级查询</el-button>
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
29 </el-form-item> 29 </el-form-item>
30 </el-col> 30 </el-col>
31 31
32 <el-col :span="4" class="btnCol"> 32 <el-col :span="4" class="btnColRight">
33 <el-form-item> 33 <el-form-item>
34 <el-button type="primary" icon="el-icon-search" @click="fetchData">查询</el-button> 34 <el-button type="primary" icon="el-icon-search" @click="fetchData">查询</el-button>
35 <el-button @click="moreQueryClick()">高级查询</el-button> 35 <el-button @click="moreQueryClick()">高级查询</el-button>
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
29 </el-form-item> 29 </el-form-item>
30 </el-col> 30 </el-col>
31 31
32 <el-col :span="4" class="btnCol"> 32 <el-col :span="4" class="btnColRight">
33 <el-form-item> 33 <el-form-item>
34 <el-button type="primary" icon="el-icon-search" @click="fetchData">查询</el-button> 34 <el-button type="primary" icon="el-icon-search" @click="fetchData">查询</el-button>
35 <el-button @click="moreQueryClick()">高级查询</el-button> 35 <el-button @click="moreQueryClick()">高级查询</el-button>
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
16 </el-date-picker> 16 </el-date-picker>
17 </el-form-item> 17 </el-form-item>
18 </el-col> 18 </el-col>
19 <el-col :span="11" class="btnCol"> 19 <el-col :span="11" class="btnColRight">
20 <el-form-item> 20 <el-form-item>
21 <el-button type="primary" @click="queryClick()">查询</el-button> 21 <el-button type="primary" @click="queryClick()">查询</el-button>
22 <el-button type="primary" @click="openDialog()">新增</el-button> 22 <el-button type="primary" @click="openDialog()">新增</el-button>
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
16 </el-date-picker> 16 </el-date-picker>
17 </el-form-item> 17 </el-form-item>
18 </el-col> 18 </el-col>
19 <el-col :span="11" class="btnCol"> 19 <el-col :span="11" class="btnColRight">
20 <el-form-item> 20 <el-form-item>
21 <el-button type="primary" @click="queryClick()">查询</el-button> 21 <el-button type="primary" @click="queryClick()">查询</el-button>
22 <el-button type="primary" @click="openDialog()">新增</el-button> 22 <el-button type="primary" @click="openDialog()">新增</el-button>
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
28 </el-form-item> 28 </el-form-item>
29 </el-col> 29 </el-col>
30 30
31 <el-col :span="3" class="btnCol"> 31 <el-col :span="3" class="btnColRight">
32 <el-form-item> 32 <el-form-item>
33 <el-button type="primary" icon="el-icon-search" @click="fetchData">查询</el-button> 33 <el-button type="primary" icon="el-icon-search" @click="fetchData">查询</el-button>
34 <el-button @click="moreQueryClick()">高级查询</el-button> 34 <el-button @click="moreQueryClick()">高级查询</el-button>
......