|  | @@ -479,11 +479,15 @@ import { yeepayUpload, createMember, updateMember } from "./api.js";
 | 
	
		
			
				|  |  |  import { policy } from "@/api/appTenant";
 | 
	
		
			
				|  |  |  export default {
 | 
	
		
			
				|  |  |    name: "AYePayAccount",
 | 
	
		
			
				|  |  | +  props:{
 | 
	
		
			
				|  |  | +    row:{
 | 
	
		
			
				|  |  | +      type:Object,
 | 
	
		
			
				|  |  | +      default:()=>{}
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +  },
 | 
	
		
			
				|  |  |    data() {
 | 
	
		
			
				|  |  | -    const query = this.$route.query;
 | 
	
		
			
				|  |  |      return {
 | 
	
		
			
				|  |  |        payType: "create",
 | 
	
		
			
				|  |  | -      row: query.row ? JSON.parse(query.row) : {},
 | 
	
		
			
				|  |  |        backList: yiBankJson,
 | 
	
		
			
				|  |  |        cityList: cityJson,
 | 
	
		
			
				|  |  |        cityOptions: yizhifuJson,
 | 
	
	
		
			
				|  | @@ -536,13 +540,12 @@ export default {
 | 
	
		
			
				|  |  |      };
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    mounted() {
 | 
	
		
			
				|  |  | +    console.log(this.row)
 | 
	
		
			
				|  |  |      this.__init();
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    methods: {
 | 
	
		
			
				|  |  |      __init() {
 | 
	
		
			
				|  |  | -      const query = this.$route.query;
 | 
	
		
			
				|  |  | -      this.payType = query.type;
 | 
	
		
			
				|  |  | -      this.row = query.row ? JSON.parse(query.row) : {};
 | 
	
		
			
				|  |  | +      // this.payType = query.type;
 | 
	
		
			
				|  |  |        if (this.payType == "update") {
 | 
	
		
			
				|  |  |          const row = this.row;
 | 
	
		
			
				|  |  |          this.id = row.id;
 | 
	
	
		
			
				|  | @@ -644,7 +647,7 @@ export default {
 | 
	
		
			
				|  |  |          console.log("🚀 ~ file:", file);
 | 
	
		
			
				|  |  |          let formData = new FormData();
 | 
	
		
			
				|  |  |          formData.append("file", file.raw);
 | 
	
		
			
				|  |  | -        yeepayUpload(formData);
 | 
	
		
			
				|  |  | +        // yeepayUpload(formData);
 | 
	
		
			
				|  |  |          this.form[form_key] = file.raw;
 | 
	
		
			
				|  |  |          this.$refs["accountForm"].validateField(form_key);
 | 
	
		
			
				|  |  |        } catch (e) {
 |