apply-clients 3.3.81 → 3.3.83

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.
@@ -4,21 +4,26 @@
4
4
  <criteria partial='criteria' @condition-changed='search' v-ref:cri>
5
5
  <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
6
  <div class="row">
7
+ <div class="form-group col-sm-3">
8
+ <label class="font_normal_body">客户名称:</label>
9
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
10
+ v-on:keyup.enter="$parent.$parent.search()" condition="f_user_name like '%{}%'" placeholder='客户名称'>
11
+ </div>
7
12
  <div class="form-group col-sm-3">
8
13
  <label class="font_normal_body">组织机构:</label>
9
14
  <res-select
10
15
  restype='organization'
11
- :initresid='$parent.$parent.curorgid'
16
+ :initresid='$parent.$parent.curorgid'·
12
17
  @res-select="$parent.$parent.getorg"
13
18
  is-mul="false"
14
19
  ></res-select>
15
20
  </div>
16
- <div class="form-group col-sm-3">
17
- <label class="font_normal_body">工程编号:</label>
18
- <input type="text" style="width:60%" class="input_search" placeholder='工程编号' v-model="model.f_apply_num"
19
- v-on:keyup.enter="search"
20
- condition="f_apply_num = '{}'">
21
- </div>
21
+ <!-- <div class="form-group col-sm-3">-->
22
+ <!-- <label class="font_normal_body">工程编号:</label>-->
23
+ <!-- <input type="text" style="width:60%" class="input_search" placeholder='工程编号' v-model="model.f_apply_num"-->
24
+ <!-- v-on:keyup.enter="search"-->
25
+ <!-- condition="f_apply_num = '{}'">-->
26
+ <!-- </div>-->
22
27
  <div class="form-group col-sm-2 button-range">
23
28
  <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
24
29
  <button class="button_search button_spacing" @click="$parent.$parent.loadPage()">返回</button>
@@ -38,10 +43,16 @@
38
43
  </div>
39
44
  </div>
40
45
  <div class="row" v-show="$parent.$parent.criteriaShow">
46
+ <!-- <div class="form-group col-sm-3">-->
47
+ <!-- <label class="font_normal_body">客户名称:</label>-->
48
+ <!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"-->
49
+ <!-- v-on:keyup.enter="$parent.$parent.search()" condition="f_user_name like '%{}%'" placeholder='客户名称'>-->
50
+ <!-- </div>-->
41
51
  <div class="form-group col-sm-3">
42
- <label class="font_normal_body">客户名称:</label>
43
- <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
44
- v-on:keyup.enter="$parent.$parent.search()" condition="f_user_name like '%{}%'" placeholder='客户名称'>
52
+ <label class="font_normal_body">工程编号:</label>
53
+ <input type="text" style="width:60%" class="input_search" placeholder='工程编号' v-model="model.f_apply_num"
54
+ v-on:keyup.enter="search"
55
+ condition="f_apply_num = '{}'">
45
56
  </div>
46
57
  <div class="form-group col-sm-3">
47
58
  <label class="font_normal_body">联系电话:</label>
@@ -137,6 +148,12 @@
137
148
  <input type="text" style="width:60%" class="input_search" v-model="model.f_construction_unit"
138
149
  v-on:keyup.enter="$parent.$parent.search()" condition="f_construction_unit like '%{}%'" placeholder='施工单位'>
139
150
  </div>
151
+ <div class="form-group col-sm-3">
152
+ <label class="font_normal_body">表&emsp;&emsp;号:</label>
153
+ <input type="text" style="width:60%" class="input_search" placeholder='表号' v-model="model.f_meternumber"
154
+ v-on:keyup.enter="$parent.$parent.search()"
155
+ condition="f_meternumber like '%{}%'">
156
+ </div>
140
157
  </div>
141
158
  </div>
142
159
  </criteria>
@@ -252,7 +269,8 @@
252
269
  'f_operator': '发起人',
253
270
  'f_install_project': '安装项目',
254
271
  'f_construction_unit': '施工单位',
255
- 'f_construction_date': '施工时间'
272
+ 'f_construction_date': '施工时间',
273
+ 'f_meternumber':'表号'
256
274
  }
257
275
  }
258
276
  },
package/src/main.js CHANGED
@@ -2,23 +2,21 @@ import Vue from 'vue'
2
2
  import App from './App'
3
3
  import { all } from 'vue-client'
4
4
  import {ldap} from 'ldap-clients'
5
- //import {system} from 'system-clients'
6
- import {systemphonegrid} from 'system-phone'
5
+ import {system} from 'system-clients'
7
6
  import {sale} from 'sale-client'
8
7
  import {material} from 'material-client'
9
8
 
10
- //import apply from './apply'
9
+ import apply from './apply'
11
10
 
12
- import applyAndroid from './applyAndroid'
11
+ // import applyAndroid from './applyAndroid'
13
12
 
14
13
  all()
15
- //apply()
16
- applyAndroid()
14
+ apply()
15
+ // applyAndroid()
17
16
  ldap()
18
17
  sale()
19
18
  material()
20
- //system()
21
- systemphonegrid(false)
19
+ system(false)
22
20
 
23
21
  require('system-clients/src/styles/less/bootstrap.less')
24
22
  require('./expandcss.less')