|
@@ -38,6 +38,7 @@ const UpdateForm: any = ref({
|
|
|
startDataFlag: false, //起始数据
|
|
|
stepCount: null, //每次读取数量
|
|
|
customSql: "", //说明
|
|
|
+ orderBy: "", //排序
|
|
|
});
|
|
|
|
|
|
// 表单实例
|
|
@@ -74,6 +75,7 @@ const submit = async (formEl) => {
|
|
|
startDataFlag: false, //起始数据
|
|
|
stepCount: null, //每次读取数量
|
|
|
customSql: "", //说明
|
|
|
+ orderBy: "", //排序
|
|
|
|
|
|
};
|
|
|
// 关闭修改弹窗;
|
|
@@ -132,6 +134,7 @@ const closeUpdatePriQueryTableVisible = () => {
|
|
|
startDataFlag: false, //起始数据
|
|
|
stepCount: null, //每次读取数量
|
|
|
customSql: "", //说明
|
|
|
+ orderBy: "", //排序
|
|
|
|
|
|
};
|
|
|
closeFn();
|
|
@@ -166,6 +169,9 @@ const isFullscreen = ref(false)
|
|
|
placeholder="请输入每次读取数量")
|
|
|
el-form-item(label='起始数据' prop="startDataFlag")
|
|
|
el-switch(v-model="UpdateForm.startDataFlag")
|
|
|
+ el-form-item(label='排序' prop="orderBy")
|
|
|
+ el-input(v-model='UpdateForm.orderBy' autocomplete='off'
|
|
|
+ placeholder="请输入排序")
|
|
|
el-form-item(label='自定义sql查询' prop="customSql")
|
|
|
el-input(v-model='UpdateForm.customSql' autocomplete='off'
|
|
|
placeholder="请输入自定义sql查询")
|