commit
Showing
1 changed file
with
20 additions
and
20 deletions
| ... | @@ -23,19 +23,19 @@ | ... | @@ -23,19 +23,19 @@ |
| 23 | </el-form> | 23 | </el-form> |
| 24 | </el-col> | 24 | </el-col> |
| 25 | <el-col :span="8"> | 25 | <el-col :span="8"> |
| 26 | <el-form ref="bizData" :model="bizData" label-width="0px"> | 26 | <el-form ref="queryPhoneCode" :model="queryPhoneCode" label-width="0px"> |
| 27 | <el-card class="darkred" shadow="always"> | 27 | <el-card class="darkred" shadow="always"> |
| 28 | <div slot="header" class="clearfix"> | 28 | <div slot="header" class="clearfix"> |
| 29 | <span>加密&解密biz_data</span> | 29 | <span>查询短信验证码</span> |
| 30 | </div> | 30 | </div> |
| 31 | <div class="text item"> | 31 | <div class="text item"> |
| 32 | <el-form-item> | 32 | <el-form-item> |
| 33 | <el-input placeholder="请输入biz_data" v-model="bizData.myData" clearable></el-input> | 33 | <el-input placeholder="请输入手机号" v-model="queryPhoneCode.phone" clearable></el-input> |
| 34 | </el-form-item> | 34 | </el-form-item> |
| 35 | <el-form-item> | 35 | <el-form-item> |
| 36 | <el-select v-model="bizData.type" placeholder="请选择算法类型"> | 36 | <el-select v-model="queryPhoneCode.huanjing" placeholder="请选择执行环境"> |
| 37 | <el-option | 37 | <el-option |
| 38 | v-for="item in bizDataoptions" | 38 | v-for="item in queryPhoneCodeOptions" |
| 39 | :key="item.value" | 39 | :key="item.value" |
| 40 | :label="item.label" | 40 | :label="item.label" |
| 41 | :value="item.value"> | 41 | :value="item.value"> |
| ... | @@ -44,18 +44,18 @@ | ... | @@ -44,18 +44,18 @@ |
| 44 | </el-form-item> | 44 | </el-form-item> |
| 45 | <div style="margin: 15px 0;"></div> | 45 | <div style="margin: 15px 0;"></div> |
| 46 | <el-form-item> | 46 | <el-form-item> |
| 47 | <el-button round @click="bizDataSubmit">提交</el-button> | 47 | <el-button round @click="queryPhoneCodeSubmit">查询验证码</el-button> |
| 48 | </el-form-item> | 48 | </el-form-item> |
| 49 | </div> | 49 | </div> |
| 50 | </el-card> | 50 | </el-card> |
| 51 | </el-form> | 51 | </el-form> |
| 52 | <el-dialog | 52 | <el-dialog |
| 53 | title="biz_data" | 53 | title="短信验证码:" |
| 54 | :visible.sync="dialogVisible" | 54 | :visible.sync="dialogQueryPhoneCode" |
| 55 | width="30%"> | 55 | width="30%"> |
| 56 | <span>{{mybizdata}}</span> | 56 | <span>{{myQueryPhoneCode}}</span> |
| 57 | <span slot="footer" class="dialog-footer"> | 57 | <span slot="footer" class="dialog-footer"> |
| 58 | <el-button type="primary" v-clipboard:copy="JSON.stringify(mybizdata)" v-clipboard:success="onCopy" @click="dialogVisible = false">点击复制</el-button> | 58 | <el-button type="primary" v-clipboard:copy="JSON.stringify(myQueryPhoneCode)" v-clipboard:success="onCopy" @click="dialogQueryPhoneCode = false">点击复制</el-button> |
| 59 | </span> | 59 | </span> |
| 60 | </el-dialog> | 60 | </el-dialog> |
| 61 | </el-col> | 61 | </el-col> |
| ... | @@ -170,19 +170,19 @@ | ... | @@ -170,19 +170,19 @@ |
| 170 | </el-row> | 170 | </el-row> |
| 171 | <el-row style="margin-bottom: 15px;"> | 171 | <el-row style="margin-bottom: 15px;"> |
| 172 | <el-col :span="8"> | 172 | <el-col :span="8"> |
| 173 | <el-form ref="queryPhoneCode" :model="queryPhoneCode" label-width="0px"> | 173 | <el-form ref="bizData" :model="bizData" label-width="0px"> |
| 174 | <el-card class="darkred" shadow="always"> | 174 | <el-card class="darkred" shadow="always"> |
| 175 | <div slot="header" class="clearfix"> | 175 | <div slot="header" class="clearfix"> |
| 176 | <span>查询短信验证码</span> | 176 | <span>加密&解密biz_data</span> |
| 177 | </div> | 177 | </div> |
| 178 | <div class="text item"> | 178 | <div class="text item"> |
| 179 | <el-form-item> | 179 | <el-form-item> |
| 180 | <el-input placeholder="请输入手机号" v-model="queryPhoneCode.phone" clearable></el-input> | 180 | <el-input placeholder="请输入biz_data" v-model="bizData.myData" clearable></el-input> |
| 181 | </el-form-item> | 181 | </el-form-item> |
| 182 | <el-form-item> | 182 | <el-form-item> |
| 183 | <el-select v-model="queryPhoneCode.huanjing" placeholder="请选择执行环境"> | 183 | <el-select v-model="bizData.type" placeholder="请选择算法类型"> |
| 184 | <el-option | 184 | <el-option |
| 185 | v-for="item in queryPhoneCodeOptions" | 185 | v-for="item in bizDataoptions" |
| 186 | :key="item.value" | 186 | :key="item.value" |
| 187 | :label="item.label" | 187 | :label="item.label" |
| 188 | :value="item.value"> | 188 | :value="item.value"> |
| ... | @@ -191,18 +191,18 @@ | ... | @@ -191,18 +191,18 @@ |
| 191 | </el-form-item> | 191 | </el-form-item> |
| 192 | <div style="margin: 15px 0;"></div> | 192 | <div style="margin: 15px 0;"></div> |
| 193 | <el-form-item> | 193 | <el-form-item> |
| 194 | <el-button round @click="queryPhoneCodeSubmit">查询验证码</el-button> | 194 | <el-button round @click="bizDataSubmit">提交</el-button> |
| 195 | </el-form-item> | 195 | </el-form-item> |
| 196 | </div> | 196 | </div> |
| 197 | </el-card> | 197 | </el-card> |
| 198 | </el-form> | 198 | </el-form> |
| 199 | <el-dialog | 199 | <el-dialog |
| 200 | title="短信验证码:" | 200 | title="biz_data" |
| 201 | :visible.sync="dialogQueryPhoneCode" | 201 | :visible.sync="dialogVisible" |
| 202 | width="30%"> | 202 | width="30%"> |
| 203 | <span>{{myQueryPhoneCode}}</span> | 203 | <span>{{mybizdata}}</span> |
| 204 | <span slot="footer" class="dialog-footer"> | 204 | <span slot="footer" class="dialog-footer"> |
| 205 | <el-button type="primary" v-clipboard:copy="JSON.stringify(myQueryPhoneCode)" v-clipboard:success="onCopy" @click="dialogQueryPhoneCode = false">点击复制</el-button> | 205 | <el-button type="primary" v-clipboard:copy="JSON.stringify(mybizdata)" v-clipboard:success="onCopy" @click="dialogVisible = false">点击复制</el-button> |
| 206 | </span> | 206 | </span> |
| 207 | </el-dialog> | 207 | </el-dialog> |
| 208 | </el-col> | 208 | </el-col> | ... | ... |
-
Please register or sign in to post a comment