Commit 578a4af8 authored by linxin's avatar linxin

Merge branch 'liuxin' into develop

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