commit
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
|
||||
<script>
|
||||
module.exports = {
|
||||
name: "h5",
|
||||
name: "h5Signature",
|
||||
components: {
|
||||
signature: httpVueLoader("/components/plugins/sysSignature/index.vue?v=" + new Date().getTime())
|
||||
},
|
||||
|
||||
+6
-3
@@ -72,6 +72,7 @@ layout("/layouts/platform_h5.html"){
|
||||
></van-field>
|
||||
<van-cell-group title="电子签名" class="form-section">
|
||||
<van-field class="more-text" name="tf_userSign" label=""
|
||||
v-model="formData.tf_userSign"
|
||||
:rules="[{ required: true, message: '请填写电子签名' }]"
|
||||
required>
|
||||
<template #input>
|
||||
@@ -135,10 +136,12 @@ layout("/layouts/platform_h5.html"){
|
||||
onApproval(row) {
|
||||
this.showApprovalForm = true
|
||||
this.$refs.infoRef.onOpen(row)
|
||||
this.formData = {
|
||||
this.$set(this, "formData", {
|
||||
processTaskId: row.taskId,
|
||||
taskName: row.curTaskName
|
||||
}
|
||||
taskName: row.curTaskName,
|
||||
tf_opinion: "",
|
||||
tf_userSign: ""
|
||||
})
|
||||
},
|
||||
async handleTaskAction(val) {
|
||||
try {
|
||||
|
||||
+6
-3
@@ -101,6 +101,7 @@ layout("/layouts/platform_h5.html"){
|
||||
></van-field>
|
||||
<van-cell-group title="电子签名" class="form-section">
|
||||
<van-field class="more-text" name="tf_userSign" label=""
|
||||
v-model="formData.tf_userSign"
|
||||
:rules="[{ required: true, message: '请填写电子签名' }]"
|
||||
required>
|
||||
<template #input>
|
||||
@@ -166,13 +167,15 @@ layout("/layouts/platform_h5.html"){
|
||||
this.showApprovalForm = true
|
||||
this.condolenceType = row.type
|
||||
this.$refs.infoRef.onOpen(row)
|
||||
this.formData = {
|
||||
this.$set(this, "formData", {
|
||||
processTaskId: row.taskId,
|
||||
taskName: row.curTaskName,
|
||||
bankCardNumber: row.bankCardNumber || '',
|
||||
bankUserName: row.bankUserName || '',
|
||||
bankOfDeposit: row.bankOfDeposit || ''
|
||||
}
|
||||
bankOfDeposit: row.bankOfDeposit || '',
|
||||
tf_opinion: "",
|
||||
tf_userSign: ""
|
||||
})
|
||||
},
|
||||
async handleTaskAction(val) {
|
||||
try {
|
||||
|
||||
+6
-3
@@ -72,6 +72,7 @@ layout("/layouts/platform_h5.html"){
|
||||
></van-field>
|
||||
<van-cell-group title="电子签名" class="form-section">
|
||||
<van-field class="more-text" name="tf_userSign" label=""
|
||||
v-model="formData.tf_userSign"
|
||||
:rules="[{ required: true, message: '请填写电子签名' }]"
|
||||
required>
|
||||
<template #input>
|
||||
@@ -135,11 +136,13 @@ layout("/layouts/platform_h5.html"){
|
||||
onApproval(row) {
|
||||
this.showApprovalForm = true
|
||||
this.$refs.infoRef.onOpen(row)
|
||||
this.formData = {
|
||||
this.$set(this, "formData", {
|
||||
processTaskId: row.taskId,
|
||||
taskName: row.curTaskName,
|
||||
id: row.id
|
||||
}
|
||||
id: row.id,
|
||||
tf_opinion: "",
|
||||
tf_userSign: ""
|
||||
})
|
||||
},
|
||||
async handleTaskAction(val) {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user