|
@@ -112,7 +112,7 @@
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="primary" @click="submit">确 定</el-button>
|
|
|
- <el-button @click="cancel">取 消</el-button>
|
|
|
+ <el-button @click="closeFormulaHandler">取 消</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
</template>
|
|
@@ -178,6 +178,7 @@
|
|
|
default: () => {
|
|
|
return null;
|
|
|
},
|
|
|
+
|
|
|
},
|
|
|
},
|
|
|
mounted() {
|
|
@@ -187,8 +188,15 @@
|
|
|
});
|
|
|
this.NORMFEEList = response.rows;
|
|
|
});
|
|
|
+
|
|
|
},
|
|
|
methods: {
|
|
|
+ // formula使用props传值有延迟,使用ref传入
|
|
|
+ init(formula) {
|
|
|
+ if(formula) {
|
|
|
+ this.number_input = formula
|
|
|
+ }
|
|
|
+ },
|
|
|
close () {
|
|
|
this.addMetadataSelect = [];
|
|
|
this.no_show_number_input = '';
|
|
@@ -197,9 +205,6 @@
|
|
|
closeFormulaHandler() {
|
|
|
this.$emit("closeFormulaHandler");
|
|
|
},
|
|
|
- cancel() {
|
|
|
- this.isShowFormulaDialog = false;
|
|
|
- },
|
|
|
// 回删功能
|
|
|
number_input_delete() {
|
|
|
this.number_input = this.number_input.replace(/.$/, '')
|