| | |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | | <el-row :gutter="30"> |
| | | <el-col :span="12"> |
| | | <el-form-item label="评分:" prop="rating"> |
| | | <el-rate |
| | | v-model="form.rating" |
| | | :disabled="operationType === 'view'" |
| | | :max="5" |
| | | show-text |
| | | :texts="['非常不满意', '不满意', '一般', '满意', '非常满意']" |
| | | /> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | | <el-row :gutter="30"> |
| | | <el-col :span="24"> |
| | | <el-form-item label="评价内容描述:" prop="evaluation"> |
| | | <el-input |
| | | v-model="form.evaluation" |
| | | placeholder="请输入评价内容描述" |
| | | clearable |
| | | :disabled="operationType === 'view'" |
| | | type="textarea" |
| | | :rows="3" |
| | | /> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | | </el-form> |
| | | <el-row :gutter="30"> |
| | | <el-col :span="12"> |
| | |
| | | disposeUserId: "", |
| | | disDate: "", |
| | | disRes: "", |
| | | rating: null, |
| | | evaluation: "", |
| | | }, |
| | | rules: { |
| | | feedbackDate: [{required: true, message: "请选择", trigger: "change"}], |