fix: 优化菜单管理查询
This commit is contained in:
parent
2b57d81eb9
commit
9e59fd19bc
|
@ -13,6 +13,7 @@
|
|||
"prepare": "husky install"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ant-design/icons-vue": "^7.0.1",
|
||||
"@liveqing/liveplayer-v3": "^3.7.10",
|
||||
"@types/marked": "^4.0.8",
|
||||
"@vitejs/plugin-vue-jsx": "^3.0.0",
|
||||
|
@ -37,6 +38,7 @@
|
|||
"nrm": "^1.2.5",
|
||||
"pinia": "^2.0.28",
|
||||
"rollup-plugin-copy": "^3.4.0",
|
||||
"rxjs": "^7.8.1",
|
||||
"unplugin-auto-import": "^0.12.1",
|
||||
"unplugin-vue-components": "^0.22.12",
|
||||
"v-clipboard3": "^0.1.4",
|
||||
|
|
|
@ -71,7 +71,6 @@
|
|||
</template>
|
||||
<script setup lang="ts" name="Debug">
|
||||
import { PropType } from 'vue';
|
||||
import { DeleteOutlined, PlusOutlined } from '@ant-design/icons-vue';
|
||||
import { useProductStore } from '@/store/product';
|
||||
import { useRuleEditorStore } from '@/store/ruleEditor';
|
||||
import moment from 'moment';
|
||||
|
@ -300,4 +299,4 @@ getProperty()
|
|||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
|
@ -196,17 +196,14 @@ const table = reactive({
|
|||
],
|
||||
},
|
||||
{
|
||||
terms:[
|
||||
type: 'or',
|
||||
terms:[
|
||||
{
|
||||
terms:[
|
||||
{
|
||||
value:"%show\":true%",
|
||||
termType:"like",
|
||||
column:"options"
|
||||
}
|
||||
]
|
||||
value:"%show\":true%",
|
||||
termType:"like",
|
||||
column:"options"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
],
|
||||
};
|
||||
|
|
15
yarn.lock
15
yarn.lock
|
@ -54,6 +54,14 @@
|
|||
"@ant-design/colors" "^6.0.0"
|
||||
"@ant-design/icons-svg" "^4.2.1"
|
||||
|
||||
"@ant-design/icons-vue@^7.0.1":
|
||||
version "7.0.1"
|
||||
resolved "https://registry.npmjs.org/@ant-design/icons-vue/-/icons-vue-7.0.1.tgz#83de301771fadd03f3890e627314102405c31c22"
|
||||
integrity sha512-eCqY2unfZK6Fe02AwFlDHLfoyEFreP6rBwAZMIJ1LugmfMiVgwWDYlp1YsRugaPtICYOabV1iWxXdP12u9U43Q==
|
||||
dependencies:
|
||||
"@ant-design/colors" "^6.0.0"
|
||||
"@ant-design/icons-svg" "^4.2.1"
|
||||
|
||||
"@antfu/utils@^0.7.2":
|
||||
version "0.7.2"
|
||||
resolved "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.2.tgz"
|
||||
|
@ -5891,6 +5899,13 @@ rxjs@^7.5.7:
|
|||
dependencies:
|
||||
tslib "^2.1.0"
|
||||
|
||||
rxjs@^7.8.1:
|
||||
version "7.8.1"
|
||||
resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543"
|
||||
integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==
|
||||
dependencies:
|
||||
tslib "^2.1.0"
|
||||
|
||||
safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.2.0:
|
||||
version "5.2.1"
|
||||
resolved "https://registry.jetlinks.cn/safe-buffer/-/safe-buffer-5.2.1.tgz"
|
||||
|
|
Loading…
Reference in New Issue