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