Browse Source

style: 细节调整

deliver
wally 4 years ago
parent
commit
ebf678fa4a
  1. 1
      CHANGELOG.md
  2. 5
      plugins/p-deliver/p-deliver.vue

1
CHANGELOG.md

@ -35,6 +35,7 @@
--|--|--
- | calender格式及细节调整 | [db9602b](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/db9602b)
- | 交付物相关细节调整 | [87ae00d](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/87ae00d)
- | 细节调整 | [759ef52](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/759ef52)
- | 细节调整 | [bdd5f87](https://101.201.226.163:50022/TALL/TALL-MUI-4/commits/bdd5f87)

5
plugins/p-deliver/p-deliver.vue

@ -93,6 +93,7 @@ const deliver = ref();
//
const submitState = computed(() => !linkValue.value);
const projectId = computed(() => store.getters['project/projectId']);
//
const checkers = computed(() => store.state.role.members);
@ -140,7 +141,7 @@ function submit() {
checkerList.push(item.memberId);
});
const param = {
projectId: store.state.project.project.id,
projectId: projectId.value,
deliverId: deliver.value.deliverId,
fileList: [linkValue.value],
checkerList,
@ -212,7 +213,7 @@ async function confirmEditDeliverName() {
}
try {
const param = {
projectId: store.state.project.project.id,
projectId: projectId.value,
taskId: props.task.id,
deliverName: newInputRef.value,
};

Loading…
Cancel
Save