From df632975ea6cdf7129b6392ffada19c5efd24de9 Mon Sep 17 00:00:00 2001 From: tsymq-live <103803861+tsymq-live@users.noreply.github.com> Date: Sat, 20 May 2023 10:54:23 +0800 Subject: [PATCH 1/7] Update form.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复谷歌翻译,翻译成英文后下拉框会多出html标签问题 --- src/modules/form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/form.js b/src/modules/form.js index 41428288..a589e351 100644 --- a/src/modules/form.js +++ b/src/modules/form.js @@ -519,7 +519,7 @@ layui.define(['lay', 'layer', 'util'], function(exports){ var selectedIndex = select[0].selectedIndex; thatInput = input; // 当前的 select 中的 input 元素 - initValue = $(select[0].options[selectedIndex]).html(); // 重新获得初始选中值 + initValue = $(select[0].options[selectedIndex]).text(); // 重新获得初始选中值 // 如果是第一项,且文本值等于 placeholder,则清空初始值 if(selectedIndex === 0 && initValue === input.attr('placeholder')){ From cc78de54c17cb1dca9f980f5207368e76e8d307c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?= <3277200+sentsim@users.noreply.github.com> Date: Tue, 23 May 2023 23:38:18 +0800 Subject: [PATCH 2/7] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20Gitee=20issue=20?= =?UTF-8?q?=E8=A1=A8=E5=8D=95=E8=8C=83=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitee/ISSUE_TEMPLATE/bug.yml | 39 +++++++++++++++++++++++++++++++ .gitee/ISSUE_TEMPLATE/feature.yml | 19 +++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 .gitee/ISSUE_TEMPLATE/bug.yml create mode 100644 .gitee/ISSUE_TEMPLATE/feature.yml diff --git a/.gitee/ISSUE_TEMPLATE/bug.yml b/.gitee/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 00000000..0ca7497a --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,39 @@ +name: 问题反馈 +description: 使用 Layui 过程中遇到的 Bug、异常或其他困惑。😇 - +title: "" +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + 在提出问题之前,请确保: + - 您已查看官方使用文档:**https://layui.dev** ,但没有找到相关解决方案。 + - 您已在 Issues 中搜索过类似的问题,但没有找到相关解决方案。 + - type: input + attributes: + label: 版本号 + description: 请提供您所使用的 Layui 版本号 + validations: + required: true + - type: textarea + attributes: + label: 问题描述 + description: 请提供尽可能详细的问题描述和具体操作步骤等信息,以便我们也能够更轻松地将问题复现。 + validations: + required: true + - type: textarea + attributes: + label: 业务代码 + description: 提供与该问题对应的业务代码片段,以便我们更好地排查问题。 + validations: + required: true + - type: textarea + attributes: + label: 其他补充 + description: 如截图等补充信息。 + - type: checkboxes + attributes: + label: 友好承诺 + options: + - label: 我承诺将本着相互尊重、理解和友善的态度进行交流,共同维护好 Layui 来之不易的良好的社区氛围。 + required: true \ No newline at end of file diff --git a/.gitee/ISSUE_TEMPLATE/feature.yml b/.gitee/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 00000000..e94a2f65 --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,19 @@ +name: 功能建议 +description: 对 Layui 提出您的宝贵建议。😄 - +title: "[建议]: " +labels: ["enhancement"] +body: + - type: textarea + id: related-problem + attributes: + label: 建议内容 + description: 阐述提出该建议的出发点。 + validations: + required: false + - type: textarea + id: desired-solution + attributes: + label: 解决方案 + description: 您希望看到什么样的解决方案? + validations: + required: true \ No newline at end of file From b1625067a25c4bb59f3e5b682a93ff76930d53a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?= <3277200+sentsim@users.noreply.github.com> Date: Wed, 24 May 2023 10:10:51 +0800 Subject: [PATCH 3/7] =?UTF-8?q?=E7=A7=BB=E9=99=A4=20Gitee=20Issue=20?= =?UTF-8?q?=E8=A1=A8=E5=8D=95=E8=8C=83=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitee/ISSUE_TEMPLATE/bug.yml | 39 ------------------------------- .gitee/ISSUE_TEMPLATE/feature.yml | 19 --------------- 2 files changed, 58 deletions(-) delete mode 100644 .gitee/ISSUE_TEMPLATE/bug.yml delete mode 100644 .gitee/ISSUE_TEMPLATE/feature.yml diff --git a/.gitee/ISSUE_TEMPLATE/bug.yml b/.gitee/ISSUE_TEMPLATE/bug.yml deleted file mode 100644 index 0ca7497a..00000000 --- a/.gitee/ISSUE_TEMPLATE/bug.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: 问题反馈 -description: 使用 Layui 过程中遇到的 Bug、异常或其他困惑。😇 - -title: "" -labels: ["bug"] -body: - - type: markdown - attributes: - value: | - 在提出问题之前,请确保: - - 您已查看官方使用文档:**https://layui.dev** ,但没有找到相关解决方案。 - - 您已在 Issues 中搜索过类似的问题,但没有找到相关解决方案。 - - type: input - attributes: - label: 版本号 - description: 请提供您所使用的 Layui 版本号 - validations: - required: true - - type: textarea - attributes: - label: 问题描述 - description: 请提供尽可能详细的问题描述和具体操作步骤等信息,以便我们也能够更轻松地将问题复现。 - validations: - required: true - - type: textarea - attributes: - label: 业务代码 - description: 提供与该问题对应的业务代码片段,以便我们更好地排查问题。 - validations: - required: true - - type: textarea - attributes: - label: 其他补充 - description: 如截图等补充信息。 - - type: checkboxes - attributes: - label: 友好承诺 - options: - - label: 我承诺将本着相互尊重、理解和友善的态度进行交流,共同维护好 Layui 来之不易的良好的社区氛围。 - required: true \ No newline at end of file diff --git a/.gitee/ISSUE_TEMPLATE/feature.yml b/.gitee/ISSUE_TEMPLATE/feature.yml deleted file mode 100644 index e94a2f65..00000000 --- a/.gitee/ISSUE_TEMPLATE/feature.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: 功能建议 -description: 对 Layui 提出您的宝贵建议。😄 - -title: "[建议]: " -labels: ["enhancement"] -body: - - type: textarea - id: related-problem - attributes: - label: 建议内容 - description: 阐述提出该建议的出发点。 - validations: - required: false - - type: textarea - id: desired-solution - attributes: - label: 解决方案 - description: 您希望看到什么样的解决方案? - validations: - required: true \ No newline at end of file From c5e1288810187fceff77b6980270f644ef40dc16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?= <3277200+sentsim@users.noreply.github.com> Date: Sat, 27 May 2023 00:15:57 +0800 Subject: [PATCH 4/7] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20Gitee=20Issue=20?= =?UTF-8?q?=E8=A1=A8=E5=8D=95=E6=A8=A1=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitee/ISSUE_TEMPLATE/bug.yml | 39 +++++++++++++++++++++++++++++++ .gitee/ISSUE_TEMPLATE/feature.yml | 19 +++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 .gitee/ISSUE_TEMPLATE/bug.yml create mode 100644 .gitee/ISSUE_TEMPLATE/feature.yml diff --git a/.gitee/ISSUE_TEMPLATE/bug.yml b/.gitee/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 00000000..aec89d59 --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,39 @@ +name: 问题反馈 +description: 使用 Layui 过程中遇到的 Bug、异常或其他困惑。😇 - +title: "" +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + 在反馈问题之前,请确保: + - 您已查看官方使用文档:**https://layui.dev** ,但没有找到相关解决方案。 + - 您已在 Issues 中搜索过类似的问题,但没有找到相关解决方案。 + - type: input + attributes: + label: 版本号 + placeholder: 请提供您所使用的 Layui 版本号 + validations: + required: true + - type: textarea + attributes: + label: 问题描述 + placeholder: 请提供尽可能详细的问题描述和具体操作步骤等信息,以便我们也能够更轻松地将问题复现。 + validations: + required: true + - type: textarea + attributes: + label: 业务代码 + placeholder: 提供与该问题对应的业务代码片段,以便我们更好地排查问题。 + validations: + required: true + - type: textarea + attributes: + label: 其他补充 + placeholder: 如截图等补充信息。 + - type: checkboxes + attributes: + label: 友好承诺 + options: + - label: 我承诺将本着相互尊重、理解和友善的态度进行交流,共同维护好 Layui 来之不易的良好的社区氛围。 + required: true \ No newline at end of file diff --git a/.gitee/ISSUE_TEMPLATE/feature.yml b/.gitee/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 00000000..d4218b7f --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,19 @@ +name: 功能建议 +description: 对 Layui 提出您的宝贵建议。😄 - +title: "" +labels: ["enhancement"] +body: + - type: textarea + id: related-problem + attributes: + label: 建议内容 + description: 阐述提出该建议的出发点。 + validations: + required: true + - type: textarea + id: desired-solution + attributes: + label: 解决方案 + description: 您希望看到什么样的解决方案? + validations: + required: true \ No newline at end of file From 13618b8b6632e84513cc8fb60d9b6c38712dcb5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?= <3277200+sentsim@users.noreply.github.com> Date: Sat, 27 May 2023 00:17:15 +0800 Subject: [PATCH 5/7] =?UTF-8?q?=E7=A7=BB=E9=99=A4=20Gitee=20Issue=20?= =?UTF-8?q?=E7=A9=BA=E7=99=BD=E6=A8=A1=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitee/ISSUE_TEMPLATE.zh-CN.md | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 .gitee/ISSUE_TEMPLATE.zh-CN.md diff --git a/.gitee/ISSUE_TEMPLATE.zh-CN.md b/.gitee/ISSUE_TEMPLATE.zh-CN.md deleted file mode 100644 index ee038b38..00000000 --- a/.gitee/ISSUE_TEMPLATE.zh-CN.md +++ /dev/null @@ -1,12 +0,0 @@ -### 说明 - -- 版本: 在此处填写您所使用的 Layui 版本号(必填) -- 描述: 在此处填写详细的问题描述和具体的操作步骤(必填) - -### 代码 - -在此处填写与本次 Issue 相关的业务代码(可选) - -### 补充 - -在此处提供其他补充,如截图等信息(可选) \ No newline at end of file From edd8c251d8452326ee60d9116e78dbdc6fe34a88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?= <3277200+sentsim@users.noreply.github.com> Date: Sat, 27 May 2023 00:21:58 +0800 Subject: [PATCH 6/7] =?UTF-8?q?Revert=20"=E6=B7=BB=E5=8A=A0=20Gitee=20Issu?= =?UTF-8?q?e=20=E8=A1=A8=E5=8D=95=E6=A8=A1=E6=9D=BF"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitee/ISSUE_TEMPLATE.zh-CN.md | 12 ++++++++++ .gitee/ISSUE_TEMPLATE/bug.yml | 39 ------------------------------- .gitee/ISSUE_TEMPLATE/feature.yml | 19 --------------- 3 files changed, 12 insertions(+), 58 deletions(-) create mode 100644 .gitee/ISSUE_TEMPLATE.zh-CN.md delete mode 100644 .gitee/ISSUE_TEMPLATE/bug.yml delete mode 100644 .gitee/ISSUE_TEMPLATE/feature.yml diff --git a/.gitee/ISSUE_TEMPLATE.zh-CN.md b/.gitee/ISSUE_TEMPLATE.zh-CN.md new file mode 100644 index 00000000..ee038b38 --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE.zh-CN.md @@ -0,0 +1,12 @@ +### 说明 + +- 版本: 在此处填写您所使用的 Layui 版本号(必填) +- 描述: 在此处填写详细的问题描述和具体的操作步骤(必填) + +### 代码 + +在此处填写与本次 Issue 相关的业务代码(可选) + +### 补充 + +在此处提供其他补充,如截图等信息(可选) \ No newline at end of file diff --git a/.gitee/ISSUE_TEMPLATE/bug.yml b/.gitee/ISSUE_TEMPLATE/bug.yml deleted file mode 100644 index aec89d59..00000000 --- a/.gitee/ISSUE_TEMPLATE/bug.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: 问题反馈 -description: 使用 Layui 过程中遇到的 Bug、异常或其他困惑。😇 - -title: "" -labels: ["bug"] -body: - - type: markdown - attributes: - value: | - 在反馈问题之前,请确保: - - 您已查看官方使用文档:**https://layui.dev** ,但没有找到相关解决方案。 - - 您已在 Issues 中搜索过类似的问题,但没有找到相关解决方案。 - - type: input - attributes: - label: 版本号 - placeholder: 请提供您所使用的 Layui 版本号 - validations: - required: true - - type: textarea - attributes: - label: 问题描述 - placeholder: 请提供尽可能详细的问题描述和具体操作步骤等信息,以便我们也能够更轻松地将问题复现。 - validations: - required: true - - type: textarea - attributes: - label: 业务代码 - placeholder: 提供与该问题对应的业务代码片段,以便我们更好地排查问题。 - validations: - required: true - - type: textarea - attributes: - label: 其他补充 - placeholder: 如截图等补充信息。 - - type: checkboxes - attributes: - label: 友好承诺 - options: - - label: 我承诺将本着相互尊重、理解和友善的态度进行交流,共同维护好 Layui 来之不易的良好的社区氛围。 - required: true \ No newline at end of file diff --git a/.gitee/ISSUE_TEMPLATE/feature.yml b/.gitee/ISSUE_TEMPLATE/feature.yml deleted file mode 100644 index d4218b7f..00000000 --- a/.gitee/ISSUE_TEMPLATE/feature.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: 功能建议 -description: 对 Layui 提出您的宝贵建议。😄 - -title: "" -labels: ["enhancement"] -body: - - type: textarea - id: related-problem - attributes: - label: 建议内容 - description: 阐述提出该建议的出发点。 - validations: - required: true - - type: textarea - id: desired-solution - attributes: - label: 解决方案 - description: 您希望看到什么样的解决方案? - validations: - required: true \ No newline at end of file From a4ae4871ca4a88f8a5643637feab4533d168e160 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?= <3277200+sentsim@users.noreply.github.com> Date: Sat, 27 May 2023 00:25:38 +0800 Subject: [PATCH 7/7] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20Gitee=20issue=20=20?= =?UTF-8?q?=E8=A1=A8=E5=8D=95=E6=A8=A1=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitee/ISSUE_TEMPLATE/ISSUE_TEMPLATE.zh-CN.md | 0 .gitee/ISSUE_TEMPLATE/bug.yml | 39 +++++++++++++++++++ .gitee/ISSUE_TEMPLATE/feature.yml | 19 +++++++++ 3 files changed, 58 insertions(+) create mode 100644 .gitee/ISSUE_TEMPLATE/ISSUE_TEMPLATE.zh-CN.md create mode 100644 .gitee/ISSUE_TEMPLATE/bug.yml create mode 100644 .gitee/ISSUE_TEMPLATE/feature.yml diff --git a/.gitee/ISSUE_TEMPLATE/ISSUE_TEMPLATE.zh-CN.md b/.gitee/ISSUE_TEMPLATE/ISSUE_TEMPLATE.zh-CN.md new file mode 100644 index 00000000..e69de29b diff --git a/.gitee/ISSUE_TEMPLATE/bug.yml b/.gitee/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 00000000..aec89d59 --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,39 @@ +name: 问题反馈 +description: 使用 Layui 过程中遇到的 Bug、异常或其他困惑。😇 - +title: "" +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + 在反馈问题之前,请确保: + - 您已查看官方使用文档:**https://layui.dev** ,但没有找到相关解决方案。 + - 您已在 Issues 中搜索过类似的问题,但没有找到相关解决方案。 + - type: input + attributes: + label: 版本号 + placeholder: 请提供您所使用的 Layui 版本号 + validations: + required: true + - type: textarea + attributes: + label: 问题描述 + placeholder: 请提供尽可能详细的问题描述和具体操作步骤等信息,以便我们也能够更轻松地将问题复现。 + validations: + required: true + - type: textarea + attributes: + label: 业务代码 + placeholder: 提供与该问题对应的业务代码片段,以便我们更好地排查问题。 + validations: + required: true + - type: textarea + attributes: + label: 其他补充 + placeholder: 如截图等补充信息。 + - type: checkboxes + attributes: + label: 友好承诺 + options: + - label: 我承诺将本着相互尊重、理解和友善的态度进行交流,共同维护好 Layui 来之不易的良好的社区氛围。 + required: true \ No newline at end of file diff --git a/.gitee/ISSUE_TEMPLATE/feature.yml b/.gitee/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 00000000..d4218b7f --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,19 @@ +name: 功能建议 +description: 对 Layui 提出您的宝贵建议。😄 - +title: "" +labels: ["enhancement"] +body: + - type: textarea + id: related-problem + attributes: + label: 建议内容 + description: 阐述提出该建议的出发点。 + validations: + required: true + - type: textarea + id: desired-solution + attributes: + label: 解决方案 + description: 您希望看到什么样的解决方案? + validations: + required: true \ No newline at end of file