apply-clients 4.1.43-weinan → 4.1.44-weinan

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apply-clients",
3
- "version": "4.1.43-weinan",
3
+ "version": "4.1.44-weinan",
4
4
  "description": "报建前端模块",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -85,6 +85,18 @@
85
85
  v-on:keyup.enter="search"
86
86
  condition="u.f_address like '%{}%'">
87
87
  </div>
88
+ <div class="form-group col-sm-3">
89
+ <label class="font_normal_body">终止状态:</label>
90
+ <v-select
91
+ v-model="model.f_state"
92
+ placeholder='办理环节'
93
+ condition="s.f_state = '{}'"
94
+ :value.sync="model.f_state"
95
+ :options='$parent.$parent.states'
96
+ class="select select_list"
97
+ :value-single="true"
98
+ close-on-select ></v-select>
99
+ </div>
88
100
  <div class="form-group col-sm-3">
89
101
  <label for="startDate" class="font_normal_body">开始时间:</label>
90
102
  <datepicker id="startDate" placeholder="开始日期"
@@ -203,6 +215,7 @@ export default {
203
215
  curorgid: [this.$login.f.orgid],
204
216
  applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
205
217
  defnames: [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')], // 流程节点
218
+ states: [{label: '全部', value: ''}, {label: '有效', value: '有效'}, {label: '无效', value: '无效'}],
206
219
  applyNatures: [{label: '全部', value: ''}], // 报建性质
207
220
  criteriaShow: false
208
221
  }