Commit 0d397ab6 by zhengxiaokui

zxk

parent 14f6fd90
...@@ -2,5 +2,7 @@ import Api from "~/service/Api" ...@@ -2,5 +2,7 @@ import Api from "~/service/Api"
import Utils from "~/utils" import Utils from "~/utils"
export default { export default {
onSeainf() {
}
} }
\ No newline at end of file
...@@ -191,9 +191,6 @@ ...@@ -191,9 +191,6 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12">
<c-checkbox v-model="model.clsflg">Show closed Contracts</c-checkbox>
</c-col>
<c-col :span="12"> <c-col :span="12">
<el-form-item label="Contr. to be Financed" prop="trpnttyp"> <el-form-item label="Contr. to be Financed" prop="trpnttyp">
......
<template>
<el-table
:data="data"
border
stripe
:show-header="false"
:cell-style="cellSttyle"
>
<el-table-column prop="title" align="center">
<template slot-scope="scope">
<el-link
:disabled="scope.row.disabled"
:href="scope.row.url"
v-if="scope.row.title"
>{{ scope.row.title }}</el-link
>
</template>
</el-table-column>
</el-table>
</template>
<script>
export default {
props: ["data"],
data() {
return {
cellSttyle: { height: "25px" },
};
},
};
</script>
<style>
a {
text-decoration-line: none;
color: #606266;
}
a:hover {
color: blue;
}
</style>
\ No newline at end of file
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