|
@@ -447,6 +447,7 @@ const config = computed(() => {
|
|
|
attrs: {
|
|
|
label: "创建时间",
|
|
|
prop: "createTime",
|
|
|
+ width: 155,
|
|
|
},
|
|
|
},
|
|
|
|
|
@@ -454,7 +455,8 @@ const config = computed(() => {
|
|
|
attrs: {
|
|
|
label: "操作",
|
|
|
width: "200",
|
|
|
- align: "right",
|
|
|
+ align: "center",
|
|
|
+ fixed: "right",
|
|
|
},
|
|
|
// 渲染 el-button,一般用在最后一列。
|
|
|
renderHTML(row) {
|
|
@@ -481,7 +483,7 @@ const config = computed(() => {
|
|
|
editStatus(row);
|
|
|
},
|
|
|
},
|
|
|
- row.businessType == 1
|
|
|
+ row.businessType == 1 && row.arrivalStatus == 0
|
|
|
? {
|
|
|
attrs: {
|
|
|
label: "到货通知",
|
|
@@ -672,6 +674,7 @@ const submitForm = () => {
|
|
|
type: "success",
|
|
|
});
|
|
|
dialogVisible.value = false;
|
|
|
+ submitLoading.value = false;
|
|
|
loading.value = false;
|
|
|
getList();
|
|
|
},
|
|
@@ -743,6 +746,7 @@ const getLogisticsData = (row) => {
|
|
|
}));
|
|
|
});
|
|
|
};
|
|
|
+
|
|
|
const handleClickCode = (row) => {
|
|
|
let id = row.id;
|
|
|
proxy.post("/logisticsInfos/getLogistics", { id }).then((res) => {
|