apply-clients 3.3.85 → 3.3.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -80,6 +80,12 @@
|
|
|
80
80
|
v-on:keyup.enter="$parent.$parent.search()"
|
|
81
81
|
condition="ma.f_material_number = '{}'">
|
|
82
82
|
</div>
|
|
83
|
+
<div class="form-group col-sm-3">
|
|
84
|
+
<label class="font_normal_body">材料审核:</label>
|
|
85
|
+
<input type="text" style="width: 60%" class="input_search" placeholder='材料审核' v-model="model.person"
|
|
86
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
87
|
+
condition="ac.person = '{}'">
|
|
88
|
+
</div>
|
|
83
89
|
<div class="form-group col-sm-3">
|
|
84
90
|
<label for="startDate" class="font_normal_body">开始时间:</label>
|
|
85
91
|
<datepicker id="startDate" placeholder="开始日期"
|
|
@@ -117,6 +123,7 @@
|
|
|
117
123
|
<th>材料单位</th>
|
|
118
124
|
<th>材料数量</th>
|
|
119
125
|
<th>操作人</th>
|
|
126
|
+
<th>材料审核</th>
|
|
120
127
|
<th>操作时间</th>
|
|
121
128
|
</tr>
|
|
122
129
|
</template>
|
|
@@ -149,6 +156,9 @@
|
|
|
149
156
|
<td style="text-align: center;">
|
|
150
157
|
<nobr><font>{{row.f_operator}}</font></nobr>
|
|
151
158
|
</td>
|
|
159
|
+
<td style="text-align: center;">
|
|
160
|
+
<nobr><font>{{row.person}}</font></nobr>
|
|
161
|
+
</td>
|
|
152
162
|
<td style="text-align: center;">
|
|
153
163
|
<nobr><font>{{row.f_operation_date}}</font></nobr>
|
|
154
164
|
</td>
|
|
@@ -196,6 +206,7 @@ export default {
|
|
|
196
206
|
'f_material_style': '材料型号',
|
|
197
207
|
'f_material_unit': '材料单位',
|
|
198
208
|
'f_material_number': '材料数量',
|
|
209
|
+
'person': '材料审核',
|
|
199
210
|
'f_operator': '操作人',
|
|
200
211
|
'f_operation_date': '操作时间'
|
|
201
212
|
}
|