king
2024-10-28 ba4d6e414fbb37121e80815d3f5ab1aca7a60b08
src/utils/option.js
@@ -1,6 +1,4 @@
import nortable from '@/assets/img/normaltable.jpg'
// import mainsubtable from '@/assets/img/mainsubtable.jpg'
// import treepage from '@/assets/img/treepage.jpg'
import customImg from '@/assets/img/custom.jpg'
import newpage from '@/assets/img/newpage.jpg'
import rolemanage from '@/assets/img/rolemanage.jpg'
@@ -242,6 +240,13 @@
  class5: [{
    value: 'between',
    text: 'between'
  }],
  class6: [{
    value: 'between',
    text: 'between'
  }, {
    value: '=',
    text: '='
  }]
}
@@ -905,3 +910,12 @@
}
export const queryTableSql = 'select top 999999 TbName,Remark from (select TbName,Remark from sDataDictb where appkey= @appkey@ and Deleted=0 union select a.TbName,Remark from (select TbName,Remark from sDataDictb where appkey= \'\' and Deleted=0 ) a left join (select TbName from sDataDictb where appkey= @appkey@ and Deleted=0 ) b on a.TbName=b.TbName where b.TbName is null ) t order by TbName'
export const queryPrintSql = `select ID,Images,PrintTempNO+PrintTempName as PN from sPrintTemplate
  where appkey= @appkey@ and Deleted=0 and typechartwo='web_print'
  union select ID,Images,a.PrintTempNO+PrintTempName as PN
  from (select * from sPrintTemplate where appkey= '' and Deleted=0 and typechartwo='web_print') a
  left join (select PrintTempNO from sPrintTemplate where appkey= @appkey@ and Deleted=0 ) b
  on a.PrintTempNO=b.PrintTempNO
  left join (select Srcid from sPrintTemplate_Log where appkey='' and apicode= @appkey@ and Deleted=0 ) c
  on a.ID=c.Srcid where b.PrintTempNO is null and c.Srcid is null`