博客
关于我
强烈建议你试试无所不能的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

你可能感兴趣的文章
新浪微博平台自动化运维演进之路
查看>>
足够安全 美国防部计划将400万部设备升级至Win10
查看>>
转型之旅 VMware是如何践行数字化转型的?
查看>>
27家大数据企业入驻京玖大厦
查看>>
深港成立大数据联盟 推动智慧城市建设
查看>>
《Spring技术内幕》——导读
查看>>
电讯盈科企业方案公司成立全球数据中心联盟
查看>>
美国情报部门表示可通过物联网监控公民
查看>>
2016年俄罗斯M2M市场达100亿俄罗斯卢布
查看>>
AI民主化:你愿意与Cortana共享绝密隐私吗?
查看>>
零售连锁企业CRM可以实现什么?
查看>>
说说CORS与jsonp
查看>>
Vue组件间通信
查看>>
webpack笔记
查看>>
最最最常用的十大ES6特性总结
查看>>
leetcode.最小栈问题
查看>>
js实现可执行的字符串计算
查看>>
IPFS基本使用
查看>>
玩转Go语言之闭包
查看>>
iOS 控制器的实例 的block循环引用
查看>>