safecheck-client 3.0.33-76 → 3.0.33-78
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 +1 -1
- package/src/components/rongcheng/AspiratedPaperFeedbackm.vue +1046 -1046
- package/src/components/rongcheng/AspiratedPaperMessage.vue +1378 -1378
- package/src/components/rongcheng/PaperListNPSQ.vue +454 -454
- package/src/components/rongcheng/PaperListSQ.vue +444 -447
- package/src/components/rongcheng/PhoneUpUserinfo.vue +1328 -1328
- package/src/filiale/yangchunboneng/pc/CheckBookUser.vue +28 -1
- package/src/filiale/yongzhou/pc/CheckSearchUser.vue +1092 -1092
- package/src/filiale/yongzhou/pc/NoCheckplanSafecheck.vue +557 -557
- package/src/filiale/yongzhou/pc/PaperList.vue +798 -798
- package/src/filiale/yongzhou/pc/safeDetail.vue +539 -539
- package/src/filiale/yongzhou/pc/safeStatistics.vue +175 -175
- package/src/filiale/yongzhou/pc/safeStatisticsYear.vue +135 -135
- package/src/main.js +2 -2
- package/src/rongcheng.js +316 -314
@@ -7,7 +7,33 @@
|
|
7
7
|
<div class="form-group col-sm-3" >
|
8
8
|
<label class="font_normal_body">客户编号</label>
|
9
9
|
<input type="text" class="input_search" style="width:60%" v-model="model.f_userinfo_code" placeholder='客户编号'
|
10
|
-
condition="f_userinfo_code = '{}'" @keyup.enter="search()">
|
10
|
+
condition="tui.f_userinfo_code = '{}'" @keyup.enter="search()">
|
11
|
+
</div>
|
12
|
+
<div class="form-group col-sm-3">
|
13
|
+
<label class="font_normal_body">客户名称</label>
|
14
|
+
<input type="text" class="input_search" v-model="model.f_user_name"
|
15
|
+
style="width: 60%" placeholder="客户名称" condition="tui.f_user_name like '%{}%'">
|
16
|
+
</div>
|
17
|
+
<div class="form-group col-sm-3" >
|
18
|
+
<label class="font_normal_body">地址</label>
|
19
|
+
<input type="text" class="input_search" v-model="model.f_address"
|
20
|
+
style="width: 60%" placeholder="地址" condition="tua.f_address like '%{}%'">
|
21
|
+
</div>
|
22
|
+
</div>
|
23
|
+
<div class="row">
|
24
|
+
<div class="form-group col-sm-3" >
|
25
|
+
<label class="font_normal_body">小区名称</label>
|
26
|
+
<input type="text" class="input_search" v-model="model.f_residential_area"
|
27
|
+
style="width: 60%" placeholder="小区名称" condition="tua.f_residential_area like '%{}%'">
|
28
|
+
</div>
|
29
|
+
<div class="form-group col-sm-3" >
|
30
|
+
<label class="font_normal_body">客户类型</label>
|
31
|
+
<v-select :value.sync="model.f_user_type" v-model='model.f_user_type'
|
32
|
+
:value-single="true" style="width: 60%"
|
33
|
+
class="select_list select"
|
34
|
+
:options='$parent.$parent.userTypes' placeholder='客户类型'
|
35
|
+
close-on-select
|
36
|
+
condition="tuf.f_user_type ='{}'"></v-select>
|
11
37
|
</div>
|
12
38
|
<div class="form-group col-sm-2 button-range" >
|
13
39
|
<button class="button_search" style="margin-right: 10px" @click="search()" v-el:cba>查询</button>
|
@@ -65,6 +91,7 @@ export default {
|
|
65
91
|
checkAll:false,
|
66
92
|
rowdata: this.row,
|
67
93
|
bookList: [],
|
94
|
+
userTypes: [{label: '全部', value: ''},{label: '民用', value: '民用'}, {label: '非民用', value: '非民用'}],
|
68
95
|
model: new PagedList('rs/sql/getUserByCheckBook', 50)
|
69
96
|
}
|
70
97
|
},
|