manage-client 3.3.21 → 3.3.23

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.
@@ -36,7 +36,13 @@
36
36
  closeOnSelect
37
37
  ></v-select>
38
38
  </div>
39
-
39
+ <div class="col-sm-2 form-group">
40
+ <label class="font_normal_body">品名规格</label>
41
+ <v-select :value.sync="model.f_typename"
42
+ :options='$parent.$parent.pmggArray' placeholder='请选择' v-model="model.f_typename" multiple
43
+ condition="f_typename in {}"
44
+ ></v-select>
45
+ </div>
40
46
  <div class="span" style="float:right;">
41
47
  <button class="button_search button_spacing" @click="$parent.$parent.search()">查询</button>
42
48
  <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
@@ -247,6 +253,7 @@ export default {
247
253
  },
248
254
  committeeArray:[],
249
255
  communityArray:[],
256
+ pmggArray:[],
250
257
  //默认打印列
251
258
  defaultfield: [],
252
259
  config: {
@@ -300,6 +307,7 @@ export default {
300
307
  //self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString()
301
308
  //self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString()
302
309
  this.getCommunityArray();
310
+ this.getPmggArray();
303
311
  },
304
312
  methods: {
305
313
  async getinputtores () {
@@ -344,6 +352,24 @@ export default {
344
352
  }
345
353
  this.communityArray = nameArr
346
354
  },
355
+
356
+ async getPmggArray(){
357
+ let HttpReset = new HttpResetClass()
358
+ var data = await HttpReset.load('POST', 'rs/sql/singleTable_Final', {
359
+ data: {
360
+ condition: "t.name ='安全装置加装项目'",
361
+ tablename: 't_parameter t left outer join t_paramvalue t2 on t2.processid = t.id',
362
+ groupitem: "t2.name",
363
+ orderitem: 't2.name',
364
+ items: 't2.name'
365
+ }
366
+ }, {resolveMsg: null, rejectMsg: '获取失败!'})
367
+ let nameArr = []
368
+ for (let row of data.data){
369
+ nameArr.push({label: row.name.replace("+"," "), value: row.name.replace("+"," ")})
370
+ }
371
+ this.pmggArray = nameArr
372
+ },
347
373
  async communityChange(){
348
374
  this.committeeArray=[]
349
375
  if(this.$refs.paged.$refs.cri.model !==null) {
@@ -154,7 +154,7 @@
154
154
  <th><nobr>统一社会信用代码</nobr></th>
155
155
  <th><nobr>单位名称</nobr></th>
156
156
  <th><nobr>经营名称</nobr></th>
157
- <th><nobr>经营场所</nobr></th>
157
+ <th><data-order field="f_address" name="经营场所"></data-order></th>
158
158
  <th><nobr>法定代表人/经营者</nobr></th>
159
159
  <th><nobr>电话号码</nobr></th>
160
160
  <th><nobr>身份证号</nobr></th>
@@ -163,7 +163,7 @@
163
163
  <th><nobr>代理人电话</nobr></th>
164
164
  <th><nobr>变更记录</nobr></th>
165
165
 
166
- <th><nobr>建档日期</nobr></th>
166
+ <th><data-order field="f_createfile_date" name="建档日期"></data-order></th>
167
167
  <th><nobr>供用气合同编号</nobr></th>
168
168
  <th><nobr>通气日期</nobr></th>
169
169
  <th><nobr>通气人员</nobr></th>
@@ -138,10 +138,12 @@
138
138
  <th><nobr>小区名称</nobr></th>
139
139
  <th><nobr>户主姓名</nobr></th>
140
140
  <th><nobr>身份证号</nobr></th>
141
- <th><nobr>详细地址</nobr></th>
141
+ <!--<th><nobr>详细地址</nobr></th>-->
142
+ <th> <data-order field="f_address" name="详细地址"></data-order></th>
142
143
  <th><nobr>联系电话</nobr></th>
143
144
  <!--建档信息-->
144
- <th><nobr>建档日期</nobr></th>
145
+ <!--<th><nobr>建档日期</nobr></th>-->
146
+ <th> <data-order field="f_createfile_date" name="建档日期"></data-order></th>
145
147
  <th><nobr>供用气合同编号</nobr></th>
146
148
  <th><nobr>通气日期</nobr></th>
147
149
  <th><nobr>通气人员</nobr></th>