Commit 803efd82 authored by 姬鋆屾's avatar 姬鋆屾

parent 1a5d5926
...@@ -24,7 +24,12 @@ ...@@ -24,7 +24,12 @@
> >
<el-col :span="12" <el-col :span="12"
>违规类型:{{ >违规类型:{{
form.irregularOtherType ? form.irregularOtherType : "--" form.irregularOtherType
? util_formatter(
"irregularOtherType",
form.irregularOtherType
)
: "--"
}}</el-col }}</el-col
> >
</el-row> </el-row>
......
...@@ -503,7 +503,7 @@ export default { ...@@ -503,7 +503,7 @@ export default {
? (this.form[key] = timestampToTime(this.form[key], 6)) ? (this.form[key] = timestampToTime(this.form[key], 6))
: key == "goOffTimeStr" : key == "goOffTimeStr"
? (this.form[key] = timestampToTime(this.form[key], 6)) ? (this.form[key] = timestampToTime(this.form[key], 6))
: key == "reviewTime" : key == "goworkTime"
? (this.form[key] = timestampToTime(this.form[key], 6)) ? (this.form[key] = timestampToTime(this.form[key], 6))
: ""; : "";
} }
......
...@@ -69,7 +69,6 @@ ...@@ -69,7 +69,6 @@
<el-col :span="22"> <el-col :span="22">
<el-form-item label="发生时间:"> <el-form-item label="发生时间:">
<p v-if="form.view == '查看'">{{ form.happenTime }}</p> <p v-if="form.view == '查看'">{{ form.happenTime }}</p>
<el-date-picker <el-date-picker
v-else v-else
v-model="form.happenTime" v-model="form.happenTime"
...@@ -462,7 +461,7 @@ export default { ...@@ -462,7 +461,7 @@ export default {
? (this.form[key] = timestampToTime(this.form[key], 6)) ? (this.form[key] = timestampToTime(this.form[key], 6))
: key == "goOffTimeStr" : key == "goOffTimeStr"
? (this.form[key] = timestampToTime(this.form[key], 6)) ? (this.form[key] = timestampToTime(this.form[key], 6))
: key == "reviewTime" : key == "happenTime"
? (this.form[key] = timestampToTime(this.form[key], 6)) ? (this.form[key] = timestampToTime(this.form[key], 6))
: ""; : "";
} }
...@@ -520,7 +519,7 @@ export default { ...@@ -520,7 +519,7 @@ export default {
? (this.form[key] = timestampToTime(this.form[key], 6)) ? (this.form[key] = timestampToTime(this.form[key], 6))
: key == "goOffTimeStr" : key == "goOffTimeStr"
? (this.form[key] = timestampToTime(this.form[key], 6)) ? (this.form[key] = timestampToTime(this.form[key], 6))
: key == "reviewTime" : key == "happenTime"
? (this.form[key] = timestampToTime(this.form[key], 6)) ? (this.form[key] = timestampToTime(this.form[key], 6))
: ""; : "";
} }
......
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