水滴提示和默认账号位数
This commit is contained in:
@@ -539,12 +539,14 @@
|
||||
<div class="col-sm-10">
|
||||
<input type="number" v-model="order_info.buy_num" @@change="change_num()" min=1 class="form-control" value="1">
|
||||
</div>
|
||||
<div class="col-sm-2" title="1.这里输入的数量可以大于等于右侧指定地区输入框中的数量总和
|
||||
|
||||
例如:左侧输入100条,右侧只选中了一个地区并设定了20条,那么剩余80条将平均分配至未选择的区域。
|
||||
|
||||
2.右侧地区不是必填的,用户不手动分配地区,那么将由系统自动分配。">
|
||||
<span class="glyphicon glyphicon-question-sign"></span>
|
||||
<div class="col-sm-2">
|
||||
<button type="button" class="btn btn-primary" data-container="body" data-toggle="popover" data-placement="top" data-content="1.这里输入的数量可以大于等于右侧指定地区输入框中的数量总和 例如:左侧输入100条,右侧只选中了一个地区并设定了20条,那么剩余80条将平均分配至未选择的区域。 2.右侧地区不是必填的,用户不手动分配地区,那么将由系统自动分配。">?</button>
|
||||
|
||||
<script>
|
||||
$(function (){
|
||||
$("[data-toggle='popover']").popover();
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -564,11 +566,10 @@
|
||||
<div class="col-sm-10">
|
||||
<input type="text" v-model="order_info.account" class="form-control" placeholder="请输入账号">
|
||||
</div>
|
||||
<div class="col-sm-2" title="
|
||||
1.若购买数量大于1,则系统将根据用户所填账户内容生成批量账户
|
||||
|
||||
2.示例:填写 zhangsan,购买数量20,则会生成zhangsan1-zhangsan20">
|
||||
<span class="glyphicon glyphicon-question-sign"></span>
|
||||
<div class="col-sm-2">
|
||||
|
||||
<button type="button" class="btn btn-primary" data-container="body" data-toggle="popover" data-placement="top" data-content="1.若购买数量大于1,则系统将根据用户所填账户内容生成批量账户 2.示例:填写 zhangsan,购买数量20,则会生成zhangsan1-zhangsan20">?</button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -742,7 +743,7 @@
|
||||
|
||||
},
|
||||
created: function () {
|
||||
this.order_info.account = this.randomString(2) + (Math.floor(Math.random() * 1000) + 1);
|
||||
this.order_info.account = this.randomString(2) + (Math.floor(Math.random() * 10000) + 1);
|
||||
this.order_info.password = (Math.floor(Math.random() * 1000) + 1);
|
||||
},
|
||||
methods: {
|
||||
|
||||
@@ -1086,7 +1086,7 @@
|
||||
|
||||
},
|
||||
created: function () {
|
||||
this.order_info.account = this.randomString(2) + (Math.floor(Math.random() * 1000) + 1);
|
||||
this.order_info.account = this.randomString(2) + (Math.floor(Math.random() * 10000) + 1);
|
||||
this.order_info.password = (Math.floor(Math.random() * 1000) + 1);
|
||||
},
|
||||
methods: {
|
||||
|
||||
Reference in New Issue
Block a user