zydx-plus 1.34.460 → 1.34.461
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
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
</div>
|
|
79
79
|
</div>
|
|
80
80
|
<div class="cle-but-right">
|
|
81
|
+
<button class="cle-but" @click="cancel">取消</button>
|
|
81
82
|
<button class="cle-but" @click="confirm">确认</button>
|
|
82
83
|
</div>
|
|
83
84
|
</div>
|
|
@@ -220,6 +221,9 @@ export default {
|
|
|
220
221
|
};
|
|
221
222
|
},
|
|
222
223
|
methods: {
|
|
224
|
+
cancel() {
|
|
225
|
+
this.$emit('cancel')
|
|
226
|
+
},
|
|
223
227
|
confirm() {
|
|
224
228
|
let date = {start: this.dayChange}
|
|
225
229
|
if(this.rangeMode) {
|