Commit 40fbd15f by liyuhang19990520

表格筛选条件和内容对应不上的问题

parent 7007fe2b
/* /*
* @Author: your name * @Author: your name
* @Date: 2021-11-02 15:41:31 * @Date: 2021-11-02 15:41:31
* @LastEditTime: 2021-12-28 14:51:22 * @LastEditTime: 2022-01-10 17:27:03
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \founder_vue\src\store\modules\user.js * @FilePath: \founder_vue\src\store\modules\user.js
...@@ -33,7 +33,6 @@ const actions = { ...@@ -33,7 +33,6 @@ const actions = {
} }
}) })
} }
} }
......
...@@ -389,16 +389,12 @@ ...@@ -389,16 +389,12 @@
<template v-else-if="item.prop === 'queryclass'"> <template v-else-if="item.prop === 'queryclass'">
{{ {{
scope.row.queryclass === "5" scope.row.queryclass === "3"
? "最低"
: scope.row.queryclass === "4"
? "低" ? "低"
: scope.row.queryclass === "3"
? "中"
: scope.row.queryclass === "2" : scope.row.queryclass === "2"
? "" ? "普通"
: scope.row.queryclass === "1" : scope.row.queryclass === "1"
? "高" ? "高"
: "" : ""
}} }}
</template> </template>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment