Эх сурвалжийг харах

添加查询源数据排序功能

lcl 4 сар өмнө
parent
commit
fdb3279661

+ 6 - 0
src/views/pri/priQueryTable/components/add/index.vue

@@ -41,6 +41,7 @@ let UpdateForm = ref({
   startDataFlag: false, //起始数据
   stepCount: null, //每次读取数量
   customSql: "", //说明
+  orderBy: "", //排序
 
 });
 // 表单实例
@@ -82,6 +83,7 @@ const submit = async (formEl) => {
           startDataFlag: false, //起始数据
           stepCount: null, //每次读取数量
           customSql: "", //说明
+          orderBy: "", //排序
         };
         // 关闭新增弹窗;
         closeVisible()
@@ -142,6 +144,7 @@ const closeVisible = () => {
     startDataFlag: false, //起始数据
     stepCount: null, //每次读取数量
     customSql: "", //说明
+    orderBy: "", //排序
   };
   closeFn();
 };
@@ -172,6 +175,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查询")

+ 6 - 0
src/views/pri/priQueryTable/components/updatePriQueryTable/index.vue

@@ -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查询")

+ 6 - 0
src/views/pri/priRecursionStartTable/components/add/index.vue

@@ -35,6 +35,7 @@ const props = defineProps<{
 let UpdateForm = ref({
   databaseId: null, //查询数据库
   tableEnName: "", //查询表
+  orderBy: "", //排序
   listId: props.listId
 });
 // 表单实例
@@ -69,6 +70,7 @@ const submit = async (formEl) => {
         UpdateForm.value = {
           databaseId: null, //查询数据库
           tableEnName: "", //查询表
+          orderBy: "", //排序
           listId: props.listId
         };
         // 关闭新增弹窗;
@@ -126,6 +128,7 @@ const closeVisible = () => {
   UpdateForm.value = {
     databaseId: null, //查询数据库
     tableEnName: "", //查询表
+    orderBy: "", //排序
     listId: props.listId
   };
   closeFn();
@@ -156,6 +159,9 @@ const isFullscreen = ref(false)
           clearable,
         )
           el-option(:label="item.prizeName", :value="item.id" v-for="(item,index) in listIdOptionList")
+      el-form-item(label='排序' prop="orderBy")
+        el-input(v-model='UpdateForm.orderBy' autocomplete='off'
+          placeholder="请输入排序")
 
     .flex.justify-end
       el-button(

+ 6 - 0
src/views/pri/priRecursionStartTable/components/updatePriRecursionStartTable/index.vue

@@ -34,6 +34,7 @@ const UpdateForm: any = ref({
   id: null, //ID
   databaseId: null, //查询数据库
   tableEnName: "", //查询表
+  orderBy: "", //排序
 
 });
 
@@ -67,6 +68,7 @@ const submit = async (formEl) => {
           id: null, //ID
           databaseId: null, //查询数据库
           tableEnName: "", //查询表
+          orderBy: "", //排序
 
         };
         // 关闭修改弹窗;
@@ -121,6 +123,7 @@ const closeUpdatePriRecursionStartTableVisible = () => {
     id: null, //ID
     databaseId: null, //查询数据库
     tableEnName: "", //查询表
+    orderBy: "", //排序
 
   };
   closeFn();
@@ -147,6 +150,9 @@ const isFullscreen = ref(false)
       el-form-item(label='查询表' prop="tableEnName")
         el-input(v-model='UpdateForm.tableEnName' autocomplete='off'
           placeholder="请输入查询表")
+      el-form-item(label='排序' prop="orderBy")
+        el-input(v-model='UpdateForm.orderBy' autocomplete='off'
+          placeholder="请输入排序")
 
     .flex.justify-end
       el-button(