sale-client 4.2.62 → 4.2.63
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
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<div class="form-group" :class="{'col-sm-2':!$parent.$parent.$parent.isdetail, 'col-sm-3':$parent.$parent.$parent.isdetail}"
|
|
16
16
|
v-if="!$parent.$parent.$parent.isdetail">
|
|
17
17
|
<label class="font_normal_body">用户姓名</label>
|
|
18
|
-
<input class="input_search" condition="f_user_name
|
|
18
|
+
<input class="input_search" condition="f_user_name like '%{}%'" placeholder="用户姓名" style="width:60%" style="width: 90px"
|
|
19
19
|
type="text" v-model="model.name"
|
|
20
20
|
/>
|
|
21
21
|
</div>
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
<div class="form-group" :class="{'col-sm-2':!$parent.$parent.$parent.isdetail, 'col-sm-3':$parent.$parent.$parent.isdetail}"
|
|
48
48
|
v-if="$parent.$parent.$parent.isdetail">
|
|
49
49
|
<label class="font_normal_body">用户姓名</label>
|
|
50
|
-
<input class="input_search" condition="f_user_name
|
|
50
|
+
<input class="input_search" condition="f_user_name like '%{}%'" placeholder="用户姓名" style="width:60%" style="width: 90px"
|
|
51
51
|
type="text" v-model="model.name"
|
|
52
52
|
/>
|
|
53
53
|
</div>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class="col-sm-2 form-group">
|
|
96
96
|
<label class="font_normal_body">客户姓名</label>
|
|
97
97
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name" placeholder='客户姓名'
|
|
98
|
-
condition="f_user_name
|
|
98
|
+
condition="f_user_name like '%{}%'">
|
|
99
99
|
</div>
|
|
100
100
|
<div class="col-sm-2 form-group">
|
|
101
101
|
<label class="font_normal_body">小    区</label>
|
|
@@ -215,6 +215,11 @@
|
|
|
215
215
|
</div>
|
|
216
216
|
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes"
|
|
217
217
|
v-ref:sel></res-select-group>
|
|
218
|
+
<div class="col-sm-2 form-group">
|
|
219
|
+
<label class="font_normal_body">旧客户编号</label>
|
|
220
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_olduserinfo_code"
|
|
221
|
+
condition="f_olduserinfo_code='{}'" placeholder='客户编号'>
|
|
222
|
+
</div>
|
|
218
223
|
</div>
|
|
219
224
|
|
|
220
225
|
|
|
@@ -253,6 +258,11 @@
|
|
|
253
258
|
:order.sync="$parent.$parent.$parent.orderFields.f_userinfo_code"></data-order>
|
|
254
259
|
</nobr>
|
|
255
260
|
</th>
|
|
261
|
+
<th>
|
|
262
|
+
<nobr>
|
|
263
|
+
旧客户编号
|
|
264
|
+
</nobr>
|
|
265
|
+
</th>
|
|
256
266
|
<!-- <th>-->
|
|
257
267
|
<!-- <nobr>表编号</nobr>-->
|
|
258
268
|
<!-- </th>-->
|
|
@@ -371,6 +381,7 @@
|
|
|
371
381
|
<!--</td>-->
|
|
372
382
|
<td style="text-align: center;">{{$index + 1}}</td>
|
|
373
383
|
<td>{{row.f_userinfo_code}}</td>
|
|
384
|
+
<td>{{row.f_olduserinfo_code}}</td>
|
|
374
385
|
<td style="text-align: center;">{{row.f_user_name}} {{row.f_address}}</td>
|
|
375
386
|
<td style="text-align: center;">{{row.f_user_level}}</td>
|
|
376
387
|
<!--<td>{{row.f_building}}</td>-->
|
package/src/main.js
CHANGED
|
@@ -2,7 +2,7 @@ import Vue from 'vue'
|
|
|
2
2
|
import all from 'vue-client/src/all'
|
|
3
3
|
import App from './App'
|
|
4
4
|
import system from 'system-clients/src/system'
|
|
5
|
-
import FilialeSale from './filiale/
|
|
5
|
+
import FilialeSale from './filiale/TaiYuan/sale'
|
|
6
6
|
import sale from './sale'
|
|
7
7
|
import address from 'address-client/src/address'
|
|
8
8
|
import ldap from 'ldap-clients/src/ldap'
|