manage-client 3.2.181 → 3.2.183

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "3.2.181",
3
+ "version": "3.2.183",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -8,7 +8,7 @@
8
8
  <div class="row">
9
9
  <div class="col-sm-2 form-group">
10
10
 
11
- <label for="startDate" class="font_normal_body" title="归属日期">开始日期</label>
11
+ <label for="startDate" class="font_normal_body color-red" style="color: red;" title="归属日期">开始日期</label>
12
12
  <datepicker id="startDate" placeholder="开始日期" style="width:60%"
13
13
  v-model="model.startDate"
14
14
  :value.sync="model.startDate"
@@ -18,7 +18,7 @@
18
18
  </datepicker>
19
19
  </div>
20
20
  <div class="col-sm-2 form-group">
21
- <label for="endDate" class="font_normal_body" title="归属日期">结束日期</label>
21
+ <label for="endDate" class="font_normal_body color-red" style="color: red;" title="归属日期">结束日期</label>
22
22
  <datepicker id="endDate" placeholder="结束日期" style="width:60%"
23
23
  v-model="model.endDate"
24
24
  :value.sync="model.endDate"
@@ -81,7 +81,7 @@
81
81
  </div>
82
82
  <div class="col-sm-2 form-group">
83
83
 
84
- <label for="inputstartDate" class="font_normal_body">抄表日期</label>
84
+ <label for="inputstartDate" class="font_normal_body color-red"style="color: red;">抄表日期</label>
85
85
  <datepicker id="inputstartDate" placeholder="开始日期" style="width:60%"
86
86
  v-model="model.inputstartDate"
87
87
  :value.sync="model.inputstartDate"
@@ -91,7 +91,7 @@
91
91
  </datepicker>
92
92
  </div>
93
93
  <div class="col-sm-2 form-group">
94
- <label for="inputendDate" class="font_normal_body">&nbsp;&nbsp;&nbsp;&nbsp;至&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</label>
94
+ <label for="inputendDate" class="font_normal_body color-red" style="color: red;">&nbsp;&nbsp;&nbsp;&nbsp;至&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</label>
95
95
  <datepicker id="inputendDate" placeholder="结束日期" style="width:60%"
96
96
  v-model="model.inputendDate"
97
97
  :value.sync="model.inputendDate"
@@ -781,7 +781,9 @@
781
781
  console.log('开始时间',this.$refs.paged.$refs.cri.model.startDate)
782
782
  if (this.$refs.paged.$refs.cri.model.startDate === '' || this.$refs.paged.$refs.cri.model.endDate === ''){
783
783
  this.$showAlert('请先选择开始时间、结束时间,再进行查询操作!', 'warning', 3000)
784
- } else {
784
+ }else if(this.$refs.paged.$refs.cri.model.inputstartDate === '' || this.$refs.paged.$refs.cri.model.inputendDate === ''){
785
+ this.$showAlert('请先选择抄表开始时间、抄表结束时间,再进行查询操作!', 'warning', 3000)
786
+ }else {
785
787
  //小区查询条件
786
788
  let f_orgstr = this.orgCondtionStr
787
789
  let str='1=1 '
@@ -937,3 +939,8 @@
937
939
  }
938
940
  }
939
941
  </script>
942
+ <style lang="less">
943
+ .color-red {
944
+ color: red;
945
+ }
946
+ </style>