king
2022-10-17 e8edfdadb561cd83bf6e1c3e00d55b8cc2aee6d5
src/utils/option.js
@@ -1,13 +1,10 @@
import zhCN from '@/locales/zh-CN/model.js'
import enUS from '@/locales/en-US/model.js'
import nortable from '@/assets/img/normaltable.jpg'
import mainsubtable from '@/assets/img/mainsubtable.jpg'
// import mainsubtable from '@/assets/img/mainsubtable.jpg'
import treepage from '@/assets/img/treepage.jpg'
import calendar from '@/assets/img/calendar.jpg'
import customImg from '@/assets/img/custom.jpg'
import newpage from '@/assets/img/newpage.jpg'
import rolemanage from '@/assets/img/rolemanage.jpg'
const _dict =  sessionStorage.getItem('lang') !== 'en-US' ? zhCN : enUS
// 表单校验规则
export const formRule = {
@@ -17,8 +14,6 @@
    formMessage: '最多@max个字符。', // 文本表单最大提示
    numbermsg: '请输入数字!',
    lettermsg: '请输入字母!',
    letternummsg: '请输入数字或字母!',
    quotemsg: '不可使用英文状态的单引号!',
    funcname: '请输入数字、字母、汉字以及_'
  },
  field: { // 字段名
@@ -57,13 +52,27 @@
    baseconfig: '',
    isSystem: true
  },
  // {
  //   title: '基础表格(新)',
  //   type: 'BaseTable',
  //   url: nortable,
  //   baseconfig: '',
  //   isSystem: true
  // },
  // {
  //   title: '主子表表格',
  //   type: 'CommonTable',
  //   url: mainsubtable,
  //   baseconfig: '',
  //   isSystem: true,
  //   isSubtable: true
  // },
  {
    title: '主子表表格',
    type: 'CommonTable',
    url: mainsubtable,
    title: '自定义',
    type: 'CustomPage',
    url: customImg,
    baseconfig: '',
    isSystem: true,
    isSubtable: true
    isSystem: true
  },
  {
    title: '树形页面',
@@ -80,16 +89,9 @@
    isSystem: true
  },
  {
    title: '自定义',
    type: 'CustomPage',
    url: customImg,
    baseconfig: '',
    isSystem: true
  },
  {
    title: '外部页面',
    type: 'NewPage',
    url: customImg,
    url: newpage,
    baseconfig: '',
    isSystem: true
  },
@@ -97,29 +99,40 @@
    title: '角色权限分配',
    type: 'RolePermission',
    url: rolemanage,
    isSystem: true,
    hidden: true
    isSystem: true
  }
]
// 图表色系
export const chartColors = ['rgb(91, 143, 249)', 'rgb(90, 216, 166)', 'rgb(93, 112, 146)', 'rgb(246, 189, 22)', 'rgb(232, 100, 82)', 'rgb(109, 200, 236)', 'rgb(148, 95, 185)', 'rgb(246, 189, 22)', 'rgb(205, 221, 253)', 'rgb(248, 208, 203)']
export const chartColors = ['rgb(91, 143, 249)', 'rgb(90, 216, 166)', 'rgb(93, 112, 146)', 'rgb(246, 189, 22)', 'rgb(232, 100, 82)', 'rgb(109, 200, 236)', 'rgb(148, 95, 185)', 'rgb(205, 221, 253)', 'rgb(248, 208, 203)', 'rgb(145, 213, 255)', 'rgb(211, 173, 247)']
// 日期默认值选择范围
export const dateOptions = {
  date: [
    {value: '', text: _dict['model.empty']},
    {value: '', text: '空'},
    {value: '0', text: '今天'},
    {value: 1, text: '昨天'},
    {value: 2, text: '前天'},
    {value: 3, text: '前三天'},
    {value: 7, text: '前七天'},
    {value: 30, text: '前30天'},
    {value: 90, text: '前90天'},
    {value: 7300, text: '前20年'},
    {value: -1, text: '明天'},
    {value: -2, text: '后天'}
    {value: -2, text: '后天'},
    {value: -3, text: '后三天'},
    {value: -7, text: '后七天'},
    {value: -30, text: '后30天'},
    {value: -90, text: '后90天'},
    {value: -180, text: '后半年'},
    {value: -365, text: '后1年'},
    {value: -1095, text: '后3年'},
    {value: -1825, text: '后5年'},
    {value: -3650, text: '后10年'},
    {value: -7300, text: '后20年'},
  ],
  dateweek: [
    {value: '', text: _dict['model.empty']},
    {value: '', text: '空'},
    {value: '0', text: '本周'},
    {value: 1, text: '上周'},
    {value: 3, text: '前三周'},
@@ -127,7 +140,7 @@
    {value: -1, text: '下周'}
  ],
  datemonth: [
    {value: '', text: _dict['model.empty']},
    {value: '', text: '空'},
    {value: '0', text: '本月'},
    {value: 1, text: '上月'},
    {value: 3, text: '前三月'},
@@ -135,7 +148,7 @@
    {value: -1, text: '下月'}
  ],
  daterange: [
    {value: '', text: _dict['model.empty']},
    {value: '', text: '空'},
    {value: '[0, 0]', text: '今天'},
    {value: '[1, 1]', text: '昨天'},
    {value: '[3, 0]', text: '近三天'},
@@ -150,14 +163,26 @@
    {value: 'month', text: '本月'},
  ],
  datetime: [
    {value: '', text: _dict['model.empty']},
    {value: '0', text: '今天'},
    {value: '', text: '空'},
    {value: '0', text: '当前'},
    {value: 1, text: '昨天'},
    {value: 3, text: '前三天'},
    {value: 7, text: '前七天'},
    {value: 30, text: '前30天'},
    {value: 90, text: '前90天'},
    {value: 7300, text: '前20年'},
    {value: -1, text: '明天'},
    {value: -2, text: '后天'}
    {value: -2, text: '后天'},
    {value: -3, text: '后三天'},
    {value: -7, text: '后七天'},
    {value: -30, text: '后30天'},
    {value: -90, text: '后90天'},
    {value: -180, text: '后半年'},
    {value: -365, text: '后1年'},
    {value: -1095, text: '后3年'},
    {value: -1825, text: '后5年'},
    {value: -3650, text: '后10年'},
    {value: -7300, text: '后20年'},
  ]
}
@@ -172,6 +197,18 @@
  }, {
    value: '=',
    text: '='
  }, {
    value: '>',
    text: '>'
  }, {
    value: '<',
    text: '<'
  }, {
    value: '>=',
    text: '>='
  }, {
    value: '<=',
    text: '<='
  }],
  multiselect: [{
    value: 'like',
@@ -181,14 +218,26 @@
    text: 'not like'
  }],
  select: [{
    value: '=',
    text: '='
  }, {
    value: 'like',
    text: 'like'
  }, {
    value: 'not like',
    text: 'not like'
  }, {
    value: '=',
    text: '='
  }, {
    value: '>',
    text: '>'
  }, {
    value: '<',
    text: '<'
  }, {
    value: '>=',
    text: '>='
  }, {
    value: '<=',
    text: '<='
  }],
  date: [{
    value: '>=',
@@ -675,48 +724,37 @@
    'up',
    'left',
    'right',
    // 'caret-up',
    // 'caret-down',
    // 'caret-left',
    // 'caret-right',
    'download',
    'upload',
    'step-backward',
    'step-forward',
    // 'fast-backward',
    // 'fast-forward',
    'double-right',
    'double-left',
    // 'forward',
    // 'backward',
    'rollback',
    'enter',
    'retweet',
    'swap',
    // 'swap-left',
    // 'swap-right',
    'play-circle',
    'login',
    'logout',
    'search',
    'fullscreen',
    'fullscreen-exit',
    'download',
    'upload'
  ],
  hint: [
    'question',
    'question-circle',
    'plus',
    'plus-circle',
    'pause-circle',
    'minus',
    'minus-circle',
    'question',
    'question-circle',
    'info-circle',
    'exclamation-circle',
    'close',
    'close-circle',
    'check',
    'check-circle',
    'check-square',
    'clock-circle',
    'warning',
    'stop'
@@ -747,20 +785,6 @@
    'fall',
    'rise',
    'stock',
  ],
  trademark: [
    'android',
    'apple',
    'chrome',
    'aliwangwang',
    'dingding',
    'weibo',
    'twitter',
    'wechat',
    'alipay-circle',
    'taobao',
    'qq',
    'alipay',
  ],
  normal: [
    'user',
@@ -820,7 +844,108 @@
    'poweroff',
    'shopping-cart',
    'link',
    'aim',
    'apartment',
    'appstore-add',
    'audio-mute',
    'audit',
    'bars',
    'block',
    'book',
    'bulb',
    'border',
    'number',
    'branches',
    'build',
    'calculator',
    'car',
    'carry-out',
    'ci',
    'clear',
    'cloud-download',
    'cloud-server',
    'cloud-sync',
    'cloud-upload',
    'cluster',
    'code',
    'coffee',
    'comment',
    'compress',
    'control',
    'copyright',
    'crown',
    'delete-column',
    'delete-row',
    'delivered-procedure',
    'deployment-unit',
    'desktop',
    'disconnect',
    'dollar',
    'euro',
    'expand',
    'export',
    'file-add',
    'file-done',
    'file-image',
    'file-pdf',
    'file-ppt',
    'file-text',
    'file-unknown',
    'file-word',
    'file-zip',
    'fork',
    'frown',
    'funnel-plot',
    'gateway',
    'gif',
    'gift',
    'global',
    'gold',
    'import',
    'laptop',
    'loading',
    'medicine-box',
    'meh',
    'menu',
    'paper-clip',
    'partition',
    'pay-circle',
    'printer',
    'pushpin',
    'qrcode',
    'reload',
    'rest',
    'robot',
    'rotate-left',
    'rotate-right',
    'safety-certificate',
    'save',
    'send',
    'shake',
    'share-alt',
    'shop',
    'shopping',
    'sound',
    'sync',
    'tag',
    'tags',
    'trademark',
    'trophy',
    'usb',
    'user-add',
    'user-delete',
    'user-switch',
    'video-camera',
    'wifi',
    'table',
    'apple',
    'dingding',
    'weibo',
    'wechat',
    'taobao',
    'qq',
    'alipay',
  ]
}
export const queryTableSql = 'select 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'
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'