Commit 0e6db761 0e6db76152b27215fdcd6b640fdb45534eade02a by zhanghao

commit

1 parent c63cfbc7
......@@ -40,6 +40,15 @@
</div>
</el-card>
</el-form>
<el-dialog
title="加密后的biz_data"
:visible.sync="dialogVisible"
width="30%">
<span>{{mybizdata}}</span>
<span slot="footer" class="dialog-footer">
<el-button type="primary" @click="dialogVisible = false">确 定</el-button>
</span>
</el-dialog>
</el-col>
<el-col :span="8">
<el-card class="blue" shadow="always">
......@@ -121,7 +130,9 @@
},
bizData: {
myData: ''
}
},
dialogVisible: false,
mybizdata: ''
}
},
methods: {
......@@ -168,7 +179,8 @@
biz_data: this.bizData.myData
}),config).then((res)=>{
console.log(res);
this.mybizdata = res.data;
this.dialogVisible = true;
}).catch(error=>{
console.log(error);
this.$message({
......