Commit b7d775c5 authored by 姬鋆屾's avatar 姬鋆屾

tui

parent 048a6db9
......@@ -205,10 +205,22 @@ export default {
<el-tag type={"success"} size="mini">
{content}
</el-tag>
) : row.subAddType == 1 && column.label.includes("分值") ? (
) : row.checkStatus == 1 || row.processStatus == 1 ? (
row.subAddType == 1 && column.label.includes("分值") ? (
<el-link type={"info"}>(+{content})</el-link>
) : row.subAddType == 2 && column.label.includes("分值") ? (
<el-link type={"info"}>({-content})</el-link>
) : (
<p>{content}</p>
)
) : row.checkStatus == 2 || row.processStatus == 2 ? (
row.subAddType == 1 && column.label.includes("分值") ? (
<el-link>+{content}</el-link>
) : row.subAddType == 2 && column.label.includes("分值") ? (
<p>{-content}</p>
<el-link>{-content}</el-link>
) : (
<p>{content}</p>
)
) : (
<p>{content}</p>
)
......@@ -330,7 +342,7 @@ export default {
},
// 格式化单元格数据
formatterDate(row, column) {
console.log("date:",row,column)
console.log("date:", row, column);
return formatterDate(row, column);
},
// 格式化单元格数据 只要年月日
......
......@@ -69,6 +69,16 @@
{{ form.subAddType == 1 ? "加分人员:" : "扣分人员:" }}
{{ form.deductPerson ? form.deductPerson : "--" }}</el-col
>
<el-col :span="12">
巡查人员:
{{
form.createUserId
? util_formatter("createUserId", form.createUserId)
: "--"
}}
</el-col>
</el-row>
<el-row>
<el-col :span="12"
>图片凭证:
......
......@@ -83,6 +83,16 @@
{{ form.deductTime ? form.deductTime : "--" }}</el-col
>
<el-col :span="12">
巡查人员:
{{
form.createUserId
? util_formatter("createUserId", form.createUserId)
: "--"
}}
</el-col>
</el-row>
<el-row>
<el-col :span="12"
>图片凭证:
<el-image
......
......@@ -60,7 +60,15 @@
>
</el-row>
<el-row>
<el-col :span="24">
<el-col :span="12">
巡查人员:
{{
form.createUserId
? util_formatter("createUserId", form.createUserId)
: "--"
}}
</el-col>
<el-col :span="12">
图片凭证:
<el-image
v-if="form.filePaths"
......
......@@ -62,7 +62,15 @@
>
</el-row>
<el-row>
<el-col :span="24">
<el-col :span="12">
巡查人员:
{{
form.createUserId
? util_formatter("createUserId", form.createUserId)
: "--"
}}
</el-col>
<el-col :span="12">
图片凭证:
<el-image
v-if="form.filePaths"
......
......@@ -58,7 +58,15 @@
</el-col>
</el-row>
<el-row>
<el-col :span="24"
<el-col :span="12">
巡查人员:
{{
form.createUserId
? util_formatter("createUserId", form.createUserId)
: "--"
}}
</el-col>
<el-col :span="12"
>图片凭证:
<el-image
v-if="form.filePaths"
......
......@@ -63,6 +63,14 @@
</el-row>
<el-row>
<el-col :span="12">
巡查人员:
{{
form.createUserId
? util_formatter("createUserId", form.createUserId)
: "--"
}}
</el-col>
<el-col :span="12"
>图片凭证:
<el-image
......@@ -414,6 +422,7 @@ export default {
kaoqinCateArr: [],
kaoqinArr: [],
urls: { saveUrl: "/check/review/record/examine" }, //重写核查地址
baseUrl: process.env.VUE_APP_API_BASE_URL + "/",
};
},
......
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