Selaa lähdekoodia

book: change filter form

zjxpcyc 6 vuotta sitten
vanhempi
commit
5973029ca7

+ 6
- 6
src/pages/system/library/borrow/bookreturn.vue Näytä tiedosto

1
 <template>
1
 <template>
2
   <div class="subPage edit-book" :style="{ padding: '20px' }">
2
   <div class="subPage edit-book" :style="{ padding: '20px' }">
3
     <div v-if="!active">
3
     <div v-if="!active">
4
-      <el-form style="text-align: center;">
5
-        <el-form-item>
4
+      <div style="text-align: center;">
5
+        <div>
6
           <el-input v-model="customerInfo" placeholder="会员手机号或条形码" :style="{ width: '400px' }"></el-input>
6
           <el-input v-model="customerInfo" placeholder="会员手机号或条形码" :style="{ width: '400px' }"></el-input>
7
-        </el-form-item>
8
-        <el-form-item :style="{ paddingTop: '20px' }">
7
+        </div>
8
+        <div :style="{ paddingTop: '20px' }">
9
           <el-button type="primary" @click="nextStep()">下一步</el-button>
9
           <el-button type="primary" @click="nextStep()">下一步</el-button>
10
-        </el-form-item>
11
-      </el-form>
10
+        </div>
11
+      </div>
12
     </div>
12
     </div>
13
     <div v-else>
13
     <div v-else>
14
       <!-- 用户信息区 -->
14
       <!-- 用户信息区 -->

+ 6
- 6
src/pages/system/library/borrow/borrow.vue Näytä tiedosto

1
 <template>
1
 <template>
2
   <div class="subPage edit-book" :style="{ padding: '20px' }">
2
   <div class="subPage edit-book" :style="{ padding: '20px' }">
3
     <div v-if="!active">
3
     <div v-if="!active">
4
-      <el-form style="text-align: center;">
5
-        <el-form-item>
4
+      <div style="text-align: center;">
5
+        <div>
6
           <el-input v-model="customerInfo" placeholder="会员手机号或条形码" :style="{ width: '400px' }"></el-input>
6
           <el-input v-model="customerInfo" placeholder="会员手机号或条形码" :style="{ width: '400px' }"></el-input>
7
-        </el-form-item>
8
-        <el-form-item :style="{ paddingTop: '20px' }">
7
+        </div>
8
+        <div :style="{ paddingTop: '20px' }">
9
           <el-button type="primary" @click="nextStep()">下一步</el-button>
9
           <el-button type="primary" @click="nextStep()">下一步</el-button>
10
-        </el-form-item>
11
-      </el-form>
10
+        </div>
11
+      </div>
12
     </div>
12
     </div>
13
     <div v-else>
13
     <div v-else>
14
 
14