明树Git Lab

Commit 7e4f239c authored by yangyajing's avatar yangyajing

决策表单开发

parent af84499e
Pipeline #104361 passed with stage
in 13 seconds
...@@ -144,8 +144,8 @@ ...@@ -144,8 +144,8 @@
<div class="target-name">{{ target.name }}</div> <div class="target-name">{{ target.name }}</div>
<div class="target-value" <div class="target-value"
:class="{ :class="{
'target-green': !isNaN(target.value) && target.value > 0, 'target-green': !isNaN(target.value) && target.value < 0,
'target-red': !isNaN(target.value) && target.value < 0, 'target-red': !isNaN(target.value) && target.value > 0,
}" }"
> >
{{ target.value }} {{ target.value }}
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
label-width="70px" label-width="70px"
class="login-form" class="login-form"
labelPosition="top" labelPosition="top"
@keydown.enter="handleLogin"
> >
<el-form-item label="用户名" prop="username"> <el-form-item label="用户名" prop="username">
<el-input <el-input
......
This diff is collapsed.
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
{ {
prop: "operations", prop: "operations",
label: "操作", label: "操作",
width: 160, width: 200,
slot: "operations", slot: "operations",
fixed: "right", fixed: "right",
align: "center" align: "center"
......
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
{ {
prop: "operations", prop: "operations",
label: "操作", label: "操作",
width: 160, width: 170,
slot: "operations", slot: "operations",
fixed: "right", fixed: "right",
align: "center" align: "center"
...@@ -126,6 +126,9 @@ ...@@ -126,6 +126,9 @@
const previewProject = (item) => { const previewProject = (item) => {
router.push({ router.push({
name: "addProject", name: "addProject",
params: {
type: "xmlingxuan"
},
query: { query: {
isPreview: true, isPreview: true,
projectId: item.id projectId: item.id
......
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