see999 3 gadus atpakaļ
vecāks
revīzija
5fd835fc66

+ 17 - 18
src/xt_pages/stock/drugs/drugStockInOrderAdd.vue Parādīt failu

@@ -73,7 +73,7 @@
73 73
             </template>
74 74
 
75 75
             <template slot-scope="scope">
76
-              <el-form-item style="padding-top: 15px">
76
+              <el-form-item style="padding-top: 20px">
77 77
                   <el-autocomplete
78 78
                     class="checkSearch"
79 79
                     popper-class="my-autocomplete"
@@ -93,12 +93,12 @@
93 93
               </el-form-item>
94 94
             </template>
95 95
           </el-table-column>
96
-           <el-table-column align="center" width="200">
96
+           <el-table-column align="center" width="140">
97 97
             <template slot="header" slot-scope="scope">
98 98
               <span>药品类型</span>
99 99
             </template>
100 100
              <template slot-scope="scope">
101
-               <el-select size="small" v-model="scope.row.drug_type" filterable placeholder="请选择厂商">
101
+               <el-select v-model="scope.row.drug_type" filterable placeholder="请选择厂商">
102 102
                 <el-option
103 103
                   v-for="(option, index) in drugTypeList"
104 104
                   :key="index"
@@ -108,12 +108,12 @@
108 108
                </el-select>
109 109
             </template>
110 110
           </el-table-column>
111
-          <el-table-column align="center" width="200">
111
+          <el-table-column align="center" width="140">
112 112
             <template slot="header" slot-scope="scope">
113 113
               <span>规格&单位</span>
114 114
             </template>
115 115
             <template slot-scope="scope">
116
-              <el-form-item style="padding-top: 15px">
116
+              <el-form-item style="padding-top: 20px">
117 117
                 <el-input
118 118
                   :disabled="true"
119 119
                   placeholder="请输入规格&单位"
@@ -122,12 +122,12 @@
122 122
               </el-form-item>
123 123
             </template>
124 124
           </el-table-column>
125
-         <el-table-column align="center" width="200">
125
+         <el-table-column align="center" width="150">
126 126
           <template slot="header" slot-scope="scope" >
127 127
                 <span>批号</span>
128 128
             </template>
129 129
               <template slot-scope="scope">
130
-                <el-form-item style="padding-top: 15px">
130
+                <el-form-item style="padding-top: 20px">
131 131
                   <el-input
132 132
                     placeholder="请输入批号"
133 133
                     v-model="scope.row.lot_number"
@@ -136,7 +136,7 @@
136 136
               </template>
137 137
          </el-table-column>
138 138
 
139
-         <el-table-column align="center" width="180">
139
+         <el-table-column align="center" width="120">
140 140
             <template slot="header" slot-scope="scope">
141 141
               <span>入库数量<span style="color: red">*</span></span>
142 142
             </template>
@@ -144,20 +144,19 @@
144 144
               <el-form-item
145 145
                 :prop="'recordData.' + scope.$index + '.warehousing_count'"
146 146
                 :rules="tableRules.warehousing_count"
147
-                style="padding-top: 17px"
147
+                style="padding-top: 20px"
148 148
               >
149 149
                 <el-input
150 150
                   placeholder="请输入入库数量"
151 151
                   type="number"
152 152
                   v-model="scope.row.warehousing_count"
153
-                  style="width:100px"
154 153
                 ></el-input>
155 154
                 {{scope.row.max_unit}}
156 155
               </el-form-item>
157 156
             </template>
158 157
           </el-table-column>
159 158
        
160
-          <el-table-column align="center" width="150">
159
+          <el-table-column align="center" width="120">
161 160
             <template slot="header" slot-scope="scope">
162 161
               <span>进货单价(元)<span style="color: red">*</span></span>
163 162
             </template>
@@ -165,7 +164,7 @@
165 164
               <el-form-item
166 165
                 :prop="'recordData.' + scope.$index + '.price'"
167 166
                 :rules="tableRules.last_price"
168
-                style="padding-top: 17px"
167
+                style="padding-top: 20px"
169 168
               >
170 169
                 <el-input
171 170
                   style="width:100px"
@@ -178,15 +177,15 @@
178 177
             </template>
179 178
           </el-table-column>
180 179
 
181
-          <el-table-column label="总价(元)" align="center" width="150">
180
+          <el-table-column label="总价(元)" align="center" width="80">
182 181
             <template slot-scope="scope">
183 182
               {{ calculate(scope.row.last_price * scope.row.warehousing_count) }} 
184 183
             </template>
185 184
           </el-table-column>
186 185
 
187
-          <el-table-column label="生产厂家" width="250" align="center">
186
+          <el-table-column label="生产厂家" width="140" align="center">
188 187
             <template slot-scope="scope">
189
-               <el-select size="small" v-model="scope.row.manufacturer" filterable placeholder="请选择厂商">
188
+               <el-select v-model="scope.row.manufacturer" filterable placeholder="请选择厂商">
190 189
                 <el-option
191 190
                   v-for="(option, index) in manufacturerList"
192 191
                   :key="index"
@@ -198,7 +197,7 @@
198 197
           </el-table-column>
199 198
  
200 199
 
201
-          <el-table-column label="生产日期" width="250" align="center">
200
+          <el-table-column label="生产日期" width="180" align="center">
202 201
             <template slot-scope="scope">
203 202
               <el-date-picker
204 203
                 prefix-icon="el-icon-date"
@@ -211,7 +210,7 @@
211 210
               ></el-date-picker>
212 211
             </template>
213 212
           </el-table-column>
214
-          <el-table-column label="有效日期" width="250" align="center">
213
+          <el-table-column label="有效日期" width="180" align="center">
215 214
             <template slot-scope="scope">
216 215
               <el-date-picker
217 216
                 prefix-icon="el-icon-date"
@@ -227,7 +226,7 @@
227 226
         
228 227
         <el-table-column align="center" width="150" label="批准文号">
229 228
             <template slot-scope="scope">
230
-              <el-form-item>
229
+              <el-form-item style="padding-top: 20px">
231 230
                 <el-input
232 231
                   placeholder="请输入批准文号"
233 232
                   v-model="scope.row.batch_number"

+ 24 - 23
src/xt_pages/stock/drugs/drugStockInOrderEdit.vue Parādīt failu

@@ -114,7 +114,7 @@
114 114
             </template>
115 115
 
116 116
             <template slot-scope="scope">
117
-              <el-form-item style="padding-top: 15px">
117
+              <el-form-item style="padding-top: 20px">
118 118
                  <el-autocomplete
119 119
                     class="checkSearch"
120 120
                     popper-class="my-autocomplete"
@@ -134,12 +134,12 @@
134 134
               </el-form-item>
135 135
             </template>
136 136
           </el-table-column>
137
-         <el-table-column align="center" width="200">
137
+         <el-table-column align="center" width="140">
138 138
             <template slot="header" slot-scope="scope">
139 139
               <span>药品类型</span>
140 140
             </template>
141 141
              <template slot-scope="scope">
142
-               <el-select size="small" v-model="scope.row.drug_type" filterable placeholder="请选择厂商">
142
+               <el-select v-model="scope.row.drug_type" filterable placeholder="请选择厂商">
143 143
                 <el-option
144 144
                   v-for="(option, index) in drugTypeList"
145 145
                   :key="index"
@@ -149,12 +149,12 @@
149 149
                </el-select>
150 150
             </template>
151 151
           </el-table-column>
152
-          <el-table-column align="center" width="200">
152
+          <el-table-column align="center" width="140">
153 153
             <template slot="header" slot-scope="scope">
154 154
               <span>规格&单位</span>
155 155
             </template>
156 156
             <template slot-scope="scope">
157
-              <el-form-item style="padding-top: 15px">
157
+              <el-form-item style="padding-top: 20px">
158 158
                 <el-input
159 159
                   :disabled="true"
160 160
                   placeholder="请输入规格&单位"
@@ -163,12 +163,12 @@
163 163
               </el-form-item>
164 164
             </template>
165 165
           </el-table-column>
166
-          <el-table-column align="center" width="200">
166
+          <el-table-column align="center" width="140">
167 167
             <template slot="header" slot-scope="scope" >
168 168
               <span>批号</span>
169 169
               </template>
170 170
                 <template slot-scope="scope">
171
-                  <el-form-item style="padding-top: 15px">
171
+                  <el-form-item style="padding-top: 20px">
172 172
                     <el-input
173 173
                       placeholder="请输入批号"
174 174
                       v-model="scope.row.lot_number"
@@ -177,7 +177,7 @@
177 177
                 </template>
178 178
           </el-table-column>
179 179
                    
180
-         <el-table-column align="center" width="180">
180
+         <el-table-column align="center" width="120">
181 181
             <template slot="header" slot-scope="scope">
182 182
               <span>入库数量<span style="color: red">*</span></span>
183 183
             </template>
@@ -185,19 +185,20 @@
185 185
               <el-form-item
186 186
                 :prop="'recordData.' + scope.$index + '.warehousing_count'"
187 187
                 :rules="tableRules.warehousing_count"
188
-                style="padding-top: 17px"
188
+                style="padding-top: 20px;"
189 189
               >
190
-                <el-input
191
-                  placeholder="请输入入库数量"
192
-                  type="number"
193
-                  v-model="scope.row.warehousing_count"
194
-                  style="width:100px"
195
-                ></el-input>
196
-                {{scope.row.max_unit}}
190
+                <div style="display:flex;">
191
+                  <el-input
192
+                    placeholder="请输入入库数量"
193
+                    type="number"
194
+                    v-model="scope.row.warehousing_count"
195
+                  ></el-input>
196
+                  {{scope.row.max_unit}}
197
+                </div>
197 198
               </el-form-item>
198 199
             </template>
199 200
           </el-table-column>
200
-          <el-table-column>
201
+          <el-table-column width="120">
201 202
             <template slot="header" slot-scope="scope">
202 203
                 <span>进货单价(元)<span style="color: red">*</span></span>
203 204
               </template>
@@ -205,7 +206,7 @@
205 206
                 <el-form-item
206 207
                   :prop="'recordData.' + scope.$index + '.price'"
207 208
                   :rules="tableRules.last_price"
208
-                  style="padding-top: 17px"
209
+                  style="padding-top: 20px"
209 210
                 >
210 211
                   <el-input
211 212
                     style="width:100px"
@@ -218,15 +219,15 @@
218 219
               </template>
219 220
           </el-table-column>
220 221
 
221
-          <el-table-column label="总价(元)" align="center" width="150">
222
+          <el-table-column label="总价(元)" align="center" width="80">
222 223
             <template slot-scope="scope">
223 224
               {{ calculate(scope.row.last_price * scope.row.warehousing_count) }} 
224 225
             </template>
225 226
           </el-table-column>
226 227
          
227
-          <el-table-column label="生产厂家" width="250" align="center">
228
+          <el-table-column label="生产厂家" width="140" align="center">
228 229
             <template slot-scope="scope">
229
-               <el-select size="small" v-model="scope.row.manufacturer" filterable placeholder="请选择厂商">
230
+               <el-select v-model="scope.row.manufacturer" filterable placeholder="请选择厂商">
230 231
                 <el-option
231 232
                   v-for="(option, index) in manufacturerList"
232 233
                   :key="index"
@@ -237,7 +238,7 @@
237 238
             </template>
238 239
           </el-table-column>
239 240
 
240
-          <el-table-column label="生产日期" width="250" align="center">
241
+          <el-table-column label="生产日期" width="180" align="center">
241 242
             <template slot-scope="scope">
242 243
               <el-date-picker
243 244
                 prefix-icon="el-icon-date"
@@ -252,7 +253,7 @@
252 253
           </el-table-column>
253 254
 
254 255
 
255
-         <el-table-column label="有效日期" width="250" align="center">
256
+         <el-table-column label="有效日期" width="180" align="center">
256 257
             <template slot-scope="scope">
257 258
               <el-date-picker
258 259
                 prefix-icon="el-icon-date"

+ 30 - 27
src/xt_pages/stock/drugs/drugStockOutOrderAdd.vue Parādīt failu

@@ -48,7 +48,7 @@
48 48
           v-model="warehouse_out_time"
49 49
           prefix-icon="el-icon-date"
50 50
           :editable="false"
51
-          style="width: 196px;"
51
+          style="width: 200px;"
52 52
           type="date"
53 53
           placeholder="选择日期时间"
54 54
           align="right"
@@ -65,6 +65,7 @@
65 65
           filterable
66 66
           placeholder="请选择经销商"
67 67
           @change="changeDealer"
68
+          style="width: 200px;"
68 69
         >
69 70
           <el-option
70 71
             v-for="(option, index) in dealer"
@@ -84,6 +85,7 @@
84 85
           filterable
85 86
           placeholder="请选择厂商"
86 87
           @change="changeManufacturer"
88
+          style="width: 200px;"
87 89
         >
88 90
           <el-option
89 91
             v-for="(option, index) in manufacturer"
@@ -110,7 +112,7 @@
110 112
             </template>
111 113
 
112 114
             <template slot-scope="scope">
113
-              <el-form-item style="padding-top: 15px">
115
+              <el-form-item style="padding-top: 20px">
114 116
                 <el-autocomplete
115 117
                     class="checkSearch"
116 118
                     popper-class="my-autocomplete"
@@ -130,12 +132,12 @@
130 132
               </el-form-item>
131 133
             </template>
132 134
           </el-table-column>
133
-          <el-table-column align="center" width="200">
135
+          <el-table-column align="center" width="140">
134 136
             <template slot="header" slot-scope="scope">
135 137
               <span>药品类型</span>
136 138
             </template>
137 139
              <template slot-scope="scope">
138
-               <el-select size="small" v-model="scope.row.drug_type" filterable placeholder="请选择厂商">
140
+               <el-select v-model="scope.row.drug_type" filterable placeholder="请选择厂商">
139 141
                 <el-option
140 142
                   v-for="(option, index) in drugTypeList"
141 143
                   :key="index"
@@ -145,12 +147,12 @@
145 147
                </el-select>
146 148
             </template>
147 149
           </el-table-column>
148
-          <el-table-column align="center" width="200">
150
+          <el-table-column align="center" width="140">
149 151
             <template slot="header" slot-scope="scope">
150 152
               <span>规格&单位<span style="color: red">*</span></span>
151 153
             </template>
152 154
             <template slot-scope="scope">
153
-              <el-form-item style="padding-top: 15px">
155
+              <el-form-item style="padding-top: 20px">
154 156
                 <el-input
155 157
                   :disabled="true"
156 158
                   placeholder="请输入规格&单位"
@@ -159,12 +161,12 @@
159 161
               </el-form-item>
160 162
             </template>
161 163
           </el-table-column>
162
-          <el-table-column align="center" width="200">
164
+          <el-table-column align="center" width="150">
163 165
             <template slot="header" slot-scope="scope" >
164 166
                   <span>批号</span>
165 167
               </template>
166 168
                 <template slot-scope="scope">
167
-                  <el-form-item style="padding-top: 15px">
169
+                  <el-form-item style="padding-top: 20px">
168 170
                     <el-input
169 171
                       placeholder="请输入批号"
170 172
                       v-model="scope.row.batch_number"
@@ -172,7 +174,7 @@
172 174
                   </el-form-item>
173 175
               </template>
174 176
           </el-table-column>
175
-          <el-table-column width="180" align="center">
177
+          <el-table-column width="120" align="center">
176 178
             <template slot="header" slot-scope="scope">
177 179
               <span>出库数量<span style="color: red">*</span></span>
178 180
             </template>
@@ -180,20 +182,21 @@
180 182
               <el-form-item
181 183
                 :prop="'recordData.' + scope.$index + '.count'"
182 184
                 :rules="tableRules.count"
183
-                style="padding-top: 17px"
185
+                style="padding-top: 20px"
184 186
               >
185
-                <el-input
186
-                  placeholder="请输入出库数量"
187
-                  type="number"
188
-                  v-model="scope.row.count"
189
-                  style="width:100px"
190
-                ></el-input>
191
-                {{scope.row.packing_unit}}
187
+                <div style="display:flex;">
188
+                  <el-input
189
+                    placeholder="请输入出库数量"
190
+                    type="number"
191
+                    v-model="scope.row.count"
192
+                  ></el-input>
193
+                  {{scope.row.packing_unit}}
194
+                </div>
192 195
               </el-form-item>
193 196
               
194 197
             </template>
195 198
           </el-table-column>
196
-          <el-table-column width="100" align="center">
199
+          <el-table-column width="120" align="center">
197 200
             <template slot="header" slot-scope="scope">
198 201
               <span>出货价<span style="color: red">*</span></span>
199 202
             </template>
@@ -202,7 +205,7 @@
202 205
               <el-form-item
203 206
                 :prop="'recordData.' + scope.$index + '.last_price'"
204 207
                 :rules="tableRules.last_price"
205
-                style="padding-top: 17px"
208
+                style="padding-top: 20px"
206 209
               >
207 210
                 <el-input
208 211
                   placeholder="请输入出货价"
@@ -235,7 +238,7 @@
235 238
 
236 239
           
237 240
 
238
-          <el-table-column label="总价" width="100" align="center">
241
+          <el-table-column label="总价" width="80" align="center">
239 242
             <template slot-scope="scope">
240 243
               {{ calculate(scope.row.last_price * scope.row.count) }}
241 244
             </template>
@@ -254,9 +257,9 @@
254 257
             </template>
255 258
           </el-table-column> -->
256 259
           
257
-             <el-table-column label="生产厂家" width="250" align="center">
260
+          <el-table-column label="生产厂家" width="140" align="center">
258 261
             <template slot-scope="scope">
259
-               <el-select size="small" v-model="scope.row.manufacturer" filterable placeholder="请选择厂商">
262
+               <el-select v-model="scope.row.manufacturer" filterable placeholder="请选择厂商">
260 263
                 <el-option
261 264
                   v-for="(option, index) in manufacturerList"
262 265
                   :key="index"
@@ -268,7 +271,7 @@
268 271
           </el-table-column>
269 272
  
270 273
 
271
-          <el-table-column label="生产日期" width="250" align="center">
274
+          <el-table-column label="生产日期" width="180" align="center">
272 275
             <template slot-scope="scope">
273 276
               <el-date-picker
274 277
                 prefix-icon="el-icon-date"
@@ -281,7 +284,7 @@
281 284
               ></el-date-picker>
282 285
             </template>
283 286
           </el-table-column>
284
-          <el-table-column label="有效日期" width="250" align="center">
287
+          <el-table-column label="有效日期" width="180" align="center">
285 288
             <template slot-scope="scope">
286 289
               <el-date-picker
287 290
                 prefix-icon="el-icon-date"
@@ -297,7 +300,7 @@
297 300
         
298 301
         <el-table-column align="center" width="150" label="批准文号">
299 302
             <template slot-scope="scope">
300
-              <el-form-item>
303
+              <el-form-item style="padding-top: 20px">
301 304
                 <el-input
302 305
                   placeholder="请输入批准文号"
303 306
                   v-model="scope.row.number"
@@ -306,13 +309,13 @@
306 309
             </template>
307 310
           </el-table-column>
308 311
 
309
-          <el-table-column label="备注" width="80" align="center">
312
+          <el-table-column label="备注" width="120" align="center">
310 313
             <template slot-scope="scope">
311 314
               <el-input v-model="scope.row.remark"></el-input>
312 315
             </template>
313 316
           </el-table-column>
314 317
 
315
-          <el-table-column label="操作" align="center" width="150">
318
+          <el-table-column label="操作" align="center" width="150" fixed="right">
316 319
             <template slot-scope="scope">
317 320
               <el-tooltip
318 321
                 class="item"

+ 20 - 42
src/xt_pages/stock/drugs/query.vue Parādīt failu

@@ -41,7 +41,6 @@
41 41
             </el-option>
42 42
         </el-select>
43 43
          <el-date-picker
44
-            size="small"
45 44
             v-model="start_time"
46 45
             prefix-icon="el-icon-date"
47 46
             :editable="false"
@@ -54,7 +53,6 @@
54 53
             @change="startTimeChange"
55 54
            ></el-date-picker>-
56 55
             <el-date-picker
57
-              size="small"
58 56
               v-model="end_time"
59 57
               prefix-icon="el-icon-date"
60 58
               :editable="false"
@@ -67,7 +65,6 @@
67 65
               @change="endTimeChange"
68 66
           ></el-date-picker>
69 67
           <el-input
70
-            size="small"
71 68
             style="width: 200px;"
72 69
             class="filter-item"
73 70
             v-model.trim="keywords"
@@ -83,41 +80,38 @@
83 80
           </el-button>
84 81
       </div>
85 82
       
86
-       <el-table
87
-        :data="tableList"
88
-        border
89
-        style="width: 100%">
83
+       <el-table :data="tableList" border style="width: 100%">
90 84
         <!-- <el-table-column prop="date" label="药品编号" width="180">
91 85
            <template  slot-scope="scope">
92 86
               
93 87
            </template>
94 88
         </el-table-column> -->
95
-        <el-table-column prop="drug_type" label="药品类型" width="180">
89
+        <el-table-column prop="drug_type" label="药品类型" width="180" align="center">
96 90
            <template slot-scope="scope">
97 91
              {{getDrugType(scope.row.drug_type)}}
98 92
            </template>
99 93
         </el-table-column>
100
-        <el-table-column prop="drug_name" label="药品名称">
94
+        <el-table-column prop="drug_name" label="药品名称" align="center">
101 95
            <template slot-scope="scope">
102 96
              {{scope.row.drug_name}}
103 97
            </template>
104 98
         </el-table-column>
105
-        <el-table-column prop="drug_name" label="规格&&单位">
99
+        <el-table-column prop="drug_name" label="规格&&单位" align="center">
106 100
            <template slot-scope="scope">
107 101
              {{scope.row.dose + scope.row.dose_unit +"*"+scope.row.min_number+scope.row.min_unit+"/"+scope.row.max_unit}}
108 102
            </template>
109 103
         </el-table-column>
110
-         <el-table-column prop="drug_name" label="进货单价">
104
+         <el-table-column prop="drug_name" label="进货单价" align="center">
111 105
            <template slot-scope="scope">
112 106
              {{scope.row.last_price}}
113 107
            </template>
114 108
         </el-table-column>
115
-         <el-table-column prop="drug_name" label="厂家">
109
+         <el-table-column prop="drug_name" label="厂家" align="center">
116 110
            <template slot-scope="scope">
117 111
              {{getManufacturerList(scope.row.manufacturer)}}
118 112
            </template>
119 113
         </el-table-column>
120
-        <el-table-column prop="drug_name" label="剩余库存量">
114
+        <el-table-column prop="drug_name" label="剩余库存量" align="center">
121 115
            <template slot-scope="scope">
122 116
             <span v-if="scope.row.stock_max_number!=''">
123 117
               {{scope.row.stock_max_number}}{{scope.row.max_unit}}
@@ -127,36 +121,20 @@
127 121
             </span> 
128 122
            </template>
129 123
         </el-table-column>
130
-        <el-table-column prop="drug_name" label="操作">
124
+        <el-table-column prop="drug_name" label="操作" align="center">
131 125
           <template slot-scope="scope">
132
-            <el-tooltip
133
-              class="item"
134
-              effect="dark"
135
-              content="库存流水"
136
-              placement="top"
137
-            >
138
-              <el-button
139
-                size="small"
140
-                type="primary"
141
-                icon="el-icon-edit-outline"
142
-                @click="handleDetail(scope.row.drug_id)"
143
-              >
144
-              </el-button>
145
-            </el-tooltip>
146
-            <el-tooltip
147
-              class="item"
148
-              effect="dark"
149
-              content="批次"
150
-              placement="top"
151
-            >
152
-              <el-button
153
-                size="small"
154
-                type="primary"
155
-                icon="el-icon-edit-outline"
156
-                @click="handleBatch(scope.row.drug_id)"
157
-              >
158
-              </el-button>
159
-            </el-tooltip>
126
+            <el-button
127
+              size="small"
128
+              type="primary"
129
+              @click="handleDetail(scope.row.drug_id)"
130
+            >库存流水
131
+            </el-button>
132
+            <el-button
133
+              size="small"
134
+              type="primary"
135
+              @click="handleBatch(scope.row.drug_id)"
136
+            >批次
137
+            </el-button>
160 138
           </template>
161 139
         </el-table-column>
162 140
        </el-table>

+ 14 - 14
src/xt_pages/stock/stockInOrderAdd.vue Parādīt failu

@@ -81,26 +81,26 @@
81 81
                  </el-autocomplete>
82 82
             </template>
83 83
           </el-table-column>
84
-          <el-table-column align="center" width="200">
84
+          <el-table-column align="center" width="140">
85 85
             
86 86
             <template slot="header" slot-scope="scope">
87 87
               <span>耗材类型<span style="color: red">*</span></span>
88 88
             </template>
89 89
      
90 90
             <template slot-scope="scope">
91
-              <el-form-item style="padding-top: 15px;margin-left: 10px;margin-right: 10px">
91
+              <el-form-item style="padding-top: 20px;">
92 92
                 <el-input placeholder="请输入耗材类型" v-model="scope.row.good_type_id" :value="typeName(scope.row.good_type_id)"></el-input>
93 93
               </el-form-item>
94 94
             </template>
95 95
           </el-table-column>
96
-          <el-table-column align="center" width="200">
96
+          <el-table-column align="center" width="140">
97 97
             
98 98
             <template slot="header" slot-scope="scope">
99 99
               <span>规格&单位<span style="color: red">*</span></span>
100 100
             </template>
101 101
             <template slot-scope="scope">
102 102
 
103
-              <el-form-item style="padding-top: 15px">
103
+              <el-form-item style="padding-top: 20px">
104 104
                 <el-input placeholder="请输入规格名称" v-model="scope.row.name"></el-input>
105 105
               </el-form-item>
106 106
 
@@ -112,7 +112,7 @@
112 112
               <span>批号</span>
113 113
             </template>
114 114
             <template slot-scope="scope">
115
-              <el-form-item style="padding-top: 17px">
115
+              <el-form-item style="padding-top: 20px">
116 116
                 <el-input placeholder="请输入批号" v-model="scope.row.number"></el-input>
117 117
               </el-form-item>
118 118
 
@@ -120,28 +120,28 @@
120 120
           </el-table-column>
121 121
 
122 122
 
123
-          <el-table-column align="center" width="180">
123
+          <el-table-column align="center" width="120">
124 124
             <template slot="header" slot-scope="scope">
125 125
               <span>入库数量<span style="color: red">*</span></span>
126 126
             </template>
127 127
             <template slot-scope="scope">
128 128
               <el-form-item :prop="'recordData.' + scope.$index + '.warehousing_count'"
129
-                            :rules='tableRules.warehousing_count' style="padding-top: 17px">
130
-                <el-input placeholder="请输入入库数量" type="number" v-model="scope.row.warehousing_count" style="width:120px"></el-input>
129
+                            :rules='tableRules.warehousing_count' style="padding-top: 20px">
130
+                <el-input placeholder="请输入入库数量" type="number" v-model="scope.row.warehousing_count"></el-input>
131 131
                   {{scope.row.min_unit}}
132 132
               </el-form-item>
133 133
             
134 134
             </template>
135 135
           </el-table-column>
136 136
 
137
-          <el-table-column align="center" width="150">
137
+          <el-table-column align="center" width="120">
138 138
             <template slot="header" slot-scope="scope">
139 139
               <span>进货单价<span style="color: red">*</span></span>
140 140
             </template>
141 141
             <template slot-scope="scope">
142 142
             
143 143
               <el-form-item :prop="'recordData.' + scope.$index + '.price'" :rules='tableRules.price'
144
-                            style="padding-top: 17px">
144
+                            style="padding-top: 20px">
145 145
                 <el-input placeholder="请输入单价" type="number" v-model="scope.row.price"></el-input>
146 146
               </el-form-item>
147 147
 
@@ -149,7 +149,7 @@
149 149
             </template>
150 150
           </el-table-column>
151 151
 
152
-          <el-table-column label="总价" align="center" width="150">
152
+          <el-table-column label="总价" align="center" width="80">
153 153
             <template slot-scope="scope">
154 154
               {{calculate(scope.row.price*scope.row.warehousing_count)}}
155 155
             </template>
@@ -168,16 +168,16 @@
168 168
             </template>
169 169
           </el-table-column>
170 170
         
171
-          <el-table-column label="生产日期" align="center" width="250">
171
+          <el-table-column label="生产日期" align="center" width="180">
172 172
             <template slot-scope="scope">
173
-              <el-date-picker prefix-icon="el-icon-date" style="width: 145px" v-model="scope.row.product_date"
173
+              <el-date-picker prefix-icon="el-icon-date" v-model="scope.row.product_date" style="width: 145px"
174 174
                               type="date" placeholder="选择日期时间" format="yyyy-MM-dd"
175 175
                               value-format="yyyy-MM-dd">
176 176
               </el-date-picker>
177 177
 
178 178
             </template>
179 179
           </el-table-column>
180
-          <el-table-column label="有效日期" align="center" width="250">
180
+          <el-table-column label="有效日期" align="center" width="180">
181 181
             <template slot-scope="scope">
182 182
               <el-date-picker prefix-icon="el-icon-date" style="width: 145px" v-model="scope.row.expiry_date"
183 183
                               type="date" placeholder="选择日期时间" format="yyyy-MM-dd"

+ 15 - 14
src/xt_pages/stock/stockInOrderEdit.vue Parādīt failu

@@ -40,7 +40,7 @@
40 40
           v-model="warehousing_time"
41 41
           prefix-icon="el-icon-date"
42 42
           :editable="false"
43
-          style="width: 196px;"
43
+          style="width: 200px;"
44 44
           type="date"
45 45
           placeholder="选择日期时间"
46 46
           align="right"
@@ -57,6 +57,7 @@
57 57
           v-model="form.dealer"
58 58
           clearable
59 59
           placeholder="请选择经销商"
60
+          style="width: 200px;"
60 61
         >
61 62
           <el-option
62 63
             v-for="(option, index) in dealer"
@@ -76,6 +77,7 @@
76 77
           v-model="form.manufacturer"
77 78
           clearable
78 79
           placeholder="请选择厂商"
80
+          style="width: 200px;"
79 81
         >
80 82
           <el-option
81 83
             v-for="(option, index) in manufacturer"
@@ -120,13 +122,13 @@
120 122
                  </el-autocomplete>
121 123
             </template>
122 124
           </el-table-column>
123
-          <el-table-column align="center" width="200">
125
+          <el-table-column align="center" width="140">
124 126
             <template slot="header" slot-scope="scope">
125 127
               <span>耗材类型<span style="color: red">*</span></span>
126 128
             </template>
127 129
 
128 130
             <template slot-scope="scope">
129
-              <el-form-item style="padding-top: 15px">
131
+              <el-form-item style="padding-top: 20px">
130 132
                 <el-input
131 133
                   placeholder="请输入耗材类型"
132 134
                   v-model="scope.row.good_type_id"
@@ -135,14 +137,14 @@
135 137
               </el-form-item>
136 138
             </template>
137 139
           </el-table-column>
138
-          <el-table-column align="center" width="200">
140
+          <el-table-column align="center" width="140">
139 141
             
140 142
             <template slot="header" slot-scope="scope">
141 143
               <span>规格&单位<span style="color: red">*</span></span>
142 144
             </template>
143 145
             <template slot-scope="scope">
144 146
 
145
-              <el-form-item style="padding-top: 15px">
147
+              <el-form-item style="padding-top: 20px">
146 148
                 <el-input placeholder="请输入规格名称" v-model="scope.row.name"></el-input>
147 149
               </el-form-item>
148 150
 
@@ -164,7 +166,7 @@
164 166
             </template>
165 167
           </el-table-column> -->
166 168
 
167
-          <el-table-column align="center" width="150">
169
+          <el-table-column align="center" width="120">
168 170
             <template slot="header" slot-scope="scope">
169 171
               <span>单价<span style="color: red">*</span></span>
170 172
             </template>
@@ -173,7 +175,7 @@
173 175
               <el-form-item
174 176
                 :prop="'recordData.' + scope.$index + '.price'"
175 177
                 :rules="tableRules.price"
176
-                style="padding-top: 17px"
178
+                style="padding-top: 20px"
177 179
               >
178 180
                 <el-input
179 181
                   placeholder="请输入单价"
@@ -184,7 +186,7 @@
184 186
             </template>
185 187
           </el-table-column>
186 188
 
187
-          <el-table-column align="center" width="180">
189
+          <el-table-column align="center" width="120">
188 190
             <template slot="header" slot-scope="scope">
189 191
               <span>入库数量<span style="color: red">*</span></span>
190 192
             </template>
@@ -193,19 +195,18 @@
193 195
               <el-form-item
194 196
                 :prop="'recordData.' + scope.$index + '.warehousing_count'"
195 197
                 :rules="tableRules.warehousing_count"
196
-                style="padding-top: 17px"
198
+                style="padding-top: 20px"
197 199
               >
198 200
                 <el-input
199 201
                   placeholder="请输入入库数量"
200 202
                   type="number"
201 203
                   v-model="scope.row.warehousing_count"
202
-                  style="width:120px"
203 204
                 ></el-input>
204 205
                 {{scope.row.min_unit}}
205 206
               </el-form-item>
206 207
             </template>
207 208
           </el-table-column>
208
-          <el-table-column label="总价" align="center" width="150">
209
+          <el-table-column label="总价" align="center" width="80">
209 210
             <template slot-scope="scope">
210 211
               {{ calculate(scope.row.price * scope.row.warehousing_count) }}
211 212
             </template>
@@ -216,7 +217,7 @@
216 217
               <span>批号</span>
217 218
             </template>
218 219
             <template slot-scope="scope">
219
-              <el-form-item>
220
+              <el-form-item style="padding-top: 20px">
220 221
                 <el-input
221 222
                   placeholder="请输入批号"
222 223
                   v-model="scope.row.number"
@@ -225,7 +226,7 @@
225 226
             </template>
226 227
           </el-table-column>
227 228
 
228
-          <el-table-column label="生产日期" width="250" align="center">
229
+          <el-table-column label="生产日期" width="180" align="center">
229 230
             <template slot-scope="scope">
230 231
               <!--{{scope.row.product_date | parseTime("{y}-{m}-{d}")}}-->
231 232
               <el-date-picker
@@ -239,7 +240,7 @@
239 240
               ></el-date-picker>
240 241
             </template>
241 242
           </el-table-column>
242
-          <el-table-column label="有效日期" width="250" align="center">
243
+          <el-table-column label="有效日期" width="180" align="center">
243 244
             <template slot-scope="scope">
244 245
               <!--{{ scope.row.expiry_date | parseTime("{y}-{m}-{d}")}}-->
245 246
               <el-date-picker

+ 12 - 10
src/xt_pages/stock/stockOutOrderAdd.vue Parādīt failu

@@ -45,7 +45,7 @@
45 45
           v-model="warehouse_out_time"
46 46
           prefix-icon="el-icon-date"
47 47
           :editable="false"
48
-          style="width: 196px;"
48
+          style="width: 200px;"
49 49
           type="date"
50 50
           placeholder="选择日期时间"
51 51
           align="right"
@@ -62,6 +62,7 @@
62 62
           filterable
63 63
           placeholder="请选择经销商"
64 64
           @change="changeDealer"
65
+          style="width: 200px;"
65 66
         >
66 67
           <el-option
67 68
             v-for="(option, index) in dealer"
@@ -81,6 +82,7 @@
81 82
           filterable
82 83
           placeholder="请选择厂商"
83 84
           @change="changeManufacturer"
85
+          style="width: 200px;"
84 86
         >
85 87
           <el-option
86 88
             v-for="(option, index) in manufacturer"
@@ -101,13 +103,13 @@
101 103
           max-height="450"
102 104
           :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }"
103 105
         >
104
-         <el-table-column width="150" align="center">
106
+         <el-table-column width="200" align="center">
105 107
             <template slot="header" slot-scope="scope">
106 108
               <span>耗材名称</span>
107 109
             </template>
108 110
 
109 111
             <template slot-scope="scope">
110
-              <el-form-item style="padding-top: 15px">
112
+              <el-form-item style="padding-top: 20px">
111 113
                 <el-autocomplete
112 114
                     class="checkSearch"
113 115
                     popper-class="my-autocomplete"
@@ -127,7 +129,7 @@
127 129
               </el-form-item>
128 130
             </template>
129 131
           </el-table-column>
130
-          <el-table-column  width="150" align="center">
132
+          <el-table-column  width="140" align="center">
131 133
             <template slot="header" slot-scope="scope">
132 134
               <span>耗材类型</span>
133 135
             </template>
@@ -135,7 +137,7 @@
135 137
             <template slot-scope="scope">
136 138
              
137 139
 
138
-              <el-form-item style="padding-top: 15px">
140
+              <el-form-item style="padding-top: 20px">
139 141
                 <el-input
140 142
                   placeholder="请输入商品类型"
141 143
                   v-model="scope.row.good_type_id"
@@ -146,12 +148,12 @@
146 148
           </el-table-column>
147 149
       
148 150
           
149
-          <el-table-column width="150" align="center">
151
+          <el-table-column width="140" align="center">
150 152
             <template slot="header" slot-scope="scope">
151 153
               <span>规格&&单位<span style="color: red">*</span></span>
152 154
             </template>
153 155
             <template slot-scope="scope">
154
-              <el-form-item style="padding-top: 15px">
156
+              <el-form-item style="padding-top: 20px">
155 157
                 <el-input v-model="scope.row.name"></el-input>
156 158
               </el-form-item>
157 159
             </template>
@@ -193,7 +195,7 @@
193 195
               <el-form-item
194 196
                 :prop="'recordData.' + scope.$index + '.price'"
195 197
                 :rules="tableRules.price"
196
-                style="padding-top: 17px"
198
+                style="padding-top: 20px"
197 199
               >
198 200
                 <el-input
199 201
                   placeholder="请输入单价"
@@ -206,7 +208,7 @@
206 208
 
207 209
 
208 210
 
209
-          <el-table-column label="总价"  width="150" align="center">
211
+          <el-table-column label="总价"  width="80" align="center">
210 212
             <template slot-scope="scope">
211 213
               {{ calculate(scope.row.price * scope.row.count) }}
212 214
             </template>
@@ -260,7 +262,7 @@
260 262
             </template>
261 263
           </el-table-column>
262 264
 
263
-          <el-table-column label="操作" align="center" min-width="20" width="150">
265
+          <el-table-column label="操作" align="center" min-width="150">
264 266
             <template slot-scope="scope">
265 267
               <el-tooltip
266 268
                 class="item"

+ 9 - 10
src/xt_pages/stock/stockOutOrderEdit.vue Parādīt failu

@@ -26,7 +26,7 @@
26 26
       <div class="cell clearfix">
27 27
         <label class="title"><span class="name">出库时间</span> : </label>
28 28
         <el-date-picker size="small" v-model="warehouse_out_time" prefix-icon="el-icon-date" :editable="false"
29
-                        style="width: 196px;"
29
+                        style="width: 200px;"
30 30
                         type="date" placeholder="选择日期时间" align="right" format="yyyy-MM-dd"
31 31
                         value-format="yyyy-MM-dd"></el-date-picker>
32 32
       </div>
@@ -34,7 +34,7 @@
34 34
 
35 35
       <div class="cell clearfix">
36 36
         <label class="title"><span class="name">经销商</span> : </label>
37
-        <el-select size="small" v-model="form.dealer" clearable placeholder="请选择经销商" @change="changeDealer">
37
+        <el-select size="small" v-model="form.dealer" clearable placeholder="请选择经销商" @change="changeDealer" style="width: 200px;">
38 38
           <el-option
39 39
             v-for="(option, index) in dealer"
40 40
             :key="index"
@@ -47,8 +47,7 @@
47 47
 
48 48
       <div class="cell clearfix">
49 49
         <label class="title"><span class="name">厂商</span> : </label>
50
-
51
-        <el-select size="small" v-model="form.manufacturer" clearable placeholder="请选择厂商" @change="changeManufacturer">
50
+        <el-select size="small" v-model="form.manufacturer" clearable placeholder="请选择厂商" @change="changeManufacturer" style="width: 200px;">
52 51
           <el-option
53 52
             v-for="(option, index) in manufacturer"
54 53
             :key="index"
@@ -64,13 +63,13 @@
64 63
         >
65 64
 
66 65
        
67
-          <el-table-column width="150" align="center">
66
+          <el-table-column width="200" align="center">
68 67
               <template slot="header" slot-scope="scope">
69 68
                 <span>耗材名称</span>
70 69
               </template>
71 70
 
72 71
               <template slot-scope="scope">
73
-                <el-form-item style="padding-top: 15px">
72
+                <el-form-item style="padding-top: 20px">
74 73
                   <el-autocomplete
75 74
                       class="checkSearch"
76 75
                       popper-class="my-autocomplete"
@@ -90,13 +89,13 @@
90 89
                 </el-form-item>
91 90
               </template>
92 91
             </el-table-column>
93
-           <el-table-column width="150" align="center">
92
+           <el-table-column width="140" align="center">
94 93
             <template slot="header" slot-scope="scope">
95 94
               <span>耗材类型<span style="color: red">*</span></span>
96 95
             </template>
97 96
 
98 97
             <template slot-scope="scope">
99
-              <el-form-item style="padding-top: 15px">
98
+              <el-form-item style="padding-top: 20px">
100 99
                 <el-input
101 100
                   placeholder="请输入商品类型"
102 101
                   v-model="scope.row.good_type_id"
@@ -107,12 +106,12 @@
107 106
           </el-table-column>
108 107
           
109 108
              
110
-          <el-table-column width="150" align="center">
109
+          <el-table-column width="140" align="center">
111 110
             <template slot="header" slot-scope="scope">
112 111
               <span>规格&&单位<span style="color: red">*</span></span>
113 112
             </template>
114 113
             <template slot-scope="scope">
115
-              <el-form-item style="padding-top: 15px">
114
+              <el-form-item style="padding-top: 20px">
116 115
                 <el-input v-model="scope.row.name"></el-input>
117 116
               </el-form-item>
118 117
             </template>

+ 4 - 21
src/xt_pages/stock/stockQuery.vue Parādīt failu

@@ -185,47 +185,30 @@
185 185
             {{scope.row.price}}
186 186
           </template>
187 187
         </el-table-column>
188
-        <el-table-column label="厂商">
188
+        <el-table-column label="厂商" align="center">
189 189
           <template slot-scope="scope">
190 190
            {{getManufacture(scope.row.manufacturer)}}
191 191
           </template>
192 192
         </el-table-column>
193
-       <el-table-column label="剩余库存量">
193
+       <el-table-column label="剩余库存量" align="center">
194 194
          <template slot-scope="scope">
195 195
           <span v-if="scope.row.stock_count!=0">{{scope.row.stock_count}}</span>
196 196
          </template>
197 197
        </el-table-column>
198 198
        <el-table-column label="操作" align="center" width="260px">
199 199
           <template slot-scope="scope">
200
-            <el-tooltip
201
-              class="item"
202
-              effect="dark"
203
-              content="库存流水"
204
-              placement="top"
205
-            >
206 200
               <el-button
207 201
                 size="small"
208 202
                 type="primary"
209
-                icon="el-icon-edit-outline"
210 203
                 @click="toClick(scope.row)"
211
-              >
204
+              >库存流水
212 205
               </el-button>
213
-            </el-tooltip>
214
-
215
-            <el-tooltip
216
-              class="item"
217
-              type="primary"
218
-              content="批次"
219
-              placement="top"
220
-            >
221 206
               <el-button
222 207
                 size="small"
223 208
                 type="primary"
224
-                icon="el-icon-edit-outline"
225 209
                 @click="toClickOne(scope.row)"
226
-              >
210
+              >批次
227 211
               </el-button>
228
-            </el-tooltip>
229 212
           </template>
230 213
         </el-table-column>
231 214
       </el-table>