Commit 11ee47d3 authored by levante's avatar levante

123

parent b5993c21
...@@ -141,6 +141,7 @@ ...@@ -141,6 +141,7 @@
</template> </template>
<script> <script>
import { encryptDes } from '@/util/des-cryptojs'
export default { export default {
data() { data() {
return { return {
...@@ -177,9 +178,9 @@ export default { ...@@ -177,9 +178,9 @@ export default {
url: this.$api.POST_RESERVATION_FORM, url: this.$api.POST_RESERVATION_FORM,
params: { params: {
'reportorName': this.postPerson, 'reportorName': this.postPerson,
'address': this.repairAddr, 'address': encryptDes(this.repairAddr),
'place': this.repairArea, 'place': this.repairArea,
'phone': this.phone, 'phone': encryptDes(this.phone),
'dscr': this.description, 'dscr': this.description,
'homeDate': this.dueDate, 'homeDate': this.dueDate,
'homeTime': this.dueTime 'homeTime': this.dueTime
......
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