manage-client 3.2.292 → 3.2.294
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/AutoTest/BasePage.py +42 -0
- package/AutoTest/Config.json +2 -0
- package/AutoTest/PublicScript.py +447 -0
- package/AutoTest/README.md +12 -0
- package/AutoTest/__init__.py +0 -0
- package/AutoTest/all_case/__init__.py +0 -0
- package/AutoTest/all_case/search/__init__.py +0 -0
- package/AutoTest/all_case/search/as_ArchivesQueryScript2.py +155 -0
- package/AutoTest/all_case/search/as_AuditQueryScript2.py +113 -0
- package/AutoTest/all_case/search/as_Chargequery2.py +96 -0
- package/AutoTest/all_case/search/as_FinancialQueryScript2.py +142 -0
- package/AutoTest/all_case/search/as_Security_check3.py +99 -0
- package/AutoTest/all_case/search/as_ServiceQueryScript2.py +547 -0
- package/AutoTest/all_case/search/as_SummaryQueryScript2.py +77 -0
- package/AutoTest/all_case/search/as_Wechatmanage2.py +121 -0
- package/AutoTest/all_case/search/as_Writemetersearch2.py +114 -0
- package/AutoTest/report//346/237/245/350/257/242/351/203/250/345/210/206/346/265/213/350/257/225/346/212/245/345/221/212.html +7322 -0
- package/AutoTest/requirements.txt +9 -0
- package/AutoTest/search_test_run.py +24 -0
- package/package.json +1 -1
- package/src/filiale/huayin/ChargeQuery.vue +1 -1
- package/src/filiale/shanxian/AreaGeneralQuery.vue +30 -0
- package/src/filiale/shanxian/ChangeMeterQuery.vue +30 -29
- package/src/filiale/shanxian/ChargeQuery.vue +1344 -0
- package/src/filiale/shanxian/FillCardQuery.vue +26 -26
- package/src/filiale/shanxian/FillGasQuery.vue +28 -28
- package/src/filiale/shanxian/OtherChargeQuery.vue +27 -27
- package/src/filiale/shanxian/RecordInfoQuery.vue +1 -1
- package/src/filiale/shanxian/sale.js +2 -0
|
@@ -8,29 +8,19 @@
|
|
|
8
8
|
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
9
9
|
<div class="row">
|
|
10
10
|
<div class="col-sm-2 form-group">
|
|
11
|
-
<label
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
:value.sync="model.startDate"
|
|
15
|
-
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
16
|
-
:show-reset-button="true"
|
|
17
|
-
condition="f_operate_date >= '{}'">
|
|
18
|
-
</datepicker>
|
|
11
|
+
<label class="font_normal_body">用户编号</label>
|
|
12
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_userinfo_code"
|
|
13
|
+
condition="f_userinfo_code = '{}' " placeholder="用户编号">
|
|
19
14
|
</div>
|
|
20
15
|
<div class="col-sm-2 form-group">
|
|
21
|
-
<label
|
|
22
|
-
<
|
|
23
|
-
|
|
24
|
-
:value.sync="model.endDate"
|
|
25
|
-
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
26
|
-
:show-reset-button="true"
|
|
27
|
-
condition="f_operate_date <= '{}'">
|
|
28
|
-
</datepicker>
|
|
16
|
+
<label class="font_normal_body">用户名称</label>
|
|
17
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
18
|
+
condition="f_user_name like '%{}%'" placeholder="用户名称">
|
|
29
19
|
</div>
|
|
30
20
|
<div class="col-sm-2 form-group">
|
|
31
|
-
<label class="font_normal_body"
|
|
32
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.
|
|
33
|
-
condition="
|
|
21
|
+
<label class="font_normal_body">用户地址</label>
|
|
22
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_address"
|
|
23
|
+
condition="f_address like '%{}%'" placeholder='用户地址'>
|
|
34
24
|
</div>
|
|
35
25
|
<div class="col-sm-2 form-group">
|
|
36
26
|
<label class="font_normal_body" title="旧用户编号">档案编号</label>
|
|
@@ -56,17 +46,27 @@
|
|
|
56
46
|
</div>
|
|
57
47
|
|
|
58
48
|
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
59
|
-
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
60
49
|
<div class="col-sm-2 form-group">
|
|
61
|
-
<label class="font_normal_body"
|
|
62
|
-
<
|
|
63
|
-
|
|
50
|
+
<label for="startDate" class="font_normal_body">开始日期</label>
|
|
51
|
+
<datepicker id="startDate" placeholder="开始日期" style="width:60%"
|
|
52
|
+
v-model="model.startDate"
|
|
53
|
+
:value.sync="model.startDate"
|
|
54
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
55
|
+
:show-reset-button="true"
|
|
56
|
+
condition="f_operate_date >= '{}'">
|
|
57
|
+
</datepicker>
|
|
64
58
|
</div>
|
|
65
59
|
<div class="col-sm-2 form-group">
|
|
66
|
-
<label class="font_normal_body"
|
|
67
|
-
<
|
|
68
|
-
|
|
60
|
+
<label for="endDate" class="font_normal_body">结束日期</label>
|
|
61
|
+
<datepicker id="endDate" placeholder="结束日期" style="width:60%"
|
|
62
|
+
v-model="model.endDate"
|
|
63
|
+
:value.sync="model.endDate"
|
|
64
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
65
|
+
:show-reset-button="true"
|
|
66
|
+
condition="f_operate_date <= '{}'">
|
|
67
|
+
</datepicker>
|
|
69
68
|
</div>
|
|
69
|
+
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
70
70
|
<div class="col-sm-2 form-group">
|
|
71
71
|
<label class="font_normal_body">小  区</label>
|
|
72
72
|
<v-select :value.sync="model.f_residential_area"
|
|
@@ -8,29 +8,19 @@
|
|
|
8
8
|
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
9
9
|
<div class="row">
|
|
10
10
|
<div class="col-sm-2 form-group">
|
|
11
|
-
<label
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
:value.sync="model.startDate"
|
|
15
|
-
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
16
|
-
:show-reset-button="true"
|
|
17
|
-
condition="f_operate_date >= '{}'">
|
|
18
|
-
</datepicker>
|
|
11
|
+
<label class="font_normal_body">用户编号</label>
|
|
12
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_userinfo_code"
|
|
13
|
+
condition="f_userinfo_code = '{}' " placeholder="用户编号">
|
|
19
14
|
</div>
|
|
20
15
|
<div class="col-sm-2 form-group">
|
|
21
|
-
<label
|
|
22
|
-
<
|
|
23
|
-
|
|
24
|
-
:value.sync="model.endDate"
|
|
25
|
-
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
26
|
-
:show-reset-button="true"
|
|
27
|
-
condition="f_operate_date <= '{}'">
|
|
28
|
-
</datepicker>
|
|
16
|
+
<label class="font_normal_body">用户名称</label>
|
|
17
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
18
|
+
condition="f_user_name like '%{}%'" placeholder="用户名称">
|
|
29
19
|
</div>
|
|
30
20
|
<div class="col-sm-2 form-group">
|
|
31
|
-
<label class="font_normal_body"
|
|
32
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.
|
|
33
|
-
condition="
|
|
21
|
+
<label class="font_normal_body">用户地址</label>
|
|
22
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_address"
|
|
23
|
+
condition="f_address like '%{}%'" placeholder='用户地址'>
|
|
34
24
|
</div>
|
|
35
25
|
<div class="col-sm-2 form-group">
|
|
36
26
|
<label class="font_normal_body" title="旧用户编号">档案编号</label>
|
|
@@ -58,22 +48,32 @@
|
|
|
58
48
|
</div>
|
|
59
49
|
|
|
60
50
|
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
61
|
-
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" :cascade =true v-ref:sel></res-select-group>
|
|
62
51
|
<div class="col-sm-2 form-group">
|
|
63
|
-
<label class="font_normal_body"
|
|
64
|
-
<
|
|
65
|
-
|
|
52
|
+
<label for="startDate" class="font_normal_body">开始日期</label>
|
|
53
|
+
<datepicker id="startDate" placeholder="开始日期" style="width:60%"
|
|
54
|
+
v-model="model.startDate"
|
|
55
|
+
:value.sync="model.startDate"
|
|
56
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
57
|
+
:show-reset-button="true"
|
|
58
|
+
condition="f_operate_date >= '{}'">
|
|
59
|
+
</datepicker>
|
|
60
|
+
</div>
|
|
61
|
+
<div class="col-sm-2 form-group">
|
|
62
|
+
<label for="endDate" class="font_normal_body">结束日期</label>
|
|
63
|
+
<datepicker id="endDate" placeholder="结束日期" style="width:60%"
|
|
64
|
+
v-model="model.endDate"
|
|
65
|
+
:value.sync="model.endDate"
|
|
66
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
67
|
+
:show-reset-button="true"
|
|
68
|
+
condition="f_operate_date <= '{}'">
|
|
69
|
+
</datepicker>
|
|
66
70
|
</div>
|
|
71
|
+
<res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes" :cascade =true v-ref:sel></res-select-group>
|
|
67
72
|
<div class="col-sm-2 form-group">
|
|
68
73
|
<label class="font_normal_body">用户电话</label>
|
|
69
74
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_phone"
|
|
70
75
|
condition="f_user_phone like '%{}%'" placeholder="用户电话">
|
|
71
76
|
</div>
|
|
72
|
-
<div class="col-sm-2 form-group">
|
|
73
|
-
<label class="font_normal_body">用户地址</label>
|
|
74
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_address"
|
|
75
|
-
condition="f_address like '%{}%'" placeholder='用户地址'>
|
|
76
|
-
</div>
|
|
77
77
|
<div class="col-sm-2 form-group">
|
|
78
78
|
<label class="font_normal_body">补气类型</label>
|
|
79
79
|
<v-select :value.sync="model.f_type"
|
|
@@ -6,31 +6,21 @@
|
|
|
6
6
|
<criteria-paged :model="model" v-ref:paged @sort="sort">
|
|
7
7
|
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
|
|
8
8
|
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
9
|
-
<div class="row">
|
|
10
9
|
<div class="col-sm-2 form-group">
|
|
11
|
-
<label
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
:value.sync="model.startDate"
|
|
15
|
-
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
16
|
-
:show-reset-button="true"
|
|
17
|
-
condition="f_operate_date >= '{}'">
|
|
18
|
-
</datepicker>
|
|
10
|
+
<label class="font_normal_body">用户编号</label>
|
|
11
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_userinfo_code"
|
|
12
|
+
condition="f_userinfo_code = '{}' " placeholder="用户编号">
|
|
19
13
|
</div>
|
|
14
|
+
<div class="row">
|
|
20
15
|
<div class="col-sm-2 form-group">
|
|
21
|
-
<label
|
|
22
|
-
<
|
|
23
|
-
|
|
24
|
-
:value.sync="model.endDate"
|
|
25
|
-
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
26
|
-
:show-reset-button="true"
|
|
27
|
-
condition="f_operate_date <= '{}'">
|
|
28
|
-
</datepicker>
|
|
16
|
+
<label class="font_normal_body">用户名称</label>
|
|
17
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
18
|
+
condition="f_user_name like '%{}%'" placeholder="用户名称">
|
|
29
19
|
</div>
|
|
30
20
|
<div class="col-sm-2 form-group">
|
|
31
|
-
<label class="font_normal_body"
|
|
32
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.
|
|
33
|
-
condition="
|
|
21
|
+
<label class="font_normal_body">用户地址</label>
|
|
22
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_address"
|
|
23
|
+
condition="f_address like '%{}%'" placeholder='用户地址'>
|
|
34
24
|
</div>
|
|
35
25
|
<div class="col-sm-2 form-group">
|
|
36
26
|
<label class="font_normal_body" title="旧用户编号">档案编号</label>
|
|
@@ -56,17 +46,27 @@
|
|
|
56
46
|
</div>
|
|
57
47
|
|
|
58
48
|
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
59
|
-
<res-select-group :initres="$parent.$parent.initres" :cascade =true @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
60
49
|
<div class="col-sm-2 form-group">
|
|
61
|
-
<label class="font_normal_body"
|
|
62
|
-
<
|
|
63
|
-
|
|
50
|
+
<label for="startDate" class="font_normal_body">开始日期</label>
|
|
51
|
+
<datepicker id="startDate" placeholder="开始日期" style="width:60%"
|
|
52
|
+
v-model="model.startDate"
|
|
53
|
+
:value.sync="model.startDate"
|
|
54
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
55
|
+
:show-reset-button="true"
|
|
56
|
+
condition="f_operate_date >= '{}'">
|
|
57
|
+
</datepicker>
|
|
64
58
|
</div>
|
|
65
59
|
<div class="col-sm-2 form-group">
|
|
66
|
-
<label class="font_normal_body"
|
|
67
|
-
<
|
|
68
|
-
|
|
60
|
+
<label for="endDate" class="font_normal_body">结束日期</label>
|
|
61
|
+
<datepicker id="endDate" placeholder="结束日期" style="width:60%"
|
|
62
|
+
v-model="model.endDate"
|
|
63
|
+
:value.sync="model.endDate"
|
|
64
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
65
|
+
:show-reset-button="true"
|
|
66
|
+
condition="f_operate_date <= '{}'">
|
|
67
|
+
</datepicker>
|
|
69
68
|
</div>
|
|
69
|
+
<res-select-group :initres="$parent.$parent.initres" :cascade =true @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
|
|
70
70
|
<div class="col-sm-2 form-group">
|
|
71
71
|
<label class="font_normal_body">收费类型</label>
|
|
72
72
|
<v-select v-model="model.f_brand_spec"
|
|
@@ -21,4 +21,6 @@ export default function () {
|
|
|
21
21
|
Vue.component('fill-gas-query', (resolve) => { require(['./FillGasQuery'], resolve) })
|
|
22
22
|
// 补气查询
|
|
23
23
|
Vue.component('user-query', (resolve) => { require(['./UserQuery'], resolve) })
|
|
24
|
+
// 收费查询
|
|
25
|
+
Vue.component('charge-query', (resolve) => { require(['./ChargeQuery'], resolve) })
|
|
24
26
|
}
|