|
|
|
@ -146,11 +146,11 @@ |
|
|
|
v-hasPermi="['business:resource:gsp:rkgd']">{{ |
|
|
|
$t('page.business.resource.gsp.guidang') }}</el-button> |
|
|
|
<!-- 解档 --> |
|
|
|
<el-button type="text" v-if="scope.row.jlzt == 7" @click="handleJd(scope.row)" |
|
|
|
<el-button type="text" v-if="scope.row.jlzt == 7 && id == scope.row.dasqrId" @click="handleJd(scope.row)" |
|
|
|
v-hasPermi="['business:resource:gsp:rkjd']">{{ |
|
|
|
$t('page.business.resource.gsp.jiedang') }}</el-button> |
|
|
|
<!-- 借阅 --> |
|
|
|
<el-button type="text" v-if="scope.row.jlzt == 7 && scope.row.jyzt == 1" @click="handleJy(scope.row)" |
|
|
|
<el-button type="text" v-if="scope.row.jlzt == 7 && scope.row.jyzt == 1 && id == scope.row.dasqrId" @click="handleJy(scope.row)" |
|
|
|
v-hasPermi="['business:resource:gsp:rkjy']">{{ |
|
|
|
$t('page.business.resource.gsp.jieyue') }}</el-button> |
|
|
|
</template> |
|
|
|
@ -190,6 +190,7 @@ import Xq from "./rkjl/Xq"; |
|
|
|
import Xz from "./rkjl/Xz"; |
|
|
|
import Bj from "./rkjl/Bj"; |
|
|
|
import { deepClone } from "@/utils/index"; |
|
|
|
import { mapGetters } from 'vuex' |
|
|
|
export default { |
|
|
|
name: "FfjlList", |
|
|
|
components: { Sd, Js, Gd, Jd, Jy, Xq, Xz, Bj }, |
|
|
|
@ -221,6 +222,11 @@ export default { |
|
|
|
}, |
|
|
|
} |
|
|
|
}, |
|
|
|
computed: { |
|
|
|
...mapGetters([ |
|
|
|
'id' |
|
|
|
]), |
|
|
|
}, |
|
|
|
created() { |
|
|
|
this.getList() |
|
|
|
}, |
|
|
|
|