askbot-dragon 1.5.76-beta → 1.5.78-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "askbot-dragon",
3
- "version": "1.5.76-beta",
3
+ "version": "1.5.78-beta",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -13,7 +13,7 @@
13
13
  v-show="aiGuide.content.descriptionVisible && aiGuide.content.description !== ''"
14
14
  class="ig-types-des"
15
15
  >
16
- {{ aiGuide.content.description }}
16
+ <span v-html="aiGuide.content.description"></span>
17
17
  </div>
18
18
  <!-- 一级分类 -->
19
19
  <div v-show="aiGuide.content.typesVisible" class="ig-types-f">
@@ -208,7 +208,7 @@ export default {
208
208
  conditionList: [],
209
209
  content: {
210
210
  typesetting: "vertical", // 排版方式 vertical 竖向 horizontal 横向
211
- description: "", // 描述
211
+ description: "常见问题常<span>标签</span>见问题常见问题", // 描述
212
212
  descriptionVisible: true, // 是否展示描述
213
213
  typesVisible: true, // 是否展示分类信息
214
214
  groupVisible: true, // 是否分组展示
@@ -32,6 +32,7 @@ export default class FileCommand extends Command {
32
32
  inputObj.setAttribute('id', '_ef');
33
33
  inputObj.setAttribute('type', 'file');
34
34
  inputObj.setAttribute('accept','*')
35
+ inputObj.setAttribute('multiple', true)
35
36
  inputObj.setAttribute("style", 'visibility:hidden');
36
37
  document.body.appendChild(inputObj);
37
38
  inputObj.click();