Merge pull request 'fix : 修改所属公司选择框bug' (#342) from dj into master
Reviewed-on: http://git.feashow.cn/clay/mosr-web/pulls/342
This commit is contained in:
@@ -12,17 +12,17 @@
|
|||||||
</el-input>
|
</el-input>
|
||||||
<el-button v-if="isChooseAll" @click="chooseAll">全选</el-button>
|
<el-button v-if="isChooseAll" @click="chooseAll">全选</el-button>
|
||||||
<el-button v-else @click="cancelAll">不全选</el-button>
|
<el-button v-else @click="cancelAll">不全选</el-button>
|
||||||
<el-checkbox-group v-model="checkBtn" @change="handleChange">
|
<!-- <el-checkbox-group v-model="checkBtn" @change="handleChange">-->
|
||||||
<el-checkbox label="全选" value="1" />
|
<!-- <el-checkbox label="全选" value="1" />-->
|
||||||
<el-checkbox label="Option B" value="Value B" />
|
<!-- <el-checkbox label="Option B" value="Value B" />-->
|
||||||
<el-checkbox label="Option C" value="Value C" />
|
<!-- <el-checkbox label="Option C" value="Value C" />-->
|
||||||
<el-checkbox label="disabled" value="Value disabled" disabled />
|
<!-- <el-checkbox label="disabled" value="Value disabled" disabled />-->
|
||||||
<el-checkbox
|
<!-- <el-checkbox-->
|
||||||
label="selected and disabled"
|
<!-- label="selected and disabled"-->
|
||||||
value="Value selected and disabled"
|
<!-- value="Value selected and disabled"-->
|
||||||
disabled
|
<!-- disabled-->
|
||||||
/>
|
<!-- />-->
|
||||||
</el-checkbox-group>
|
<!-- </el-checkbox-group>-->
|
||||||
<!-- 人员选择 -->
|
<!-- 人员选择 -->
|
||||||
<el-empty :image-size="100" description="似乎没有数据" v-show="dataList.length === 0"/>
|
<el-empty :image-size="100" description="似乎没有数据" v-show="dataList.length === 0"/>
|
||||||
<el-scrollbar style="height:87%;">
|
<el-scrollbar style="height:87%;">
|
||||||
|
|||||||
@@ -96,6 +96,7 @@ import {downloadFile} from "@/api/project-demand";
|
|||||||
const changeDiagram = ref(false)
|
const changeDiagram = ref(false)
|
||||||
const emit = defineEmits(['getInfo', "update:formData"])
|
const emit = defineEmits(['getInfo', "update:formData"])
|
||||||
const form = ref()
|
const form = ref()
|
||||||
|
const router = useRouter()
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
formData: {
|
formData: {
|
||||||
@@ -194,6 +195,16 @@ const fileTable = reactive({
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
const handleView=(row)=>{
|
||||||
|
router.push({
|
||||||
|
name: 'Implementation/detail',
|
||||||
|
query: {
|
||||||
|
id: row.requirementId,
|
||||||
|
projectId: row.projectId,
|
||||||
|
// step: '40'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
const handleDownload = (row) => {
|
const handleDownload = (row) => {
|
||||||
downloadFile(row.fileId).then(res => {
|
downloadFile(row.fileId).then(res => {
|
||||||
const blob = new Blob([res])
|
const blob = new Blob([res])
|
||||||
|
|||||||
Reference in New Issue
Block a user