apply-clients 3.3.85 → 3.3.88

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": "3.3.85",
3
+ "version": "3.3.88",
4
4
  "description": "报建前端模块",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -182,6 +182,7 @@ export default {
182
182
  if (data.f_material_name.substr(0,3) === '报警器'){
183
183
  let res = await this.$resetpost(
184
184
  `${this.$androidUtil.getProxyUrl()}/ncc/rs/logic/bjqcheck`,
185
+ // `ncc/rs/logic/bjqcheck`,
185
186
  // `/rs/logic/bjqcheck`,
186
187
  data
187
188
  )
@@ -1010,6 +1010,7 @@ export default {
1010
1010
  }
1011
1011
  let res = await this.$resetpost(
1012
1012
  `${this.$androidUtil.getProxyUrl()}/ncc/rs/logic/bjqadduser`,
1013
+ // `ncc/rs/logic/bjqadduser`,
1013
1014
  // `/rs/logic/bjqadduser`,
1014
1015
  adddata
1015
1016
  )
@@ -80,6 +80,12 @@
80
80
  v-on:keyup.enter="$parent.$parent.search()"
81
81
  condition="ma.f_material_number = '{}'">
82
82
  </div>
83
+ <div class="form-group col-sm-3">
84
+ <label class="font_normal_body">材料审核:</label>
85
+ <input type="text" style="width: 60%" class="input_search" placeholder='材料审核' v-model="model.person"
86
+ v-on:keyup.enter="$parent.$parent.search()"
87
+ condition="ac.person = '{}'">
88
+ </div>
83
89
  <div class="form-group col-sm-3">
84
90
  <label for="startDate" class="font_normal_body">开始时间:</label>
85
91
  <datepicker id="startDate" placeholder="开始日期"
@@ -117,6 +123,7 @@
117
123
  <th>材料单位</th>
118
124
  <th>材料数量</th>
119
125
  <th>操作人</th>
126
+ <th>材料审核</th>
120
127
  <th>操作时间</th>
121
128
  </tr>
122
129
  </template>
@@ -149,6 +156,9 @@
149
156
  <td style="text-align: center;">
150
157
  <nobr><font>{{row.f_operator}}</font></nobr>
151
158
  </td>
159
+ <td style="text-align: center;">
160
+ <nobr><font>{{row.person}}</font></nobr>
161
+ </td>
152
162
  <td style="text-align: center;">
153
163
  <nobr><font>{{row.f_operation_date}}</font></nobr>
154
164
  </td>
@@ -196,6 +206,7 @@ export default {
196
206
  'f_material_style': '材料型号',
197
207
  'f_material_unit': '材料单位',
198
208
  'f_material_number': '材料数量',
209
+ 'person': '材料审核',
199
210
  'f_operator': '操作人',
200
211
  'f_operation_date': '操作时间'
201
212
  }