apply-clients 4.1.43-weinan → 4.1.45-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.45-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="开始日期"
@@ -123,9 +135,9 @@
123
135
  <th style="white-space: nowrap;">终止原因</th>
124
136
  <th style="white-space: nowrap;">终止时间</th>
125
137
  <th style="white-space: nowrap;">终止人</th>
126
- <th style="white-space: nowrap;">撤销原因</th>
127
- <th style="white-space: nowrap;">撤销时间</th>
128
- <th style="white-space: nowrap;">撤销人</th>
138
+ <th style="white-space: nowrap;">启用原因</th>
139
+ <th style="white-space: nowrap;">启用时间</th>
140
+ <th style="white-space: nowrap;">启用人</th>
129
141
  <th style="white-space: nowrap;">操作</th>
130
142
  </tr>
131
143
  </template>
@@ -177,7 +189,7 @@
177
189
  </button>
178
190
  <ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">
179
191
  <li>
180
- <a href="#" @click="$parent.$parent.$parent.click(row)">撤销</a>
192
+ <a href="#" @click="$parent.$parent.$parent.click(row)">重新启用</a>
181
193
  </li>
182
194
  </ul>
183
195
  </dropdown>
@@ -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
  }