|
@@ -86,6 +86,7 @@
|
|
|
<script>
|
|
|
import { sellerReceive } from '@/api/user.js'
|
|
|
import { existPayPwd } from '@/api/order.js'
|
|
|
+ import md5 from 'md5'
|
|
|
export default{
|
|
|
data() {
|
|
|
return {
|
|
@@ -166,7 +167,7 @@
|
|
|
return
|
|
|
}
|
|
|
let data = {
|
|
|
- "payPassword": this.password,
|
|
|
+ "payPassword": md5(this.password),
|
|
|
"changeNum": this.number,
|
|
|
"remarks": this.remarks,
|
|
|
"officialPartnerNo": this.partnerNo
|