|
@@ -3,8 +3,8 @@
|
|
|
<div class="addWagonLoad">
|
|
|
<PageTitle @click="onClick">返回</PageTitle>
|
|
|
<div class="user_code">
|
|
|
- <span>账号:</span>
|
|
|
- <el-input></el-input>
|
|
|
+ <span class="text">账号:</span>
|
|
|
+ <el-input class="input" placeholder="请输入内容" v-model="input" clearable> </el-input>
|
|
|
</div>
|
|
|
<div class="form-box" style="margin-right: 10rem">
|
|
|
<dil-form :formId="330" v-model="form1"></dil-form>
|
|
@@ -266,6 +266,17 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
<style lang='scss' >
|
|
|
+.user_code {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ .text{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+ .input{
|
|
|
+ width: 250px;
|
|
|
+ }
|
|
|
+}
|
|
|
.button-box {
|
|
|
display: flex;
|
|
|
text-align: center;
|