提现
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
|
<!--
|
||||||
|
* @Descripttion: QIANDUAN
|
||||||
|
* @version: 1.0
|
||||||
|
* @Author: kangkang
|
||||||
|
* @Date: 2020-09-30 21:48:44
|
||||||
|
* @LastEditors: kangkang
|
||||||
|
* @LastEditTime: 2020-10-22 10:24:29
|
||||||
|
-->
|
||||||
<template>
|
<template>
|
||||||
<page>
|
<page>
|
||||||
<Header></Header>
|
<Header></Header>
|
||||||
@@ -9,15 +17,16 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
let that;
|
// eslint-disable-next-line no-unused-vars
|
||||||
|
let that
|
||||||
export default {
|
export default {
|
||||||
name: "home",
|
name: 'home',
|
||||||
components: {
|
components: {
|
||||||
Left: () => import("./left.vue"),
|
Left: () => import('./left.vue'),
|
||||||
Header: () => import("./header.vue")
|
Header: () => import('./header.vue')
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {};
|
return {}
|
||||||
},
|
},
|
||||||
computed: {},
|
computed: {},
|
||||||
watch: {
|
watch: {
|
||||||
@@ -27,7 +36,7 @@ export default {
|
|||||||
// 页面加载完成后执行
|
// 页面加载完成后执行
|
||||||
// todo
|
// todo
|
||||||
// this.resetHandelBox();
|
// this.resetHandelBox();
|
||||||
});
|
})
|
||||||
},
|
},
|
||||||
deep: true // 深度观察监听
|
deep: true // 深度观察监听
|
||||||
}
|
}
|
||||||
@@ -35,10 +44,10 @@ export default {
|
|||||||
created () {},
|
created () {},
|
||||||
updated () {},
|
updated () {},
|
||||||
methods: {}
|
methods: {}
|
||||||
};
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang='less' scoped>
|
||||||
.base_right {
|
.base_right {
|
||||||
margin-left: 180px;
|
margin-left: 180px;
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
|
|||||||
@@ -63,6 +63,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item prop="status" label="处理结果" :label-width="formLabelWidth">
|
<el-form-item prop="status" label="处理结果" :label-width="formLabelWidth">
|
||||||
<el-select v-model="form.status" placeholder="请选择处理结果">
|
<el-select v-model="form.status" placeholder="请选择处理结果">
|
||||||
|
<el-option label="待处理" value="0"></el-option>
|
||||||
<el-option label="同意" value="1"></el-option>
|
<el-option label="同意" value="1"></el-option>
|
||||||
<el-option label="拒绝" value="2"></el-option>
|
<el-option label="拒绝" value="2"></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
@@ -97,8 +98,10 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
handleClick (row) {
|
handleClick (row) {
|
||||||
|
this.$api.post('http://autophp.wyk/order/CashOutAdmin/getOneInfo', {id: row.id}).then(res => {
|
||||||
|
this.form = res.data
|
||||||
|
})
|
||||||
this.dialogFormVisible = true
|
this.dialogFormVisible = true
|
||||||
this.form = row
|
|
||||||
},
|
},
|
||||||
tableRowClassName ({row, rowIndex}) {
|
tableRowClassName ({row, rowIndex}) {
|
||||||
if (row.status === '同意') {
|
if (row.status === '同意') {
|
||||||
|
|||||||
@@ -121,7 +121,6 @@ export function post (url, params) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (response.data.Code === 30000) {
|
if (response.data.Code === 30000) {
|
||||||
Message.success(response.data.msg)
|
|
||||||
return resolve(response.data)
|
return resolve(response.data)
|
||||||
}
|
}
|
||||||
if (response.data.Code === 10000) {
|
if (response.data.Code === 10000) {
|
||||||
|
|||||||
Reference in New Issue
Block a user