Commit 03ac1bd8 authored by 姬鋆屾's avatar 姬鋆屾

tui

parent 761cc463
...@@ -51,12 +51,10 @@ export const encodeURI = (data) => { ...@@ -51,12 +51,10 @@ export const encodeURI = (data) => {
* @returns {string} val 解析后的结果 * @returns {string} val 解析后的结果
*/ */
export function formatterDate(time) { export function formatterDate(time) {
console.log("time",time)
if(time==='undefined'||time===null) { if(time==='undefined'||time===null) {
return '--'} return '--'}
if (!time) return '--'; if (!time) return '--';
console.log("time11111",time)
let date = new Date(Number(time)); let date = new Date(Number(time));
let Y = date.getFullYear() + '-'; let Y = date.getFullYear() + '-';
let M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-'; let M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
......
...@@ -137,7 +137,7 @@ ...@@ -137,7 +137,7 @@
</el-row> </el-row>
</div> </div>
</div> </div>
<div class="box" v-if="form.view == '查看' || form.processStatus == 2"> <div class="box" v-if="form.view == '查看'">
<div class="title">申诉结果</div> <div class="title">申诉结果</div>
<div class="content"> <div class="content">
<el-row> <el-row>
...@@ -597,7 +597,7 @@ export default { ...@@ -597,7 +597,7 @@ export default {
this.reset(); this.reset();
} }
this.form.appealResult = ""; this.form.appealResult = "";
// this.form.processStatus = 2; this.form.processStatus = 2;
this.form.remark = ""; this.form.remark = "";
this.form.view = "核查"; this.form.view = "核查";
this.open = true; this.open = true;
......
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