|
@@ -102,9 +102,9 @@
|
|
|
<el-dialog
|
|
|
title="请审核手机号是否正确(可编辑)"
|
|
|
:visible.sync="dialogVisible"
|
|
|
- width="30%"
|
|
|
+ width="80%"
|
|
|
@close="handleClose">
|
|
|
- <el-input v-for="(item, idx) in input" :key="idx" v-model="input[idx]" style="margin-bottom: 10px"></el-input>
|
|
|
+ <el-input v-for="(item, idx) in input" :key="idx" v-model="input[idx]" style="margin-bottom: 10px;"></el-input>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
<el-button @click="handleClose">取 消</el-button>
|
|
|
<!-- <el-button type="primary" @click="onSubmit">确认无误</el-button> -->
|
|
@@ -116,7 +116,7 @@
|
|
|
<el-dialog
|
|
|
title="手机卡充值"
|
|
|
:visible.sync="dialogVisibleCard"
|
|
|
- width="30%"
|
|
|
+ width="80%"
|
|
|
@close="handleCloseCard">
|
|
|
<el-input v-for="(item, idx) in input" :key="idx" :value="item" style="margin-bottom: 10px"></el-input>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
@@ -349,6 +349,10 @@ export default {
|
|
|
this.loading = false
|
|
|
}
|
|
|
},
|
|
|
+ // 选择通道质量
|
|
|
+ hQucharge(item) {
|
|
|
+ this.qualityBtn = item.value
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
@@ -383,6 +387,10 @@ export default {
|
|
|
padding: 7px 10px;
|
|
|
font-size: 12px;
|
|
|
}
|
|
|
+/deep/.el-input__inner {
|
|
|
+ padding: 0 15px;/*no */
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
</style>
|
|
|
<style>
|
|
|
.el-main {
|