address-client 3.2.100 → 3.2.101

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": "address-client",
3
- "version": "3.2.100",
3
+ "version": "3.2.101",
4
4
  "description": "地址管理前台组件",
5
5
  "author": "wanbochao",
6
6
  "license": "ISC",
@@ -90,6 +90,28 @@
90
90
  close-on-select condition="f_inputtor='{}'"
91
91
  placeholder='抄表员' v-model="model.f_inputtor"></v-select>
92
92
  </div>
93
+ <div :class="$parent.$parent.style">
94
+ <label class="font_normal_body" title="创建开始时间">开始时间</label>
95
+ <datepicker :format="'yyyy-MM-dd'"
96
+ :value.sync="model.f_start_date"
97
+ class="datepicker"
98
+ condition="f_operate_date >= '{} 00:00:00' "
99
+ placeholder="创建开始时间"
100
+ style="width:60%"
101
+ v-model="model.f_start_date"
102
+ ></datepicker>
103
+ </div>
104
+ <div :class="$parent.$parent.style">
105
+ <label class="font_normal_body" title="创建结束时间">结束时间</label>
106
+ <datepicker :format="'yyyy-MM-dd'"
107
+ :value.sync="model.f_end_date"
108
+ class="datepicker"
109
+ condition="f_operate_date <= '{} 23:59:59' "
110
+ placeholder="创建结束时间"
111
+ style="width:60%"
112
+ v-model="model.f_end_date"
113
+ ></datepicker>
114
+ </div>
93
115
  </div>
94
116
  </div>
95
117