Commit 11ee47d3 authored by levante's avatar levante

123

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