mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-12-17 17:24:27 +08:00
支持在配置文件中为每一个函数指定特有参数
This commit is contained in:
@@ -34,8 +34,20 @@ export default defineComponent({
|
||||
localCommand() {
|
||||
return this.modelValue;
|
||||
},
|
||||
// 通用参数配置
|
||||
commonConfig() {
|
||||
return this.modelValue.config || [];
|
||||
},
|
||||
// 特定函数独有参数配置
|
||||
functionConfig() {
|
||||
return (
|
||||
this.modelValue.functionSelector?.options.find(
|
||||
(item) => item.value === this.funcName
|
||||
)?.config || []
|
||||
);
|
||||
},
|
||||
localConfig() {
|
||||
return (this.modelValue.config || []).map((item) => {
|
||||
return [...this.commonConfig, ...this.functionConfig].map((item) => {
|
||||
return {
|
||||
...item,
|
||||
value: item.defaultValue,
|
||||
|
||||
@@ -176,6 +176,17 @@ export default {
|
||||
*
|
||||
* @param initItems 初始选项数组,默认为空
|
||||
* @param options 选项列表配置,默认为空
|
||||
* @example
|
||||
* initItems = ['1','2','3']
|
||||
* options = {placeholder: "输入进行筛选,支持拼音", optionType: "plaintext", enableSearch: true, showCancelButton: false, closeOnSelect: true}
|
||||
*
|
||||
* @example
|
||||
* initItems = [{title: "1", description: "1"}, {title: "2", description: "2"}, {title: "3", description: "3"}]
|
||||
* options = {placeholder: "输入进行筛选,支持拼音", optionType: "json", enableSearch: true, showCancelButton: false, closeOnSelect: true}
|
||||
*
|
||||
* @example
|
||||
* initItems = ["<div>1</div>", "<div>2</div>", "<div>3</div>"]
|
||||
* options = {placeholder: "输入进行筛选,支持拼音", optionType: "html", enableSearch: true, showCancelButton: false, closeOnSelect: true}
|
||||
*/
|
||||
showSelectList: (initItems, options = {}) =>
|
||||
new Promise((reslove, reject) => {
|
||||
|
||||
Reference in New Issue
Block a user