Commit 578a4af8 authored by linxin's avatar linxin

Merge branch 'liuxin' into develop

parents 0b4e31af 50588309
...@@ -441,7 +441,6 @@ export default { ...@@ -441,7 +441,6 @@ export default {
watch: { watch: {
'ischecked': function (newVal, oldVal) { 'ischecked': function (newVal, oldVal) {
let appro = document.querySelector('.appro') let appro = document.querySelector('.appro')
console.log(oldVal, newVal)
if (newVal) { if (newVal) {
appro.style.backgroundColor = '#00469c' appro.style.backgroundColor = '#00469c'
} else { } else {
...@@ -453,7 +452,6 @@ export default { ...@@ -453,7 +452,6 @@ export default {
}, },
}, },
created () { created () {
console.log(this.hasButtomStorage)
if (this.bp_class === 'NP') { if (this.bp_class === 'NP') {
this.getNPBase() this.getNPBase()
} else if (this.bp_class === 'ORG') { } else if (this.bp_class === 'ORG') {
...@@ -465,7 +463,7 @@ export default { ...@@ -465,7 +463,7 @@ export default {
if (this.confirm_status !== 'APPROVED') { if (this.confirm_status !== 'APPROVED') {
this.popProtocol() this.popProtocol()
} }
// this.getList() // this.getList()
this.isConfirm = this.$route.params.isConfirm this.isConfirm = this.$route.params.isConfirm
}, },
methods: { methods: {
...@@ -480,7 +478,6 @@ export default { ...@@ -480,7 +478,6 @@ export default {
}, },
select () { select () {
this.ischecked = !this.ischecked this.ischecked = !this.ischecked
console.log(this.ischecked)
}, },
confirm () { confirm () {
this.ischecked ? (this.isConfirm = true) : (this.isConfirm = false) this.ischecked ? (this.isConfirm = true) : (this.isConfirm = false)
...@@ -582,7 +579,6 @@ export default { ...@@ -582,7 +579,6 @@ export default {
title: '提示', title: '提示',
content: `您确认${val}吗?`, content: `您确认${val}吗?`,
onConfirm: (data) => { onConfirm: (data) => {
console.log(data)
// if (val === '拒绝') { // if (val === '拒绝') {
// } else { // } else {
......
...@@ -136,7 +136,6 @@ export default { ...@@ -136,7 +136,6 @@ export default {
let vm = this let vm = this
let url = process.env.basePath + 'create_detail_0_part' let url = process.env.basePath + 'create_detail_0_part'
let data = vm.makeDetailData() let data = vm.makeDetailData()
console.log(data)
let param = { let param = {
order_id: window.sessionStorage.getItem('order_id'), order_id: window.sessionStorage.getItem('order_id'),
pay_lists: data, pay_lists: data,
......
...@@ -54,7 +54,6 @@ export default { ...@@ -54,7 +54,6 @@ export default {
if (from.name === 'MyInfo') { if (from.name === 'MyInfo') {
vm.getDownPayment() vm.getDownPayment()
} else if (from.name === 'Success') { } else if (from.name === 'Success') {
// console.log(vm.money, window.sessionStorage.getItem('money'))
vm.money = parseInt(vm.default) - parseInt(window.sessionStorage.getItem('money')) vm.money = parseInt(vm.default) - parseInt(window.sessionStorage.getItem('money'))
vm.default = vm.money vm.default = vm.money
} }
......
...@@ -62,7 +62,6 @@ export default { ...@@ -62,7 +62,6 @@ export default {
if (from.name === 'MyInfo') { if (from.name === 'MyInfo') {
vm.getRent() vm.getRent()
} else if (from.name === 'Success') { } else if (from.name === 'Success') {
// console.log(vm.money, window.sessionStorage.getItem('money'))
vm.money = parseInt(vm.default) - parseInt(window.sessionStorage.getItem('money')) vm.money = parseInt(vm.default) - parseInt(window.sessionStorage.getItem('money'))
vm.default = vm.money vm.default = vm.money
vm.pay_rent = vm.money vm.pay_rent = vm.money
...@@ -117,7 +116,6 @@ export default { ...@@ -117,7 +116,6 @@ export default {
vm.$post(url, param).then(function (res) { vm.$post(url, param).then(function (res) {
vm.hlsPopup.hideLoading() vm.hlsPopup.hideLoading()
if (res.result === 'S') { if (res.result === 'S') {
console.log(res)
vm.toPayEntry(vm.money) vm.toPayEntry(vm.money)
} else { } else {
hlsPopup.showLongCenter(res.message) hlsPopup.showLongCenter(res.message)
......
...@@ -90,7 +90,6 @@ export default { ...@@ -90,7 +90,6 @@ export default {
title: '提示', title: '提示',
content: '您确认删除吗?', content: '您确认删除吗?',
onConfirm: data => { onConfirm: data => {
console.log(data)
if (data === 1) { if (data === 1) {
let index = this.getBankList.findIndex(item => { let index = this.getBankList.findIndex(item => {
if (item.bank_account_num === e) { if (item.bank_account_num === e) {
......
...@@ -948,7 +948,6 @@ export default { ...@@ -948,7 +948,6 @@ export default {
title: '提示', title: '提示',
content: '您确认添加吗?', content: '您确认添加吗?',
onConfirm: data => { onConfirm: data => {
console.log(data)
if (data === 1) { if (data === 1) {
let bpName = this.from ? this.$route.params.user_bp_name : window.localStorage.getItem('bp_name') let bpName = this.from ? this.$route.params.user_bp_name : window.localStorage.getItem('bp_name')
if ( if (
...@@ -996,7 +995,6 @@ export default { ...@@ -996,7 +995,6 @@ export default {
title: '提示', title: '提示',
content: '您确认提交吗?', content: '您确认提交吗?',
onConfirm: data => { onConfirm: data => {
console.log(data)
if (data) { if (data) {
let vm = this let vm = this
let url = process.env.basePath + 'bp_bind_submit' let url = process.env.basePath + 'bp_bind_submit'
......
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