king
2021-04-22 dbdb4aa83f82e0b8fc797d36cb8d5dc01e39e6b6
2021-04-22
11个文件已修改
13 ■■■■■ 已修改文件
src/components/editor/index.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/menu/components/share/usercomponent/index.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/menu/modulesource/index.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/menu/popview/index.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/mob/modulesource/index.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pc/modulesource/index.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/tabviews/zshare/fileupload/index.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/templates/modalconfig/dragelement/index.jsx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/menudesign/index.jsx 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mobdesign/index.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/pcdesign/index.jsx 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/editor/index.jsx
@@ -92,6 +92,7 @@
    form.append('fileExt', params.file.fileType)
    form.append('shardingCnt', _param.chunks)
    form.append('shardingNo', _param.chunk)
    // form.append('LoginUID', sessionStorage.getItem('LoginUID') || '')
    Api.getLargeFileUpload(form).then(res => {
      if (res.status) {
src/menu/components/share/usercomponent/index.jsx
@@ -163,6 +163,7 @@
                func: 's_custom_components_adduptdel',
                c_id: config.uuid,
                images: Utils.getcloudurl(result.Images),
                typename: sessionStorage.getItem('appType') || '',
                c_name: res.name,
                long_param: window.btoa(window.encodeURIComponent(JSON.stringify(template))),
                del_type: ''
src/menu/modulesource/index.jsx
@@ -55,6 +55,7 @@
            c_id: item.uuid,
            images: '',
            c_name: item.title,
            typename: sessionStorage.getItem('appType') || '',
            long_param: '',
            del_type: 'Y'
          }).then(result => {
src/menu/popview/index.jsx
@@ -84,6 +84,7 @@
  updateCustomComponent = () => {
    Api.getSystemConfig({
      func: 's_get_custom_components',
      typename: sessionStorage.getItem('appType'),
      typecharone: ''
    }).then(res => {
      let coms = []
src/mob/modulesource/index.jsx
@@ -53,6 +53,7 @@
            c_id: item.uuid,
            images: '',
            c_name: item.title,
            typename: sessionStorage.getItem('appType') || '',
            long_param: '',
            del_type: 'Y'
          }).then(result => {
src/pc/modulesource/index.jsx
@@ -53,6 +53,7 @@
            c_id: item.uuid,
            images: '',
            c_name: item.title,
            typename: sessionStorage.getItem('appType') || '',
            long_param: '',
            del_type: 'Y'
          }).then(result => {
src/tabviews/zshare/fileupload/index.jsx
@@ -97,6 +97,7 @@
    form.append('fileExt', params.file.fileType)
    form.append('shardingCnt', param.chunks)
    form.append('shardingNo', param.chunk)
    // form.append('LoginUID', sessionStorage.getItem('LoginUID') || '')
    Api.getLargeFileUpload(form).then(res => {
      if (res.status) {
src/templates/modalconfig/dragelement/index.jsx
@@ -107,7 +107,7 @@
  return (
    <div ref={drop} className={'ant-row modal-fields-row ' + (setting.align || 'left_right')} >
      {cards.map(card => {
        return <Col key={card.uuid} span={card.span || 24}>
        return <Col key={card.uuid} span={card.type === 'split' ? 24 : (card.span || 24)}>
          <Card
            id={card.uuid}
            card={card}
src/views/menudesign/index.jsx
@@ -44,6 +44,7 @@
sessionStorage.setItem('isEditState', 'true')
sessionStorage.setItem('editMenuType', 'menu') // 编辑菜单类型
sessionStorage.setItem('appType', '')          // 应用类型
document.body.className = ''
window.GLOB.UserComponentMap = new Map() // 缓存用户自定义组件
window.GLOB.urlFields = []               // url变量
@@ -152,6 +153,7 @@
  updateCustomComponent = () => {
    Api.getSystemConfig({
      func: 's_get_custom_components',
      typename: '',
      typecharone: ''
    }).then(res => {
      let coms = []
src/views/mobdesign/index.jsx
@@ -308,6 +308,7 @@
  updateCustomComponent = () => {
    Api.getSystemConfig({
      func: 's_get_custom_components',
      typename: 'mob',
      typecharone: ''
    }).then(res => {
      let coms = []
src/views/pcdesign/index.jsx
@@ -324,6 +324,7 @@
  updateCustomComponent = () => {
    Api.getSystemConfig({
      func: 's_get_custom_components',
      typename: 'pc',
      typecharone: ''
    }).then(res => {
      let coms = []