任务id1000083 完成率80%
This commit is contained in:
parent
a0cad20d31
commit
7876ed1c11
|
|
@ -313,7 +313,8 @@ export default {
|
||||||
pageSize: this.tableData.size,
|
pageSize: this.tableData.size,
|
||||||
orderType: this.orderType,
|
orderType: this.orderType,
|
||||||
...this.query,
|
...this.query,
|
||||||
productName
|
productName,
|
||||||
|
userId:this.$route.query.userId
|
||||||
});
|
});
|
||||||
this.tableData.loading = false;
|
this.tableData.loading = false;
|
||||||
this.tableData.data = res.content;
|
this.tableData.data = res.content;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,13 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<el-form ref="form" :model="form" label-width="120px" label-position="left">
|
<el-form ref="form" :model="form" label-width="120px" label-position="left">
|
||||||
|
<el-form-item label="校验安全密码">
|
||||||
|
<el-checkbox-group v-model="checkList">
|
||||||
|
<el-checkbox label="退款"></el-checkbox>
|
||||||
|
<el-checkbox label="会员充值"></el-checkbox>
|
||||||
|
<el-checkbox label="会员退款"></el-checkbox>
|
||||||
|
</el-checkbox-group>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item label="操作密码">
|
<el-form-item label="操作密码">
|
||||||
<el-input v-model="form.password" type="number" @input="jiantingshuru" :disabled="disabled"
|
<el-input v-model="form.password" type="number" @input="jiantingshuru" :disabled="disabled"
|
||||||
:placeholder="disabled ? '******' : '请输入操作密码'" style="width: 200px;"></el-input>
|
:placeholder="disabled ? '******' : '请输入操作密码'" style="width: 200px;"></el-input>
|
||||||
|
|
@ -27,7 +34,9 @@ export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
disabled: true,
|
disabled: true,
|
||||||
form: {}
|
form: {
|
||||||
|
},
|
||||||
|
checkList: ['退款','会员退款']
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
|
||||||
|
|
@ -249,7 +249,7 @@ export default {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
path: '/order_manage/order_list',
|
path: '/order_manage/order_list',
|
||||||
query: {
|
query: {
|
||||||
id: d.id
|
userId: d.id
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue