调整代码生成器模板
This commit is contained in:
parent
dc5ed4b14b
commit
049209bfca
|
|
@ -40,7 +40,7 @@
|
||||||
#end
|
#end
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" @click="getLists">查询</el-button>
|
<el-button type="primary" @click="getLists">查询</el-button>
|
||||||
<el-button @click="getLists">重置</el-button>
|
<el-button @click="resetParams">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</el-card>
|
</el-card>
|
||||||
|
|
@ -137,10 +137,11 @@ import feedback from '@/utils/feedback'
|
||||||
#if($dictFields.size()>=1)
|
#if($dictFields.size()>=1)
|
||||||
import { useDictData } from '@/hooks/useDictOptions'
|
import { useDictData } from '@/hooks/useDictOptions'
|
||||||
#end
|
#end
|
||||||
import type { ElTable } from 'element-plus'
|
import type { ElTable, FormInstance } from 'element-plus'
|
||||||
|
|
||||||
const tableRef = shallowRef<InstanceType<typeof ElTable>>()
|
const tableRef = shallowRef<InstanceType<typeof ElTable>>()
|
||||||
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||||
|
const formRef = shallowRef<FormInstance>()
|
||||||
let isExpand = false
|
let isExpand = false
|
||||||
const showEdit = ref(false)
|
const showEdit = ref(false)
|
||||||
const loading = ref(false)
|
const loading = ref(false)
|
||||||
|
|
@ -169,6 +170,10 @@ const getLists = async () => {
|
||||||
loading.value = false
|
loading.value = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
const resetParams = () => {
|
||||||
|
formRef.value?.resetFields()
|
||||||
|
getLists()
|
||||||
|
}
|
||||||
|
|
||||||
#if($dictFields.size()>=1)
|
#if($dictFields.size()>=1)
|
||||||
#set($dictSize = $dictFields.size() - 1)
|
#set($dictSize = $dictFields.size() - 1)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue