修改路径
parent
6934d3ea5a
commit
c30e552ffd
|
@ -14,7 +14,7 @@
|
||||||
<el-form-item label="规则状态">
|
<el-form-item label="规则状态">
|
||||||
<el-input v-model="engine.status"></el-input>
|
<el-input v-model="engine.status"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-button @click="selectLists()">
|
<el-button @click="findSelectSourceList()">
|
||||||
查询
|
查询
|
||||||
</el-button>
|
</el-button>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
@ -174,6 +174,7 @@
|
||||||
//例如:import 《组件名称》 from '《组件路径》,
|
//例如:import 《组件名称》 from '《组件路径》,
|
||||||
import {insertAdd} from "@/api/etl/switch";
|
import {insertAdd} from "@/api/etl/switch";
|
||||||
import {selectEngineList} from "@/api/engine/engine";
|
import {selectEngineList} from "@/api/engine/engine";
|
||||||
|
import {selectList} from "@/api/pay/customer";
|
||||||
export default {
|
export default {
|
||||||
//import引入的组件需要注入到对象中才能使用"
|
//import引入的组件需要注入到对象中才能使用"
|
||||||
components: {},
|
components: {},
|
||||||
|
@ -198,17 +199,15 @@ export default {
|
||||||
watch: {},
|
watch: {},
|
||||||
//方法集合",
|
//方法集合",
|
||||||
methods: {
|
methods: {
|
||||||
|
selectList,
|
||||||
// insertAdd(){
|
// insertAdd(){
|
||||||
// this.dialogFormVisible=true
|
// this.dialogFormVisible=true
|
||||||
// },
|
// },
|
||||||
findSelectSourceList(){
|
findSelectSourceList(){
|
||||||
selectEngineList(this.SourceReq).then(res=>{
|
selectEngineList(this.engine).then(res=>{
|
||||||
this.source=res.data.rows;
|
this.source=res.data.rows;
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
selectLists(){
|
|
||||||
this.findSelectSourceList();
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
//生命周期 - 创建完成(可以访问当前this实例)",
|
//生命周期 - 创建完成(可以访问当前this实例)",
|
||||||
created() {
|
created() {
|
||||||
|
|
Loading…
Reference in New Issue