提现
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>
|
||||
<page>
|
||||
<Header></Header>
|
||||
@@ -9,36 +17,37 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
let that;
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
let that
|
||||
export default {
|
||||
name: "home",
|
||||
name: 'home',
|
||||
components: {
|
||||
Left: () => import("./left.vue"),
|
||||
Header: () => import("./header.vue")
|
||||
Left: () => import('./left.vue'),
|
||||
Header: () => import('./header.vue')
|
||||
},
|
||||
data() {
|
||||
return {};
|
||||
data () {
|
||||
return {}
|
||||
},
|
||||
computed: {},
|
||||
watch: {
|
||||
$route: {
|
||||
handler(val, oldVal) {
|
||||
handler (val, oldVal) {
|
||||
this.$nextTick(() => {
|
||||
//页面加载完成后执行
|
||||
//todo
|
||||
// 页面加载完成后执行
|
||||
// todo
|
||||
// this.resetHandelBox();
|
||||
});
|
||||
})
|
||||
},
|
||||
deep: true // 深度观察监听
|
||||
}
|
||||
},
|
||||
created() {},
|
||||
updated() {},
|
||||
created () {},
|
||||
updated () {},
|
||||
methods: {}
|
||||
};
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
<style lang='less' scoped>
|
||||
.base_right {
|
||||
margin-left: 180px;
|
||||
padding-left: 10px;
|
||||
|
||||
@@ -63,6 +63,7 @@
|
||||
</el-form-item>
|
||||
<el-form-item prop="status" label="处理结果" :label-width="formLabelWidth">
|
||||
<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="2"></el-option>
|
||||
</el-select>
|
||||
@@ -97,8 +98,10 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
handleClick (row) {
|
||||
this.$api.post('http://autophp.wyk/order/CashOutAdmin/getOneInfo', {id: row.id}).then(res => {
|
||||
this.form = res.data
|
||||
})
|
||||
this.dialogFormVisible = true
|
||||
this.form = row
|
||||
},
|
||||
tableRowClassName ({row, rowIndex}) {
|
||||
if (row.status === '同意') {
|
||||
|
||||
@@ -121,7 +121,6 @@ export function post (url, params) {
|
||||
return
|
||||
}
|
||||
if (response.data.Code === 30000) {
|
||||
Message.success(response.data.msg)
|
||||
return resolve(response.data)
|
||||
}
|
||||
if (response.data.Code === 10000) {
|
||||
|
||||
Reference in New Issue
Block a user