|
@@ -216,8 +216,16 @@
|
|
<el-form-item label="描述" prop="description">
|
|
<el-form-item label="描述" prop="description">
|
|
<!-- <el-input v-model="addForm.projectDesc" :disabled="!permissions.projectManagement && addForm.creatorId != user.id" placeholder="请输入项目描述" clearable maxlength="4000"></el-input> -->
|
|
<!-- <el-input v-model="addForm.projectDesc" :disabled="!permissions.projectManagement && addForm.creatorId != user.id" placeholder="请输入项目描述" clearable maxlength="4000"></el-input> -->
|
|
<!-- <el-input v-model="addForm.description" :placeholder="$t('peaseenterthe')" clearable maxlength="200" show-word-limit></el-input> -->
|
|
<!-- <el-input v-model="addForm.description" :placeholder="$t('peaseenterthe')" clearable maxlength="200" show-word-limit></el-input> -->
|
|
- <el-input v-model="addForm.description" placeholder="产品特征" clearable maxlength="200"
|
|
|
|
- show-word-limit></el-input>
|
|
|
|
|
|
+ <!-- <el-input v-model="addForm.description" placeholder="产品特征" clearable maxlength="200"
|
|
|
|
+ show-word-limit></el-input> -->
|
|
|
|
+ <el-input
|
|
|
|
+ type="textarea"
|
|
|
|
+ :autosize="{ minRows: 2, maxRows: 4 }"
|
|
|
|
+ maxlength="200"
|
|
|
|
+ clearable
|
|
|
|
+ placeholder="产品特征"
|
|
|
|
+ v-model="addForm.description">
|
|
|
|
+ </el-input>
|
|
|
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-form>
|
|
@@ -242,12 +250,12 @@
|
|
<el-input v-model="scope.row.name" clearable placeholder="请输入" maxlength="30"></el-input>
|
|
<el-input v-model="scope.row.name" clearable placeholder="请输入" maxlength="30"></el-input>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="workingTime" label="单件工时" width="180">
|
|
|
|
|
|
+ <el-table-column prop="workingTime" label="单件工时(分)" width="180">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-input v-model="scope.row.workingTime" clearable maxlength="11" placeholder="请输入"></el-input>
|
|
<el-input v-model="scope.row.workingTime" clearable maxlength="11" placeholder="请输入"></el-input>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="unitPrice" label="单件工价" width="180">
|
|
|
|
|
|
+ <el-table-column prop="unitPrice" label="单件工价(元)" width="180">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-input v-model="scope.row.unitPrice" clearable maxlength="9" placeholder="请输入"></el-input>
|
|
<el-input v-model="scope.row.unitPrice" clearable maxlength="9" placeholder="请输入"></el-input>
|
|
</template>
|
|
</template>
|