Commit 8b9fe315 authored by 仇晓婷's avatar 仇晓婷

124bug

parent f22906e5
...@@ -13,7 +13,10 @@ ...@@ -13,7 +13,10 @@
<template slot="easySearch"> <template slot="easySearch">
<Form ref="formInline" :model="easySearch" inline> <Form ref="formInline" :model="easySearch" inline>
<FormItem prop="keys"> <FormItem prop="keys">
<Input placeholder="请输入关键字名称" v-model="easySearch.keys.value" /> <Input
placeholder="请输入关键字名称"
v-model="easySearch.keys.value"
/>
</FormItem> </FormItem>
<FormItem> <FormItem>
<Button type="primary" @click="search">查询</Button> <Button type="primary" @click="search">查询</Button>
...@@ -23,20 +26,20 @@ ...@@ -23,20 +26,20 @@
<!-- <template slot="buttons"> <!-- <template slot="buttons">
<Button type="primary" @click="add">新增</Button> <Button type="primary" @click="add">新增</Button>
</template>--> </template>-->
<template slot="card" slot-scope="{row}"> <template slot="card" slot-scope="{ row }">
<div class="card_body"> <div class="card_body">
<Row class="title_i"> <Row class="title_i">
<Col :span="21">工艺名称:{{row.title}}</Col> <Col :span="21">工艺名称:{{ row.title }}</Col>
<Col :span="3" class="btn_click"> <Col :span="3" class="btn_click">
<!-- <a @click="edit(row.id)"> <!-- <a @click="edit(row.id)">
<Icon type="ios-create" @click="edit(row.id)" /> <Icon type="ios-create" @click="edit(row.id)" />
</a>--> </a>-->
<!-- <a @click="view(row.id)"> <a @click="view(row.id)">
<Icon type="ios-paper" /> <Icon type="ios-paper" />
</a> </a>
<a @click="remove(row.id)"> <!-- <a @click="remove(row.id)">
<Icon type="ios-trash" /> <Icon type="ios-trash" />
</a>--> </a> -->
</Col> </Col>
</Row> </Row>
<div class="down_text"> <div class="down_text">
...@@ -48,12 +51,16 @@ ...@@ -48,12 +51,16 @@
</div> </div>
</Col> </Col>
<Col span="18"> <Col span="18">
<p>创建时间:{{row.creationTime}}</p> <p>创建时间:{{ row.creationTime }}</p>
<p>创建人:{{row.creator}}</p> <p>创建人:{{ row.creator }}</p>
<p>内容:{{row.content}}</p> <p>内容:{{ row.content }}</p>
<p> <p>
状态: 状态:
<state code="processCase.status" :value="row.status+''" type="text" /> <state
code="processCase.status"
:value="row.status + ''"
type="text"
/>
</p> </p>
</Col> </Col>
</Row> </Row>
...@@ -78,12 +85,12 @@ ...@@ -78,12 +85,12 @@
</div>--> </div>-->
</template> </template>
</DataGrid> </DataGrid>
<!-- <Modal v-model="modal" :title="title" width="800" footer-hide :mask-closable="false"> <Modal v-model="modal" :title="title" width="800" footer-hide :mask-closable="false">
<component :is="detail" :eid="curId" @on-close="cancel" @on-ok="ok" /> <component :is="detail" :eid="curId" @on-close="cancel" @on-ok="ok" />
</Modal> </Modal>
<Modal v-model="deletelModal" title="删除" @on-ok="removeOk" @on-cancel="cancel" :mask-closable="false"> <!-- <Modal v-model="deletelModal" title="删除" @on-ok="removeOk" @on-cancel="cancel" :mask-closable="false">
<p>确定删除?</p> <p>确定删除?</p>
</Modal>--> </Modal> -->
</div> </div>
</template> </template>
<script> <script>
......
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