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

tui

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