mooho-base-admin-plus 2.4.13 → 2.4.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/mixins/page.js
CHANGED
|
@@ -270,7 +270,7 @@ export default {
|
|
|
270
270
|
try {
|
|
271
271
|
result = dateFormat(new Date(value * 1000), format);
|
|
272
272
|
} catch (e) {
|
|
273
|
-
console.log(e);
|
|
273
|
+
console.log(e, value);
|
|
274
274
|
}
|
|
275
275
|
|
|
276
276
|
return result;
|
|
@@ -314,7 +314,7 @@ export default {
|
|
|
314
314
|
|
|
315
315
|
result = array.join(', ');
|
|
316
316
|
} catch (e) {
|
|
317
|
-
console.log(e);
|
|
317
|
+
console.log(e, value);
|
|
318
318
|
}
|
|
319
319
|
|
|
320
320
|
return result;
|
|
@@ -323,7 +323,7 @@ export default {
|
|
|
323
323
|
try {
|
|
324
324
|
result = dateFormat(new Date(parseInt(value) * 1000), format);
|
|
325
325
|
} catch (e) {
|
|
326
|
-
console.log(e);
|
|
326
|
+
console.log(e, value);
|
|
327
327
|
}
|
|
328
328
|
|
|
329
329
|
return result;
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
</Button>
|
|
47
47
|
<Button
|
|
48
48
|
type="info"
|
|
49
|
-
v-if="$refs.form && $refs.form.data && $refs.form.data.
|
|
49
|
+
v-if="$refs.form && $refs.form.data && $refs.form.data.application && $refs.form.data.application.processInstID"
|
|
50
50
|
custom-icon="fa fa-history"
|
|
51
51
|
@click="$refs.approvalHistoryTable.open({ processInstID: $refs.form.data.application.processInstID })"
|
|
52
52
|
>
|
|
@@ -71,7 +71,12 @@
|
|
|
71
71
|
>
|
|
72
72
|
发表意见
|
|
73
73
|
</Button>
|
|
74
|
-
<Button
|
|
74
|
+
<Button
|
|
75
|
+
type="info"
|
|
76
|
+
v-if="$refs.showForm && $refs.showForm.data && $refs.showForm.data.application && $refs.showForm.data.application.processInstID"
|
|
77
|
+
custom-icon="fa fa-history"
|
|
78
|
+
@click="$refs.approvalHistoryTable.open({ processInstID: $refs.showForm.data.application.processInstID })"
|
|
79
|
+
>
|
|
75
80
|
{{ $t('Front_Btn_History') }}
|
|
76
81
|
</Button>
|
|
77
82
|
</template>
|