0.0.2版本上线
This commit is contained in:
@@ -36,11 +36,12 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="jsx">
|
||||
// 本组件位置:1.在右键轮次问题单 2.用例界面关联问题单
|
||||
import { ref } from "vue"
|
||||
import problemApi from "@/api/project/problem"
|
||||
import problemSingleApi from "@/api/project/singleProblem"
|
||||
import { Message, Notification } from "@arco-design/web-vue"
|
||||
import { useRoute, useRouter } from "vue-router"
|
||||
import { Notification } from "@arco-design/web-vue"
|
||||
import { useRoute } from "vue-router"
|
||||
import CaseModal from "./CaseModal.vue"
|
||||
import useTreeStore from "@/store/project/treeData"
|
||||
const route = useRoute()
|
||||
@@ -455,7 +456,6 @@ const columns = ref([
|
||||
hide: true,
|
||||
dataIndex: "designerPerson",
|
||||
formType: "input",
|
||||
commonRules: [{ required: true, message: "开发人员必填" }]
|
||||
},
|
||||
{
|
||||
title: "开发方日期",
|
||||
@@ -468,7 +468,6 @@ const columns = ref([
|
||||
hide: true,
|
||||
dataIndex: "verifyPerson",
|
||||
formType: "select",
|
||||
commonRules: [{ required: true, message: "回归人" }],
|
||||
dict: {
|
||||
url: "system/user/list",
|
||||
params: { project_id: route.query.id },
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
// 本组件是在:测试项页面 -> 显示用例关联的问题单
|
||||
import { ref, reactive } from "vue"
|
||||
import { IProps } from "./problemFormTypes"
|
||||
import { useRoute } from "vue-router"
|
||||
@@ -178,13 +179,11 @@ const columnsOptions = reactive([
|
||||
title: "开发人员",
|
||||
dataIndex: "designerPerson",
|
||||
formType: "input",
|
||||
rules: [{ required: true, message: "开发人员必填" }]
|
||||
},
|
||||
{
|
||||
title: "回归人员",
|
||||
dataIndex: "verifyPerson",
|
||||
formType: "select",
|
||||
rules: [{ required: true, message: "回归人" }],
|
||||
dict: {
|
||||
url: "system/user/list",
|
||||
translation: true,
|
||||
|
||||
@@ -286,7 +286,6 @@ const crudColumns = ref([
|
||||
props: { label: "title", value: "key" }
|
||||
},
|
||||
customRender: ({ record }) => {
|
||||
console.log(record.closeMethod)
|
||||
// 判断是否具有1:修改文档
|
||||
if (!record.closeMethod.hasOwnProperty("0")) {
|
||||
if (!record.closeMethod.hasOwnProperty("1")) {
|
||||
|
||||
@@ -42,7 +42,6 @@ const handleBeforeCancel = () => {
|
||||
if (!beforeFormStep) {
|
||||
return
|
||||
}
|
||||
console.log(beforeFormStep)
|
||||
crudRef.value.getFormData().testStep
|
||||
const iuEqualValue = isEqual(crudRef.value.getFormData().testStep, beforeFormStep)
|
||||
!iuEqualValue &&
|
||||
|
||||
Reference in New Issue
Block a user