|
|
@ -64,6 +64,16 @@ |
|
|
v-hasPermi="['img:profitVerifyOrder:remove']" |
|
|
v-hasPermi="['img:profitVerifyOrder:remove']" |
|
|
>删除</el-button> |
|
|
>删除</el-button> |
|
|
</el-col> |
|
|
</el-col> |
|
|
|
|
|
<el-col :span="1.5"> |
|
|
|
|
|
<el-button |
|
|
|
|
|
type="danger" |
|
|
|
|
|
plain |
|
|
|
|
|
icon="el-icon-sort" |
|
|
|
|
|
size="mini" |
|
|
|
|
|
@click="handleTrans" |
|
|
|
|
|
v-hasPermi="['img:profitVerifyOrder:trans']" |
|
|
|
|
|
>转入钱包</el-button> |
|
|
|
|
|
</el-col> |
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar> |
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar> |
|
|
</el-row> |
|
|
</el-row> |
|
|
|
|
|
|
|
|
@ -256,7 +266,7 @@ |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|
import { listProfitVerifyOrder, addProfitVerifyOrder, editProfitVerifyOrder, delProfitVerifyOrder, getProfitVerifyOrderDetails, verify } from "@/api/img/profitVerifyOrder"; |
|
|
import { listProfitVerifyOrder, addProfitVerifyOrder, editProfitVerifyOrder, delProfitVerifyOrder, getProfitVerifyOrderDetails, verify, transInfoWallet } from "@/api/img/profitVerifyOrder"; |
|
|
import { getUserProfile } from "@/api/system/user"; |
|
|
import { getUserProfile } from "@/api/system/user"; |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
@ -423,6 +433,14 @@ export default { |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
|
|
|
/** 转入钱包按钮 */ |
|
|
|
|
|
handleTrans(){ |
|
|
|
|
|
this.$modal.confirm('确定要转入钱包吗?').then(function() { |
|
|
|
|
|
return transInfoWallet(); |
|
|
|
|
|
}).then(() => { |
|
|
|
|
|
this.$modal.msgSuccess("转入钱包成功"); |
|
|
|
|
|
}).catch(() => {}); |
|
|
|
|
|
}, |
|
|
/** 审核按钮操作 */ |
|
|
/** 审核按钮操作 */ |
|
|
handleVerify(row){ |
|
|
handleVerify(row){ |
|
|
console.log(row) |
|
|
console.log(row) |
|
|
|