Merge branch 'master' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web
Showing
3 changed files
with
51 additions
and
51 deletions
... | @@ -38,6 +38,14 @@ export function selectBdcdy (data) { | ... | @@ -38,6 +38,14 @@ export function selectBdcdy (data) { |
38 | data | 38 | data |
39 | }) | 39 | }) |
40 | } | 40 | } |
41 | // 待办箱列表查询接口 | ||
42 | export function searchTaskToDo (data) { | ||
43 | return request({ | ||
44 | url: '/business/todoBox/searchTaskToDo', | ||
45 | method: 'post', | ||
46 | data | ||
47 | }) | ||
48 | } | ||
41 | 49 | ||
42 | /* | 50 | /* |
43 | 业务办理-发起业务申请流程 | 51 | 业务办理-发起业务申请流程 |
... | @@ -48,4 +56,4 @@ export function startBusinessFlow (data) { | ... | @@ -48,4 +56,4 @@ export function startBusinessFlow (data) { |
48 | method: 'post', | 56 | method: 'post', |
49 | data | 57 | data |
50 | }) | 58 | }) |
51 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
59 | } | ... | ... |
... | @@ -80,25 +80,19 @@ | ... | @@ -80,25 +80,19 @@ |
80 | </el-form> | 80 | </el-form> |
81 | </div> | 81 | </div> |
82 | <!-- 表格 --> | 82 | <!-- 表格 --> |
83 | <div class="from-clues-content"> | 83 | <!-- 表格 --> |
84 | <lb-table | 84 | <div class="from-clues-content"> |
85 | :page-size="pageData.size" | 85 | <lb-table :page-size="pageData.size" heightNumSetting :current-page.sync="pageData.current" |
86 | @sort-change="handleSort" | 86 | :total="pageData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange" |
87 | :current-page.sync="pageData.current" | 87 | :column="tableData.columns" :data="tableData.data"> |
88 | :total="pageData.total" | 88 | </lb-table> |
89 | @selection-change="handleSelectionChange" | 89 | </div> |
90 | @size-change="handleSizeChange" | ||
91 | @p-current-change="handleCurrentChange" | ||
92 | :column="tableData.columns" | ||
93 | :data="tableData.data" | ||
94 | > | ||
95 | </lb-table> | ||
96 | </div> | ||
97 | </div> | 90 | </div> |
98 | </template> | 91 | </template> |
99 | <script> | 92 | <script> |
100 | import table from "@/utils/mixin/table"; | 93 | import table from "@/utils/mixin/table"; |
101 | import { datas, sendThis } from "./dbxdata"; | 94 | import { datas, sendThis } from "./dbxdata"; |
95 | import {searchTaskToDo} from "@/api/ywbl.js" | ||
102 | export default { | 96 | export default { |
103 | name: "dbx", | 97 | name: "dbx", |
104 | components: {}, | 98 | components: {}, |
... | @@ -108,6 +102,8 @@ export default { | ... | @@ -108,6 +102,8 @@ export default { |
108 | }, | 102 | }, |
109 | data() { | 103 | data() { |
110 | return { | 104 | return { |
105 | qllxs:[], | ||
106 | djlxs:[], | ||
111 | queryForm: { | 107 | queryForm: { |
112 | ywly: "", | 108 | ywly: "", |
113 | qllx: "", | 109 | qllx: "", |
... | @@ -117,34 +113,29 @@ export default { | ... | @@ -117,34 +113,29 @@ export default { |
117 | pageData: { | 113 | pageData: { |
118 | current: 1, | 114 | current: 1, |
119 | size: 10, | 115 | size: 10, |
120 | total: 2, | 116 | total: 0, |
121 | }, | 117 | }, |
122 | 118 | ||
123 | ywlys: datas.ywlys(), | 119 | ywlys: datas.ywlys(), |
124 | 120 | ||
125 | tableData: { | 121 | tableData: { |
126 | columns: datas.columns(), | 122 | columns: datas.columns(), |
127 | data: [ | 123 | data: [], |
128 | { | ||
129 | ywly:"办事大厅", | ||
130 | lczt:"进行中", | ||
131 | zbhj:"受理", | ||
132 | ywh:"20200409146", | ||
133 | sqywmc:"预告买卖登记||首次登记", | ||
134 | qlr:"张三", | ||
135 | ywr:"绿地开发商", | ||
136 | zl:"C区沙尾金地名轩塔楼1栋101", | ||
137 | slsj: "2022-5-12", | ||
138 | slry:"窗口人员1", | ||
139 | zrsj:"2016-10-01 10:00:00", | ||
140 | }, | ||
141 | ], | ||
142 | }, | 124 | }, |
143 | }; | 125 | }; |
144 | }, | 126 | }, |
127 | created () { }, | ||
145 | methods: { | 128 | methods: { |
146 | // 初始化数据 | 129 | // 列表渲染接口 |
147 | fetchData() {}, | 130 | fetchData(){ |
131 | searchTaskToDo({...this.queryForm,...this.pageData}).then(res=>{ | ||
132 | if (res.code === 200) { | ||
133 | let { total, records } = res.result | ||
134 | this.pageData.total = total; | ||
135 | this.tableData.data = records | ||
136 | } | ||
137 | }) | ||
138 | }, | ||
148 | handleSort(name, sort) { | 139 | handleSort(name, sort) { |
149 | console.log(name, sort); | 140 | console.log(name, sort); |
150 | }, | 141 | }, | ... | ... |
... | @@ -5,17 +5,17 @@ | ... | @@ -5,17 +5,17 @@ |
5 | <el-row> | 5 | <el-row> |
6 | <el-col :span="8"> | 6 | <el-col :span="8"> |
7 | <el-form-item label="业务号:" prop="ywh"> | 7 | <el-form-item label="业务号:" prop="ywh"> |
8 | <el-input v-model="ruleForm.ywh"></el-input> | 8 | <el-input class="width200px" v-model="ruleForm.ywh"></el-input> |
9 | </el-form-item> | 9 | </el-form-item> |
10 | </el-col> | 10 | </el-col> |
11 | <el-col :span="8"> | 11 | <el-col :span="8"> |
12 | <el-form-item label="受理人员:" prop="slry"> | 12 | <el-form-item label="受理人员:" prop="slry"> |
13 | <el-input v-model="ruleForm.slry"></el-input> | 13 | <el-input class="width200px" v-model="ruleForm.slry"></el-input> |
14 | </el-form-item> | 14 | </el-form-item> |
15 | </el-col> | 15 | </el-col> |
16 | <el-col :span="8"> | 16 | <el-col :span="8"> |
17 | <el-form-item label="使用权结束时间:" prop="slsj"> | 17 | <el-form-item label="使用权结束时间:" prop="slsj"> |
18 | <el-date-picker v-model="ruleForm.slsj" type="datetime" placeholder="选择结束时间" | 18 | <el-date-picker class="width200px" v-model="ruleForm.slsj" type="datetime" placeholder="选择结束时间" |
19 | value-format="yyyy-MM-dd" > | 19 | value-format="yyyy-MM-dd" > |
20 | </el-date-picker> | 20 | </el-date-picker> |
21 | </el-form-item> | 21 | </el-form-item> |
... | @@ -24,7 +24,7 @@ | ... | @@ -24,7 +24,7 @@ |
24 | <el-row> | 24 | <el-row> |
25 | <el-col :span="8"> | 25 | <el-col :span="8"> |
26 | <el-form-item label="权利类型:" prop="qllx"> | 26 | <el-form-item label="权利类型:" prop="qllx"> |
27 | <el-select v-model="ruleForm.qllx" filterable clearable placeholder="请选择权利类型"> | 27 | <el-select class="width200px" v-model="ruleForm.qllx" filterable clearable placeholder="请选择权利类型"> |
28 | <el-option v-for="item in qllxOption" :key="item.value" :label="item.label" :value="item.value"> | 28 | <el-option v-for="item in qllxOption" :key="item.value" :label="item.label" :value="item.value"> |
29 | </el-option> | 29 | </el-option> |
30 | </el-select> | 30 | </el-select> |
... | @@ -32,7 +32,7 @@ | ... | @@ -32,7 +32,7 @@ |
32 | </el-col> | 32 | </el-col> |
33 | <el-col :span="8"> | 33 | <el-col :span="8"> |
34 | <el-form-item label="登记类型:" prop="djlx"> | 34 | <el-form-item label="登记类型:" prop="djlx"> |
35 | <el-select v-model="ruleForm.djlx" filterable clearable placeholder="请选择登记类型"> | 35 | <el-select class="width200px" v-model="ruleForm.djlx" filterable clearable placeholder="请选择登记类型"> |
36 | <el-option v-for="item in djlxOption" :key="item.value" :label="item.label" :value="item.value"> | 36 | <el-option v-for="item in djlxOption" :key="item.value" :label="item.label" :value="item.value"> |
37 | </el-option> | 37 | </el-option> |
38 | </el-select> | 38 | </el-select> |
... | @@ -40,7 +40,7 @@ | ... | @@ -40,7 +40,7 @@ |
40 | </el-col> | 40 | </el-col> |
41 | <el-col :span="8"> | 41 | <el-col :span="8"> |
42 | <el-form-item label="登记情形:" prop="djqx"> | 42 | <el-form-item label="登记情形:" prop="djqx"> |
43 | <el-select v-model="ruleForm.djqx" filterable clearable placeholder="请选择登记情形"> | 43 | <el-select class="width200px" v-model="ruleForm.djqx" filterable clearable placeholder="请选择登记情形"> |
44 | <el-option v-for="item in djqxOption" :key="item.value" :label="item.label" :value="item.value"> | 44 | <el-option v-for="item in djqxOption" :key="item.value" :label="item.label" :value="item.value"> |
45 | </el-option> | 45 | </el-option> |
46 | </el-select> | 46 | </el-select> |
... | @@ -51,17 +51,17 @@ | ... | @@ -51,17 +51,17 @@ |
51 | <el-row> | 51 | <el-row> |
52 | <el-col :span="8"> | 52 | <el-col :span="8"> |
53 | <el-form-item label="宗地代码:" prop="zddm"> | 53 | <el-form-item label="宗地代码:" prop="zddm"> |
54 | <el-input v-model="ruleForm.zddm"></el-input> | 54 | <el-input class="width200px" v-model="ruleForm.zddm"></el-input> |
55 | </el-form-item> | 55 | </el-form-item> |
56 | </el-col> | 56 | </el-col> |
57 | <el-col :span="8"> | 57 | <el-col :span="8"> |
58 | <el-form-item label="不动产单元号:" prop="bdcdyh"> | 58 | <el-form-item label="不动产单元号:" prop="bdcdyh"> |
59 | <el-input v-model="ruleForm.bdcdyh"></el-input> | 59 | <el-input class="width200px" v-model="ruleForm.bdcdyh"></el-input> |
60 | </el-form-item> | 60 | </el-form-item> |
61 | </el-col> | 61 | </el-col> |
62 | <el-col :span="8"> | 62 | <el-col :span="8"> |
63 | <el-form-item label="权利性质:" prop="qlxz"> | 63 | <el-form-item label="权利性质:" prop="qlxz"> |
64 | <el-select v-model="ruleForm.qlxz" filterable clearable placeholder="请选择登记情形"> | 64 | <el-select class="width200px" v-model="ruleForm.qlxz" filterable clearable placeholder="请选择登记情形"> |
65 | <el-option v-for="item in qlxzOption" :key="item.value" :label="item.label" :value="item.value"> | 65 | <el-option v-for="item in qlxzOption" :key="item.value" :label="item.label" :value="item.value"> |
66 | </el-option> | 66 | </el-option> |
67 | </el-select> | 67 | </el-select> |
... | @@ -71,19 +71,19 @@ | ... | @@ -71,19 +71,19 @@ |
71 | <el-row> | 71 | <el-row> |
72 | <el-col :span="8"> | 72 | <el-col :span="8"> |
73 | <el-form-item label="宗地面积:" prop="zdmj"> | 73 | <el-form-item label="宗地面积:" prop="zdmj"> |
74 | <el-input v-model="ruleForm.zdmj"></el-input> | 74 | <el-input class="width200px" v-model="ruleForm.zdmj"></el-input> |
75 | </el-form-item> | 75 | </el-form-item> |
76 | </el-col> | 76 | </el-col> |
77 | <el-col :span="16"> | 77 | <el-col :span="16"> |
78 | <el-form-item label="坐落:" prop="zl"> | 78 | <el-form-item label="坐落:" prop="zl"> |
79 | <el-input v-model="ruleForm.zl"></el-input> | 79 | <el-input v-model="ruleForm.zl"></el-input> |
80 | </el-form-item> | 80 | </el-form-item> |
81 | </el-col> | 81 | </el-col> |
82 | </el-row> | 82 | </el-row> |
83 | <el-row> | 83 | <el-row> |
84 | <el-col :span="8"> | 84 | <el-col :span="8"> |
85 | <el-form-item label="土地用途:" prop="tdyt"> | 85 | <el-form-item label="土地用途:" prop="tdyt"> |
86 | <el-select v-model="ruleForm.tdyt" filterable clearable placeholder="请选择登记情形"> | 86 | <el-select class="width200px" v-model="ruleForm.tdyt" filterable clearable placeholder="请选择登记情形"> |
87 | <el-option v-for="item in tdytOption" :key="item.value" :label="item.label" :value="item.value"> | 87 | <el-option v-for="item in tdytOption" :key="item.value" :label="item.label" :value="item.value"> |
88 | </el-option> | 88 | </el-option> |
89 | </el-select> | 89 | </el-select> |
... | @@ -91,7 +91,7 @@ | ... | @@ -91,7 +91,7 @@ |
91 | </el-col> | 91 | </el-col> |
92 | <el-col :span="8"> | 92 | <el-col :span="8"> |
93 | <el-form-item label="权利设定方式:" prop="qlsdfs"> | 93 | <el-form-item label="权利设定方式:" prop="qlsdfs"> |
94 | <el-select v-model="ruleForm.qlsdfs" filterable clearable placeholder="请选择登记情形"> | 94 | <el-select class="width200px" v-model="ruleForm.qlsdfs" filterable clearable placeholder="请选择登记情形"> |
95 | <el-option v-for="item in qlsdfsOption" :key="item.value" :label="item.label" :value="item.value"> | 95 | <el-option v-for="item in qlsdfsOption" :key="item.value" :label="item.label" :value="item.value"> |
96 | </el-option> | 96 | </el-option> |
97 | </el-select> | 97 | </el-select> |
... | @@ -99,28 +99,28 @@ | ... | @@ -99,28 +99,28 @@ |
99 | </el-col> | 99 | </el-col> |
100 | <el-col :span="8"> | 100 | <el-col :span="8"> |
101 | <el-form-item label="取得价格:" prop="qdjg"> | 101 | <el-form-item label="取得价格:" prop="qdjg"> |
102 | <el-input v-model="ruleForm.qdjg"></el-input> | 102 | <el-input class="width200px" v-model="ruleForm.qdjg"></el-input> |
103 | </el-form-item> | 103 | </el-form-item> |
104 | </el-col> | 104 | </el-col> |
105 | </el-row> | 105 | </el-row> |
106 | <el-row> | 106 | <el-row> |
107 | <el-col :span="8"> | 107 | <el-col :span="8"> |
108 | <el-form-item label="使用权起始时间:" prop="syqqssj"> | 108 | <el-form-item label="使用权起始时间:" prop="syqqssj"> |
109 | <el-date-picker v-model="ruleForm.syqqssj" type="datetime" placeholder="选择起始时间" | 109 | <el-date-picker class="width200px" v-model="ruleForm.syqqssj" type="datetime" placeholder="选择起始时间" |
110 | value-format="yyyy-MM-dd" > | 110 | value-format="yyyy-MM-dd" > |
111 | </el-date-picker> | 111 | </el-date-picker> |
112 | </el-form-item> | 112 | </el-form-item> |
113 | </el-col> | 113 | </el-col> |
114 | <el-col :span="8"> | 114 | <el-col :span="8"> |
115 | <el-form-item label="使用权结束时间:" prop="syqjssj"> | 115 | <el-form-item label="使用权结束时间:" prop="syqjssj"> |
116 | <el-date-picker v-model="ruleForm.syqjssj" type="datetime" placeholder="选择结束时间" | 116 | <el-date-picker class="width200px" v-model="ruleForm.syqjssj" type="datetime" placeholder="选择结束时间" |
117 | value-format="yyyy-MM-dd" > | 117 | value-format="yyyy-MM-dd" > |
118 | </el-date-picker> | 118 | </el-date-picker> |
119 | </el-form-item> | 119 | </el-form-item> |
120 | </el-col> | 120 | </el-col> |
121 | <el-col :span="8"> | 121 | <el-col :span="8"> |
122 | <el-form-item label="使用期限:" prop="syqx"> | 122 | <el-form-item label="使用期限:" prop="syqx"> |
123 | <el-date-picker v-model="ruleForm.syqx" type="datetime" placeholder="选择使用期限" | 123 | <el-date-picker class="width200px" v-model="ruleForm.syqx" type="datetime" placeholder="选择使用期限" |
124 | value-format="yyyy-MM-dd" > | 124 | value-format="yyyy-MM-dd" > |
125 | </el-date-picker> | 125 | </el-date-picker> |
126 | </el-form-item> | 126 | </el-form-item> |
... | @@ -129,7 +129,7 @@ | ... | @@ -129,7 +129,7 @@ |
129 | <el-row> | 129 | <el-row> |
130 | <el-col> | 130 | <el-col> |
131 | <el-form-item label="附记:" prop="fj"> | 131 | <el-form-item label="附记:" prop="fj"> |
132 | <el-input type="textarea" v-model="ruleForm.fj"></el-input> | 132 | <el-input type="textarea" v-model="ruleForm.fj"></el-input> |
133 | </el-form-item> | 133 | </el-form-item> |
134 | </el-col> | 134 | </el-col> |
135 | </el-row> | 135 | </el-row> |
... | @@ -208,6 +208,7 @@ export default { | ... | @@ -208,6 +208,7 @@ export default { |
208 | } | 208 | } |
209 | </script> | 209 | </script> |
210 | <style scoped lang='scss'> | 210 | <style scoped lang='scss'> |
211 | @import "~@/styles/public.scss"; | ||
211 | .slxx_title { | 212 | .slxx_title { |
212 | border-bottom: 1px solid $borderColor; | 213 | border-bottom: 1px solid $borderColor; |
213 | padding-left: 10px; | 214 | padding-left: 10px; | ... | ... |
-
Please register or sign in to post a comment