|
@@ -180,7 +180,7 @@ export default {
|
180
|
180
|
page: 1,
|
181
|
181
|
limit: 10,
|
182
|
182
|
|
183
|
|
- type_name: "请选择",
|
|
183
|
+ type_name: "请选择供应商类别",
|
184
|
184
|
crumbs: [
|
185
|
185
|
{ path: false, name: "采购管理" },
|
186
|
186
|
{ path: "/supply/good/order/query", name: "供应商管理" },
|
|
@@ -230,6 +230,11 @@ export default {
|
230
|
230
|
},
|
231
|
231
|
|
232
|
232
|
toDelete(val, index) {
|
|
233
|
+ this.$confirm('确认删除吗?','删除',{
|
|
234
|
+ confirmButtonText: '确 定',
|
|
235
|
+ concelmButtonText: '取 消',
|
|
236
|
+ type: 'warning'
|
|
237
|
+ }).then(() => {
|
233
|
238
|
delsupplys(val.ID)
|
234
|
239
|
.then((res) => {
|
235
|
240
|
if (res.data.code == 0) {
|
|
@@ -242,6 +247,7 @@ export default {
|
242
|
247
|
.catch((err) => {
|
243
|
248
|
console.log(err);
|
244
|
249
|
});
|
|
250
|
+ }).catch(() => {})
|
245
|
251
|
},
|
246
|
252
|
|
247
|
253
|
toAdd(val) {
|