Merge branch 'master' of http://yun.pashanhoo.com:9090/bdc/bdcjg-web
Showing
4 changed files
with
54 additions
and
71 deletions
... | @@ -8,21 +8,21 @@ | ... | @@ -8,21 +8,21 @@ |
8 | <el-col :span="6"> | 8 | <el-col :span="6"> |
9 | <el-form-item label="行政区" prop="pcode"> | 9 | <el-form-item label="行政区" prop="pcode"> |
10 | <el-select v-model="form.pcode" class="width100" clearable placeholder="行政区"> | 10 | <el-select v-model="form.pcode" class="width100" clearable placeholder="行政区"> |
11 | <el-option v-for="item in xzqOptions" :key="item.value" :label="item.label" :value="item.value"> | 11 | <el-option v-for="item in dicData['A20']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE"> |
12 | </el-option> | 12 | </el-option> |
13 | </el-select> | 13 | </el-select> |
14 | </el-form-item> | 14 | </el-form-item> |
15 | </el-col> | 15 | </el-col> |
16 | <el-col :span="12"> | 16 | <el-col :span="12"> |
17 | <el-form-item label="汇交时间" prop="reportStartTime"> | 17 | <el-form-item label="汇交时间" prop="startTime"> |
18 | <el-row :gutter="20"> | 18 | <el-row :gutter="20"> |
19 | <el-col :span="12"> | 19 | <el-col :span="12"> |
20 | <el-date-picker type="date" class="width100" placeholder="开始日期" :picker-options="pickerOptionsStart" | 20 | <el-date-picker type="date" class="width100" placeholder="开始日期" :picker-options="pickerOptionsStart" |
21 | clearable v-model="form.reportStartTime" value-format="yyyy-MM-dd"></el-date-picker> | 21 | clearable v-model="form.exchangeStartTime" value-format="yyyy-MM-dd"></el-date-picker> |
22 | </el-col> | 22 | </el-col> |
23 | <el-col :span="12"> | 23 | <el-col :span="12"> |
24 | <el-date-picker type="date" class="width100" placeholder="结束日期" :picker-options="pickerOptionsEnd" | 24 | <el-date-picker type="date" class="width100" placeholder="结束日期" :picker-options="pickerOptionsEnd" |
25 | clearable v-model="form.reportEndTime" value-format="yyyy-MM-dd"></el-date-picker> | 25 | clearable v-model="form.exchangeEndTime" value-format="yyyy-MM-dd"></el-date-picker> |
26 | </el-col> | 26 | </el-col> |
27 | </el-row> | 27 | </el-row> |
28 | </el-form-item> | 28 | </el-form-item> |
... | @@ -95,7 +95,7 @@ export default { | ... | @@ -95,7 +95,7 @@ export default { |
95 | components: { | 95 | components: { |
96 | dataDetails, | 96 | dataDetails, |
97 | }, | 97 | }, |
98 | data () { | 98 | data() { |
99 | return { | 99 | return { |
100 | isShow: false, | 100 | isShow: false, |
101 | // 开始结束日期限制 | 101 | // 开始结束日期限制 |
... | @@ -120,18 +120,21 @@ export default { | ... | @@ -120,18 +120,21 @@ export default { |
120 | }, | 120 | }, |
121 | // 头部搜索 | 121 | // 头部搜索 |
122 | form: { | 122 | form: { |
123 | estatenum: "", | 123 | qxdm: "", // 行政区 |
124 | reportStartTime: "", | 124 | exchangeStartTime: "", // 开始日期 |
125 | reportEndTime: "", | 125 | exchangeEndTime: "", // 结束日期 |
126 | ywmc: "", | 126 | bdcdyh: "", // 不动产单元号 |
127 | state: "", | 127 | ywh: "", // 业务号 |
128 | pcode: "", | 128 | qllx: "", // 权利类型 |
129 | djlx: "", // 登记类型 | ||
130 | jcjg: "", // 检查结果 | ||
131 | rkjg: "", //入库结果 | ||
132 | currentPage: 1, | ||
129 | }, | 133 | }, |
130 | // table数据 | 134 | // table数据 |
131 | tableData: { | 135 | tableData: { |
132 | // 表头数据 | 136 | // 表头数据 |
133 | columns: datas.columns() | 137 | columns: datas.columns().concat([ |
134 | .concat([ | ||
135 | { | 138 | { |
136 | label: "操作", | 139 | label: "操作", |
137 | width: "80", | 140 | width: "80", |
... | @@ -155,38 +158,19 @@ export default { | ... | @@ -155,38 +158,19 @@ export default { |
155 | total: 0, | 158 | total: 0, |
156 | data: [{}], | 159 | data: [{}], |
157 | }, | 160 | }, |
158 | // 行政区 | 161 | title: "", |
159 | xzqOptions: [ | ||
160 | { | ||
161 | value: "632321", | ||
162 | label: "同仁县", | ||
163 | }, | ||
164 | { | ||
165 | value: "632322", | ||
166 | label: "尖扎县", | ||
167 | }, | ||
168 | { | ||
169 | value: "632323", | ||
170 | label: "泽库县", | ||
171 | }, | ||
172 | { | ||
173 | value: "632324", | ||
174 | label: "河南县", | ||
175 | }, | ||
176 | ], | ||
177 | title: '' | ||
178 | }; | 162 | }; |
179 | }, | 163 | }, |
180 | mounted () { | 164 | mounted() { |
181 | sendThis(this); | 165 | sendThis(this); |
182 | }, | 166 | }, |
183 | methods: { | 167 | methods: { |
184 | // 重置表单 | 168 | // 重置表单 |
185 | resetForm () { | 169 | resetForm() { |
186 | this.$refs.ruleForm.resetFields(); | 170 | this.$refs.ruleForm.resetFields(); |
187 | }, | 171 | }, |
188 | // 初始化数据 | 172 | // 初始化数据 |
189 | queryClick () { | 173 | queryClick() { |
190 | getDataReportPage({ ...this.form, ...this.pageData }).then((res) => { | 174 | getDataReportPage({ ...this.form, ...this.pageData }).then((res) => { |
191 | if (res.code === 200) { | 175 | if (res.code === 200) { |
192 | let { total, records } = res.result; | 176 | let { total, records } = res.result; |
... | @@ -196,12 +180,12 @@ export default { | ... | @@ -196,12 +180,12 @@ export default { |
196 | }); | 180 | }); |
197 | }, | 181 | }, |
198 | // 多选 | 182 | // 多选 |
199 | handleSelectionChange (val) { }, | 183 | handleSelectionChange(val) {}, |
200 | // 上报 | 184 | // 上报 |
201 | handleEscalation () { }, | 185 | handleEscalation() {}, |
202 | // 详情 | 186 | // 详情 |
203 | handleDetail (row) { | 187 | handleDetail(row) { |
204 | this.title = row.rectypeName | 188 | this.title = row.rectypeName; |
205 | this.$refs.editLog.isShow(row); | 189 | this.$refs.editLog.isShow(row); |
206 | }, | 190 | }, |
207 | }, | 191 | }, | ... | ... |
... | @@ -132,19 +132,19 @@ export default { | ... | @@ -132,19 +132,19 @@ export default { |
132 | // ) | 132 | // ) |
133 | // } | 133 | // } |
134 | // }, | 134 | // }, |
135 | { | 135 | // { |
136 | prop: 'isenable', | 136 | // prop: 'isenable', |
137 | width: '160', | 137 | // width: '160', |
138 | label: '是否禁用', | 138 | // label: '是否禁用', |
139 | render: (h, scope) => { | 139 | // render: (h, scope) => { |
140 | return ( | 140 | // return ( |
141 | <el-radio-group disabled={this.details.isenable == 2} v-model={scope.row.isenable}> | 141 | // <el-radio-group disabled={this.details.isenable == 2} v-model={scope.row.isenable}> |
142 | <el-radio label="1">启用</el-radio> | 142 | // <el-radio label="1">启用</el-radio> |
143 | <el-radio label="0">禁用</el-radio> | 143 | // <el-radio label="0">禁用</el-radio> |
144 | </el-radio-group> | 144 | // </el-radio-group> |
145 | ) | 145 | // ) |
146 | } | 146 | // } |
147 | }, | 147 | // }, |
148 | { | 148 | { |
149 | width: '130', | 149 | width: '130', |
150 | label: '移动', | 150 | label: '移动', | ... | ... |
... | @@ -30,21 +30,21 @@ class data extends filter { | ... | @@ -30,21 +30,21 @@ class data extends filter { |
30 | prop: "DNAME", | 30 | prop: "DNAME", |
31 | label: "字典类型名称", | 31 | label: "字典类型名称", |
32 | }, | 32 | }, |
33 | { | 33 | // { |
34 | label: "是否允许修改", | 34 | // label: "是否允许修改", |
35 | width: '150', | 35 | // width: '150', |
36 | render: (h, scope) => { | 36 | // render: (h, scope) => { |
37 | return ( | 37 | // return ( |
38 | <div> | 38 | // <div> |
39 | { | 39 | // { |
40 | scope.row.ISENABLE == '1' ? | 40 | // scope.row.ISENABLE == '1' ? |
41 | <div class='allow'>允许</div> : | 41 | // <div class='allow'>允许</div> : |
42 | <div class='prohibit'>禁止</div> | 42 | // <div class='prohibit'>禁止</div> |
43 | } | 43 | // } |
44 | </div> | 44 | // </div> |
45 | ) | 45 | // ) |
46 | } | 46 | // } |
47 | } | 47 | // } |
48 | ] | 48 | ] |
49 | } | 49 | } |
50 | 50 | ... | ... |
-
Please register or sign in to post a comment