diff --git a/src/views/pm/utask_form.vue b/src/views/pm/utask_form.vue
index 2fa944c8..c734fff9 100644
--- a/src/views/pm/utask_form.vue
+++ b/src/views/pm/utask_form.vue
@@ -14,6 +14,16 @@
:rules="rules"
label-width="120px"
>
+
+
+
+
+
+
{
+ that.orderList = res;
+ });
+ },
routeChange(item) {
console.log(item);
if (this.type == "routepack") {
diff --git a/src/views/sam/customer_form.vue b/src/views/sam/customer_form.vue
index 4a212de7..7ef41590 100644
--- a/src/views/sam/customer_form.vue
+++ b/src/views/sam/customer_form.vue
@@ -36,8 +36,8 @@
-
-
+
+
diff --git a/src/views/sys/post.vue b/src/views/sys/post.vue
index cc08c9b2..ad58f0b0 100644
--- a/src/views/sys/post.vue
+++ b/src/views/sys/post.vue
@@ -196,9 +196,14 @@ export default {
});
},
table_del(row) {
- this.$API.system.post.delete.req(row.id).then(res=>{
- this.$refs.table.refresh()
- })
+ this.$confirm(`确定删除选中的岗位吗?`, "提示", {
+ type: "warning",
+ }).then(() => {
+ this.$API.system.post.delete.req(row.id).then((res) => {
+ this.$refs.table.refresh()
+ this.$message.success("操作成功");
+ }).catch(() => {});
+ });
},
//批量删除
async batch_del() {