@jx3box/jx3box-editor 1.9.4 → 1.9.6
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/assets/js/talent2.js +1 -1
- package/package.json +1 -1
- package/src/BoxResource.vue +4 -1
- package/src/components/Combo.vue +4 -0
package/assets/js/talent2.js
CHANGED
|
@@ -10,7 +10,7 @@ function talent2(selector = ".e-jx3talent2-area") {
|
|
|
10
10
|
// 内容解析
|
|
11
11
|
let talent = $(this).text();
|
|
12
12
|
let code = Base64.encode(talent);
|
|
13
|
-
let url = "https://
|
|
13
|
+
let url = "https://oss.jx3box.com/static/jx3box-talent2/index.html" + "?code=" + code;
|
|
14
14
|
|
|
15
15
|
container.html(`<iframe src="${url}" width="100%" height="100%" style="overflow:hidden;border:none;"></iframe>`);
|
|
16
16
|
});
|
package/package.json
CHANGED
package/src/BoxResource.vue
CHANGED
|
@@ -35,6 +35,9 @@
|
|
|
35
35
|
@keyup.enter.native="search"
|
|
36
36
|
>
|
|
37
37
|
<template slot="prepend">关键词</template>
|
|
38
|
+
<template slot="append">
|
|
39
|
+
<el-switch v-model="strict" active-text="精确匹配"></el-switch>
|
|
40
|
+
</template>
|
|
38
41
|
</el-input>
|
|
39
42
|
</div>
|
|
40
43
|
|
|
@@ -132,7 +135,7 @@
|
|
|
132
135
|
></i>
|
|
133
136
|
<b>连招</b>
|
|
134
137
|
</span>
|
|
135
|
-
<ComboVue :query="query" ref="combo" :client="comboClient"></ComboVue>
|
|
138
|
+
<ComboVue :query="query" ref="combo" :client="comboClient" :strict="strict"></ComboVue>
|
|
136
139
|
</el-tab-pane>
|
|
137
140
|
</el-tabs>
|
|
138
141
|
|