feat: 前端指令参数的解析
This commit is contained in:
parent
7ff56b4d01
commit
09dbda5ff7
|
@ -22,12 +22,15 @@ export const CUSTOM_FIELD_TYPE_OPTION = [
|
||||||
export const UI_ELEMENT_LOCATION_TYPE_OPTION = [
|
export const UI_ELEMENT_LOCATION_TYPE_OPTION = [
|
||||||
{value: 'id', text: 'id'},
|
{value: 'id', text: 'id'},
|
||||||
{value: 'name', text: 'name'},
|
{value: 'name', text: 'name'},
|
||||||
{value: 'class',text: 'class'},
|
{value: 'className', text: 'class'},
|
||||||
{value: 'tag',text: 'tag'},
|
{value: 'tagName', text: 'tag'},
|
||||||
{value: 'link',text: 'link'},
|
{value: 'linkText', text: 'link'},
|
||||||
{value: 'plink',text: 'plink'},
|
{value: 'partialLinkText', text: 'plink'},
|
||||||
{value: 'css', text: 'css'},
|
{value: 'css', text: 'css'},
|
||||||
{value: 'xpath',text: 'xpath'}
|
{value: 'xpath', text: 'xpath'},
|
||||||
|
{value: 'label', text: 'label'},
|
||||||
|
{value: 'value', text: 'value'},
|
||||||
|
{value: 'index', text: 'index'},
|
||||||
];
|
];
|
||||||
|
|
||||||
export const CUSTOM_FIELD_SCENE_OPTION = [
|
export const CUSTOM_FIELD_SCENE_OPTION = [
|
||||||
|
|
|
@ -3122,5 +3122,7 @@ export default {
|
||||||
enable: "启用",
|
enable: "启用",
|
||||||
disable: "禁用",
|
disable: "禁用",
|
||||||
resolution: "分辨率",
|
resolution: "分辨率",
|
||||||
|
ignore_fail: "忽略异常并继续执行",
|
||||||
|
not_ignore_fail: "终止流程",
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -61,7 +61,7 @@ module.exports = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
configureWebpack: {
|
configureWebpack: {
|
||||||
devtool: 'source-map',
|
devtool: 'cheap-module-source-map',
|
||||||
resolve: {
|
resolve: {
|
||||||
alias: {
|
alias: {
|
||||||
'@': resolve('src')
|
'@': resolve('src')
|
||||||
|
|
Loading…
Reference in New Issue