Commit ebadc72c authored by jiaxu.yan's avatar jiaxu.yan

fix: 71073,71226

parent da79c580
...@@ -628,7 +628,7 @@ ...@@ -628,7 +628,7 @@
margin-bottom: 5px; margin-bottom: 5px;
margin-right: 5px; margin-right: 5px;
width: 152px; width: 152px;
border-radius: 17px; // border-radius: 17px;
} }
} }
.cell-progress { .cell-progress {
......
...@@ -149,7 +149,7 @@ ...@@ -149,7 +149,7 @@
<div v-if="item.taskStatus === 'FINISH'" class="card-buttons"> <div v-if="item.taskStatus === 'FINISH'" class="card-buttons">
<el-button <el-button
v-if="item.systemReviewTaskId" v-if="item.systemReviewTaskId"
type="primary" type="success"
plain plain
size="mini" size="mini"
@click=" @click="
...@@ -162,7 +162,7 @@ ...@@ -162,7 +162,7 @@
> >
<el-button <el-button
v-if="item.carReviewTaskId" v-if="item.carReviewTaskId"
type="primary" type="success"
plain plain
size="mini" size="mini"
@click=" @click="
...@@ -175,7 +175,7 @@ ...@@ -175,7 +175,7 @@
> >
<el-button <el-button
v-if="item.modelTestTaskId" v-if="item.modelTestTaskId"
type="primary" type="success"
plain plain
size="mini" size="mini"
@click=" @click="
...@@ -188,14 +188,14 @@ ...@@ -188,14 +188,14 @@
> >
<el-button <el-button
v-if="item.reviewStatus !== 'NONE'" v-if="item.reviewStatus !== 'NONE'"
type="primary" type="success"
plain plain
size="mini" size="mini"
@click="goNext('/processing/report?id=' + item.id + '&type=0')" @click="goNext('/processing/report?id=' + item.id + '&type=0')"
>检验报告</el-button >检验报告</el-button
> >
<el-button <el-button
type="primary" type="success"
plain plain
size="mini" size="mini"
@click=" @click="
...@@ -204,7 +204,7 @@ ...@@ -204,7 +204,7 @@
>企业留档文件</el-button >企业留档文件</el-button
> >
<el-button <el-button
type="primary" type="success"
plain plain
size="mini" size="mini"
@click="goNext('/processing/checkFileLibrary?id=' + item.id)" @click="goNext('/processing/checkFileLibrary?id=' + item.id)"
......
...@@ -811,7 +811,7 @@ export default { ...@@ -811,7 +811,7 @@ export default {
// 左滑动逻辑 // 左滑动逻辑
scrollLeft() { scrollLeft() {
const allLength = this.detailsList.length * 60 const allLength = this.detailsList.length * 58
const boxLength = document.getElementById('list-box').clientWidth const boxLength = document.getElementById('list-box').clientWidth
if (allLength < boxLength) return if (allLength < boxLength) return
const listEl = document.getElementById('btn-list') const listEl = document.getElementById('btn-list')
...@@ -828,7 +828,7 @@ export default { ...@@ -828,7 +828,7 @@ export default {
}, },
// 右滑动逻辑 // 右滑动逻辑
scrollRight() { scrollRight() {
const allLength = this.detailsList.length * 60 const allLength = this.detailsList.length * 58
const boxLength = document.getElementById('list-box').clientWidth const boxLength = document.getElementById('list-box').clientWidth
if (allLength < boxLength) return if (allLength < boxLength) return
const listEl = document.getElementById('btn-list') const listEl = document.getElementById('btn-list')
......
...@@ -149,7 +149,7 @@ ...@@ -149,7 +149,7 @@
<div class="card-buttons"> <div class="card-buttons">
<el-button <el-button
v-if="item.systemReviewTaskId" v-if="item.systemReviewTaskId"
type="primary" type="success"
plain plain
size="mini" size="mini"
@click=" @click="
...@@ -162,7 +162,7 @@ ...@@ -162,7 +162,7 @@
> >
<el-button <el-button
v-if="item.carReviewTaskId" v-if="item.carReviewTaskId"
type="primary" type="success"
plain plain
size="mini" size="mini"
@click=" @click="
...@@ -176,7 +176,7 @@ ...@@ -176,7 +176,7 @@
> >
<el-button <el-button
v-if="item.modelTestTaskId" v-if="item.modelTestTaskId"
type="primary" type="success"
plain plain
size="mini" size="mini"
@click=" @click="
...@@ -189,14 +189,14 @@ ...@@ -189,14 +189,14 @@
> >
<el-button <el-button
v-if="item.reviewStatus !== 'NONE'" v-if="item.reviewStatus !== 'NONE'"
type="primary" type="success"
plain plain
size="mini" size="mini"
@click="goNext('/processing/report?id=' + item.id + '&type=0')" @click="goNext('/processing/report?id=' + item.id + '&type=0')"
>检验报告</el-button >检验报告</el-button
> >
<el-button <el-button
type="primary" type="success"
plain plain
size="mini" size="mini"
@click=" @click="
...@@ -205,7 +205,7 @@ ...@@ -205,7 +205,7 @@
>企业留档文件</el-button >企业留档文件</el-button
> >
<el-button <el-button
type="primary" type="success"
plain plain
size="mini" size="mini"
@click="goNext('/processing/checkFileLibrary?id=' + item.id)" @click="goNext('/processing/checkFileLibrary?id=' + item.id)"
......
...@@ -836,8 +836,9 @@ export default { ...@@ -836,8 +836,9 @@ export default {
}, },
// 左滑动逻辑 // 左滑动逻辑
scrollLeft() { scrollLeft() {
const allLength = this.detailsList.length * 120 const allLength = this.detailsList.length * 58
const boxLength = document.getElementById('list-box').clientWidth const boxLength = document.getElementById('list-box').clientWidth
if (allLength < boxLength) return if (allLength < boxLength) return
const listEl = document.getElementById('btn-list') const listEl = document.getElementById('btn-list')
const leftMove = Math.abs( const leftMove = Math.abs(
...@@ -852,8 +853,9 @@ export default { ...@@ -852,8 +853,9 @@ export default {
}, },
// 右滑动逻辑 // 右滑动逻辑
scrollRight() { scrollRight() {
const allLength = this.detailsList.length * 120 const allLength = this.detailsList.length * 58
const boxLength = document.getElementById('list-box').clientWidth const boxLength = document.getElementById('list-box').clientWidth
console.log(boxLength)
if (allLength < boxLength) return if (allLength < boxLength) return
const listEl = document.getElementById('btn-list') const listEl = document.getElementById('btn-list')
const leftMove = Math.abs( const leftMove = Math.abs(
......
...@@ -451,7 +451,7 @@ export default { ...@@ -451,7 +451,7 @@ export default {
}, },
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
this.$alert this.$modal
.confirm('是否确认删除名称为"' + row.deptName + '"的数据项?', { .confirm('是否确认删除名称为"' + row.deptName + '"的数据项?', {
type: 'warning', type: 'warning',
title: '删除', title: '删除',
......
...@@ -428,7 +428,7 @@ ...@@ -428,7 +428,7 @@
<div class="card-buttons"> <div class="card-buttons">
<el-button <el-button
v-if="item.systemReviewTaskId" v-if="item.systemReviewTaskId"
type="primary" type="success"
plain plain
size="mini" size="mini"
@click=" @click="
...@@ -441,7 +441,7 @@ ...@@ -441,7 +441,7 @@
> >
<el-button <el-button
v-if="item.carReviewTaskId" v-if="item.carReviewTaskId"
type="primary" type="success"
plain plain
size="mini" size="mini"
@click=" @click="
...@@ -454,7 +454,7 @@ ...@@ -454,7 +454,7 @@
> >
<el-button <el-button
v-if="item.modelTestTaskId" v-if="item.modelTestTaskId"
type="primary" type="success"
plain plain
size="mini" size="mini"
@click=" @click="
...@@ -467,14 +467,14 @@ ...@@ -467,14 +467,14 @@
> >
<el-button <el-button
v-if="item.reviewStatus !== 'NONE'" v-if="item.reviewStatus !== 'NONE'"
type="primary" type="success"
plain plain
size="mini" size="mini"
@click="goNext('/processing/report?id=' + item.id + '&type=0')" @click="goNext('/processing/report?id=' + item.id + '&type=0')"
>检验报告</el-button >检验报告</el-button
> >
<el-button <el-button
type="primary" type="success"
plain plain
size="mini" size="mini"
@click=" @click="
...@@ -483,7 +483,7 @@ ...@@ -483,7 +483,7 @@
>企业留档文件</el-button >企业留档文件</el-button
> >
<el-button <el-button
type="primary" type="success"
plain plain
size="mini" size="mini"
@click="goNext('/processing/checkFileLibrary?id=' + item.id)" @click="goNext('/processing/checkFileLibrary?id=' + item.id)"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment