博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
EasyUI datagrid 行编辑
阅读量:6833 次
发布时间:2019-06-26

本文共 2743 字,大约阅读时间需要 9 分钟。

一、HTML:

View Code

二、JS:

View Code

三、完整示例页面:

@{    Layout = "~/Views/Shared/_Layout.cshtml";}@using Model.Suya;@using Suya.PMP.Contract.Model;@{    BeforeAllocationModel beforeAllocation = ViewData["BeforeAllocationModel"] as BeforeAllocationModel;}
基础信息(带
* 号项必填)
单号: @beforeAllocation.billCode
制单人: @ViewBag.employeeName 制单时间: @DateTime.Now.ToString("yyyy-MM-dd HH:mm")
*项目前期任务单: 选择 项目名称:
*任务类型: 提资附件: @{ string attachmentName = ""; string attachmentHref = ""; if (beforeAllocation.BeforeProtast != null && !string.IsNullOrWhiteSpace(beforeAllocation.BeforeProtast.attachment)) { int pos = beforeAllocation.BeforeProtast.attachment.LastIndexOf('/'); int len = beforeAllocation.BeforeProtast.attachment.Length - pos - 1; attachmentName = beforeAllocation.BeforeProtast.attachment.Substring(pos + 1, len); attachmentHref = "DownloadFile?name=" + Server.UrlEncode(attachmentName) + "&url=" + Server.UrlEncode(beforeAllocation.BeforeProtast.attachment); } } @attachmentName
任务内容附件上传:
暂停原因:
暂停时间:
备注:
审核评分(带
* 号项必填)
*项目编号: @(beforeAllocation.ProjectInfo == null ? "" : beforeAllocation.ProjectInfo.billCode)
*设计内容:
*设计人: 选择 *校对人: 选择
*审核人: 选择 *审核人打分:
*审定人: 选择
任务开始时间: 任务结束时间:
要求用时: 实际用时:
评分:
备注:
校对记录(带
* 号项必填)
删除
确认
添加
审核记录(带
* 号项必填)
删除
确认
添加
View Code

 

转载于:https://www.cnblogs.com/s0611163/p/4569768.html

你可能感兴趣的文章