|
@@ -86,7 +86,6 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-let model = null;
|
|
|
export default {
|
|
|
name: "division",
|
|
|
data() {
|
|
@@ -140,8 +139,7 @@ export default {
|
|
|
this.timeControl = this.__proto__.getControlItem(["TimeCon"], newVal)[0]
|
|
|
},
|
|
|
onClick(item) {
|
|
|
- if (!model) model = this.$refs.MyInput;
|
|
|
- model.openInput(item, true)
|
|
|
+ this.$refs.MyInput.openInput(item)
|
|
|
if (this.changeItem.funcname != item.funcname) this.changeItem = JSON.parse(JSON.stringify(item));
|
|
|
let toBeUpdated = [];
|
|
|
if (item.paramValue.begin) toBeUpdated.push(`开始时间:${item.paramValue.begin}`);
|