Commit 6b01054a authored by 仇晓婷's avatar 仇晓婷

ting

parent 0d4f08ab
<template>
<Col :span="span" class="filed-col">
<Col :span="span" class="filed-col" v-height="22">
<div v-text="name" class="label"></div>
<p>
<slot></slot>
......@@ -32,11 +32,12 @@ export default {
.filed-col {
max-width: 970px;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
border-left: 1px solid #ddd;
margin-left: -1px;
margin: 0 0 -1px -1px;
box-sizing: border-box;
// line-height: 70px;
max-height: 100px;
// max-height: 100px;
.label {
// background: #e8eaf1;
// display: inline-block;
......@@ -47,6 +48,7 @@ export default {
// line-height: 40px;
float: left;
height: inherit;
// line-height: 100%;
}
p {
max-width: 870px;
......
......@@ -3,16 +3,16 @@
<Row>
<!-- <Filed :span="12" :name="l('projectId')">{{entity.projectId}}</Filed>
<Filed :span="12" :name="l('customerId')">{{entity.customerId}}</Filed>-->
<Filed :span="12" :name="l('userId')">{{entity.userId}}</Filed>
<Filed :span="12" :name="l('userId')+0" style="height: 80px">{{entity.userId}}</Filed>
<Filed :span="12" :name="l('type')">
<state code="crm.sales.type" :value="entity.type" />
</Filed>
<Filed :span="12" :name="l('time')">{{entity.time}}</Filed>
<Filed :span="12" :name="l('time')+1" style="height: 80px">{{entity.time}}</Filed>
<Filed :span="12" :name="l('principal')">{{entity.principal}}</Filed>
<Filed :span="12" :name="l('status')">
<state code="crm.sales.status" :value="entity.status" />
</Filed>
<Filed :span="12" :name="l('deliverable')">{{entity.deliverable}}</Filed>
<Filed :span="12" :name="l('deliverable')" >{{entity.deliverable}}</Filed>
<Filed :span="24" :name="l('arrange')">{{entity.arrange}}</Filed>
<Filed :span="24" :name="l('notes')">{{entity.notes}}</Filed>
</Row>
......
......@@ -108,7 +108,7 @@
<Modal v-model="editModal" title="编辑" footer-hide>
<Edit :eid="curId" @on-close="cancel" @on-ok="addOk" />
</Modal>
<Modal v-model="detailModal" title="详情" footer-hide>
<Modal v-model="detailModal" title="详情" footer-hide width="1000px">
<Detail :eid="curId" />
</Modal>
<Modal v-model="deletelModal" title="删除" @on-ok="removeOk" @on-cancel="cancel">
......
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