完善测试问题
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 17 KiB |
@@ -125,7 +125,7 @@ export function saveRoleMenuList(data) {
|
|||||||
// 菜单授权
|
// 菜单授权
|
||||||
export function roleMenuTree(data) {
|
export function roleMenuTree(data) {
|
||||||
return request({
|
return request({
|
||||||
url: `/oms/apiadmin/sysmenu/listAllByRoleSid`,
|
url: `/oms/apiadmin/sysmenu/listAllByRoleSidG`,
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
data: data,
|
data: data,
|
||||||
headers: {
|
headers: {
|
||||||
|
|||||||
@@ -75,7 +75,7 @@
|
|||||||
|
|
||||||
<span style="width: 100%;margin-top: 15px;">密码</span>
|
<span style="width: 100%;margin-top: 15px;">密码</span>
|
||||||
|
|
||||||
<el-input class="input" style="flex: 1; margin-right: 10px;margin-top: 5px;" maxlength="6" placeholder="请输入密码"
|
<el-input class="input" style="flex: 1; margin-right: 10px;margin-top: 5px;" placeholder="8至16位大小写字母和数字的组合"
|
||||||
v-model="registerInfo.password" show-password />
|
v-model="registerInfo.password" show-password />
|
||||||
|
|
||||||
<span style="width: 100%;margin-top: 15px;">验证码</span>
|
<span style="width: 100%;margin-top: 15px;">验证码</span>
|
||||||
@@ -83,13 +83,14 @@
|
|||||||
style="display: flex;flex-direction: row;align-items: center;width: 100%; margin-top: 5px;margin-left: -10px;">
|
style="display: flex;flex-direction: row;align-items: center;width: 100%; margin-top: 5px;margin-left: -10px;">
|
||||||
<el-input class="input" style="flex: 1; margin-right: 10px;" maxlength="6" placeholder="请输入验证码"
|
<el-input class="input" style="flex: 1; margin-right: 10px;" maxlength="6" placeholder="请输入验证码"
|
||||||
v-model="registerInfo.code" />
|
v-model="registerInfo.code" />
|
||||||
<span :class="sendCodeType2 ? 'sendCode1' : 'sendCode2'" @click="sendCode2">{{sendCodeText2}}</span>
|
<span :class="sendCodeType2 ? 'sendCode1' : 'sendCode2'" style="cursor:pointer;"
|
||||||
|
@click="sendCode2">{{sendCodeText2}}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style="display: flex;flex-direction: row;align-items: center;width: 100%; margin-top: 5px;"
|
<div style="display: flex;flex-direction: row;align-items: center;width: 100%; margin-top: 5px;"
|
||||||
@click="goLogin">
|
@click="goLogin">
|
||||||
<span>已有账号?</span>
|
<span>已有账号?</span>
|
||||||
<span style="color: #5084D2;">登录</span>
|
<span style="color: #5084D2;cursor:pointer;">登录</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
@@ -121,9 +122,9 @@
|
|||||||
<img src="../../assets/images/company_icon.png" style="width: 25px; height: 25px;
|
<img src="../../assets/images/company_icon.png" style="width: 25px; height: 25px;
|
||||||
margin-left: 10px;margin-right: 10px;" />
|
margin-left: 10px;margin-right: 10px;" />
|
||||||
<span style="flex: 1;margin-right: 10px;">{{item.orgName}}</span>
|
<span style="flex: 1;margin-right: 10px;">{{item.orgName}}</span>
|
||||||
<img v-show="item.type=='1'" src="../../assets/images/overdue.png" style=" height: 100%;" />
|
<img v-show="item.type=='3'" src="../../assets/images/overdue.png" style=" height: 100%;" />
|
||||||
<img v-show="item.type=='2'" src="../../assets/images/experience.png" style=" height: 100%;" />
|
<img v-show="item.type=='2'" src="../../assets/images/experience.png" style=" height: 100%;" />
|
||||||
<img v-show="item.type=='3'" src="../../assets/images/formal.png" style=" height: 100%;" />
|
<img v-show="item.type=='1'" src="../../assets/images/formal.png" style=" height: 100%;" />
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -218,6 +219,7 @@
|
|||||||
check: false,
|
check: false,
|
||||||
registerInfo: {
|
registerInfo: {
|
||||||
mobile: '',
|
mobile: '',
|
||||||
|
password: "",
|
||||||
userSid: "",
|
userSid: "",
|
||||||
sourceSid: 'd936f1ba-03c3-11ec-bf08-48452053aa44', // oms 资源sid
|
sourceSid: 'd936f1ba-03c3-11ec-bf08-48452053aa44', // oms 资源sid
|
||||||
},
|
},
|
||||||
@@ -450,6 +452,16 @@
|
|||||||
},
|
},
|
||||||
registerStep1() {
|
registerStep1() {
|
||||||
|
|
||||||
|
var passwordreg = /^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9]).{8,16}$/
|
||||||
|
|
||||||
|
if (!passwordreg.test(this.registerInfo.password)) {
|
||||||
|
this.$message({
|
||||||
|
message: '密码格式错误,必须为8至16位大小写字母和数字的组合',
|
||||||
|
type: 'warning'
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
if (!this.check) {
|
if (!this.check) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '请阅读并同意《宇信通服务协议》与《隐私协议》',
|
message: '请阅读并同意《宇信通服务协议》与《隐私协议》',
|
||||||
@@ -550,7 +562,8 @@
|
|||||||
|
|
||||||
var params = {
|
var params = {
|
||||||
userSid: this.registerInfo.userSid,
|
userSid: this.registerInfo.userSid,
|
||||||
orgSid: item.orgSid
|
orgSid: item.orgSid,
|
||||||
|
sourceSid: 'd936f1ba-03c3-11ec-bf08-48452053aa44', // oms 资源sid
|
||||||
}
|
}
|
||||||
|
|
||||||
selOrganization(params).then((response) => {
|
selOrganization(params).then((response) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user