Commit 7fc29911 authored by ‘yangmengxue’'s avatar ‘yangmengxue’

修改转账备注

parent e36756c2
...@@ -179,6 +179,9 @@ ...@@ -179,6 +179,9 @@
<div><span>收款单位:</span>{{ payee }}</div> <div><span>收款单位:</span>{{ payee }}</div>
<div><span>账号:</span>{{ bank_idcard }}</div> <div><span>账号:</span>{{ bank_idcard }}</div>
<div><span>开户行:</span>{{ bank_first }}</div> <div><span>开户行:</span>{{ bank_first }}</div>
<div v-if="transfer_back_up">
<span>转账请备注:</span>{{ transfer_back_up }}
</div>
<span>上传带有订单编号的转账截图</span> <span>上传带有订单编号的转账截图</span>
<div class="image_add"> <div class="image_add">
<div class="image_in"> <div class="image_in">
...@@ -283,6 +286,9 @@ export default { ...@@ -283,6 +286,9 @@ export default {
bank_idcard: window.localStorage.getItem( bank_idcard: window.localStorage.getItem(
"bank_idcard" + this.$store.state.indexIdentity "bank_idcard" + this.$store.state.indexIdentity
), ),
transfer_back_up: window.localStorage.getItem(
"transfer_back_up" + this.$store.state.indexIdentity
),
isUploading: false, // 图片上传蒙层 isUploading: false, // 图片上传蒙层
dialogVisible: false, dialogVisible: false,
fileList: [], fileList: [],
......
...@@ -10,8 +10,8 @@ import indexHome from './base/home'; ...@@ -10,8 +10,8 @@ import indexHome from './base/home';
import indexActive from './base/active'; import indexActive from './base/active';
import indexCamp from './index/camp' import indexCamp from './index/camp'
import personalInfo from './index/personalInfo' import personalInfo from './index/personalInfo'
import {getCam, getCamInfo} from "r/index/login"; import { getCam, getCamInfo } from "r/index/login";
import {Message} from 'element-ui'; import { Message } from 'element-ui';
Vue.prototype.$message = Message; Vue.prototype.$message = Message;
...@@ -170,6 +170,8 @@ function checkCam(code, cb) { ...@@ -170,6 +170,8 @@ function checkCam(code, cb) {
window.localStorage.setItem("bank_first" + code, res.data.bank_first); //开户行 window.localStorage.setItem("bank_first" + code, res.data.bank_first); //开户行
window.localStorage.setItem("bank_idcard" + code, res.data.bank_idcard); //银行卡号 window.localStorage.setItem("bank_idcard" + code, res.data.bank_idcard); //银行卡号
} }
// 转账请备注
window.localStorage.setItem("transfer_back_up" + code, res.data.transfer_back_up); //收款单位
store.state.info = res.data; store.state.info = res.data;
if (res.data.is_qinghua == 1) { if (res.data.is_qinghua == 1) {
store.state.human = 1; store.state.human = 1;
......
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