safecheck-client 3.0.33-14 → 3.0.33-15

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,7 +1,7 @@
1
1
  {
2
2
  "name": "safecheck-client",
3
3
  "//": "主分支版本别乱升,测试包的版本直接发包(建议使用1.XX.XX-XXX格式作为测试包,不要频繁升级第三位版本号),别提交版本号。切了分支切记把主分支版本升了,保证主分支始终是最高版本!!!!!",
4
- "version": "3.0.33-14",
4
+ "version": "3.0.33-15",
5
5
  "description": "安检模块 前端组件",
6
6
  "author": "丁新 <417755458@qq.com>",
7
7
  "license": "ISC",
@@ -140,6 +140,7 @@ export default {
140
140
  f_depid: Vue.user.orgid,
141
141
  f_depname: Vue.user.orgs,
142
142
  f_meternumber: this.model.f_meternumber,
143
+ version: this.model.version,
143
144
  f_table_state: '正常',
144
145
  f_gas_date: Util.toStandardTimeString(),
145
146
  f_gas_person: this.model.f_gas_person,
@@ -105,14 +105,36 @@
105
105
  condition="{}"></v-select>
106
106
  </div>
107
107
  </div>
108
+ <div class="row">
109
+ <div class="col-sm-3 form-group" v-show="$parent.$parent.criteriaShow">
110
+ <label class="font_normal_body">区/县</label>
111
+ <input type="text" class="input_search" v-model="model.f_pcd"
112
+ style="width: 60%" placeholder="区/县" condition="f_pcd like '%{}%'">
113
+ </div>
114
+ <div class="col-sm-3 form-group" v-show="$parent.$parent.criteriaShow">
115
+ <label class="font_normal_body">街道/乡镇</label>
116
+ <input type="text" class="input_search" v-model="model.f_street"
117
+ style="width: 60%" placeholder="街道/乡镇" condition="f_street like '%{}%'">
118
+ </div>
119
+ <div class="col-sm-3 form-group" v-show="$parent.$parent.criteriaShow">
120
+ <label class="font_normal_body">街道/乡镇</label>
121
+ <input type="text" class="input_search" v-model="model.f_community_name"
122
+ style="width: 60%" placeholder="街道/乡镇" condition="f_community_name like '%{}%'">
123
+ </div>
124
+ <div class="col-sm-3 form-group" v-show="$parent.$parent.criteriaShow">
125
+ <label class="font_normal_body">小区/自然村</label>
126
+ <input type="text" class="input_search" v-model="model.f_residential_area"
127
+ style="width: 60%" placeholder="小区/自然村" condition="f_residential_area like '%{}%'">
128
+ </div>
129
+ </div>
108
130
  </div>
109
131
  </criteria>
110
132
  <data-grid class="list_area table_sy" style="overflow: hidden" :model="model" partial='list' v-ref:grid>
111
133
  <template partial='head'>
112
134
  <tr @dblclick.stop="">
113
- <!-- <th>-->
114
- <!-- <nobr><input type="checkbox" v-model="$parent.$parent.$parent.bookAll"></input>全选</nobr>-->
115
- <!-- </th>-->
135
+ <th>
136
+ <nobr><input type="checkbox" v-model="$parent.$parent.$parent.bookAll"></input>全选</nobr>
137
+ </th>
116
138
  <th>
117
139
  <nobr>客户姓名</nobr>
118
140
  </th>
@@ -126,7 +148,16 @@
126
148
  <nobr>客户电话</nobr>
127
149
  </th>
128
150
  <th>
129
- <nobr>用户单位</nobr>
151
+ <nobr>区/县</nobr>
152
+ </th>
153
+ <th>
154
+ <nobr>街道/乡镇</nobr>
155
+ </th>
156
+ <th>
157
+ <nobr>片区/行政村</nobr>
158
+ </th>
159
+ <th>
160
+ <nobr>小区/自然村</nobr>
130
161
  </th>
131
162
  <th>
132
163
  <nobr>客户地址</nobr>
@@ -146,6 +177,9 @@
146
177
  <td style="text-align: center">{{ row.f_userinfo_code }}</td>
147
178
  <td style="text-align: center">{{ row.f_user_type }}</td>
148
179
  <td style="text-align: center">{{ row.f_user_phone }}</td>
180
+ <td style="text-align: center">{{ row.f_pcd }}</td>
181
+ <td style="text-align: center">{{ row.f_street }}</td>
182
+ <td style="text-align: center">{{ row.f_community_name }}</td>
149
183
  <td style="text-align: center">{{ row.f_residential_area }}</td>
150
184
  <td style="text-align: center">{{ row.f_address }}</td>
151
185
  <td style="text-align: center">{{ row.f_check_book_name }}</td>