123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- <style>
- .bigBoxBg {
- background-color: rgb(249, 249, 249);
- padding: 16px;
- }
- .box {
- border: 1px rgb(233, 233, 233) solid;
- }
- .box .head {
- border-bottom: 1px rgb(233, 233, 233) solid;
- color: #333333;
- padding: 0 24px;
- font-size: 16px;
- background-color: rgb(243, 243, 243);
- height: 30px;
- line-height: 30px;
- }
- .box .contentBox {
- background-color: white;
- padding: 0 24px;
- }
- .box .contentBox .content {
- border-bottom: 1px rgb(233, 233, 233) solid;
- padding: 16px 0 24px 0;
- color: #666666;
- font-size: 14px;
- }
- .box .contentBox .content .messageBox {
- display: flex;
- flex-wrap: wrap;
- }
- .box .contentBox .content .messageBox .message {
- margin-top: 8px;
- /* flex: 1 */
- width: 33%;
- }
- .box .contentBox .content .messageBox .messageCont {
- margin-top: 8px;
- /* flex: 1 */
- width: 100%;
- }
- .bottom {
- margin-top: 24px;
- text-align: center;
- }
- .processBox {
- margin-top: 20px;
- }
- .process {
- display: flex;
- height: 50px;
- line-height: 50px;
- }
- .process div:nth-child(1) {
- width: 120px;
- text-align: center;
- color: rgb(160, 160, 160);
- }
- .process div:nth-child(2) {
- width: 80px;
- text-align: center;
- }
- .process div:nth-child(2) span {
- display: inline-block;
- width: 10px;
- height: 10px;
- border-radius: 50%;
- background-color: rgb(121, 163, 196);
- }
- .process div:nth-child(3) {
- color: rgb(160, 160, 160);
- margin-left: 20px;
- }
- .process:last-child div:nth-child(1) {
- width: 120px;
- text-align: center;
- color: black;
- }
- .process:last-child div:nth-child(2) {
- width: 80px;
- text-align: center;
- }
- .process:last-child div:nth-child(2) span {
- display: inline-block;
- width: 10px;
- height: 10px;
- border-radius: 50%;
- background-color: rgb(0, 67, 122);
- }
- .process:last-child div:nth-child(3) {
- color: black;
- margin-left: 20px;
- }
- .bottom button {
- width: 80px;
- height: 28px;
- border-radius: 4px;
- background-color: rgb(0, 67, 122);
- border: 0;
- color: white;
- }
- .ipt {
- width: 64px;
- height: 64px;
- margin-left: 23px;
- border-radius: 4px;
- }
- .content:last-child {
- border-bottom: 0 !important;
- }
- .showBigImg {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(1, 1, 1, 0.5);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 9999;
- }
- .showBigImg img {
- width: 500px;
- }
- /* 增加时间轴上的时间 */
- .date-str-wrap{
- position: relative;
- top: 9px;
- }
- .date-str{
- position: absolute;
- left: 5px;
- top: -25px;
- width: 100%!important;
- text-align: left!important;
- font-size: 12px;
- }
- </style>
- <section id="page-title">
- <div class="row">
- <div class="col-sm-8">
- <h1 class="mainTitle">
- 报障详情<i
- tooltip="报障详情,点击操作处理任务"
- tooltip-placement="right"
- class="fa ti-help-alt margin-left-10 fontcolor-five pointfont"
- ></i>
- </h1>
- </div>
- </div>
- </section>
- <div ng-controller="wxDetailCtrl" class="bigBoxBg">
- <div class="box">
- <div class="head">报修信息</div>
- <div class="contentBox">
- <div class="content">
- <div class="messageBox">
- <div class="message" ng-show="repairMain.valueconfig ==1">报修人:{{model.requester.name}}</div>
- <div class="message" ng-show="repairMain.valueconfig ==2">报修科室:{{model.departmentDTO.dept}}</div>
- <div class="message" ng-show="repairMain.valueconfig ==1">报修电话:{{model.requester.mphone}}</div>
- <div class="message">状态:{{model.serviceState.name}}</div>
- <div class="message" ng-show="repairMain.valueconfig ==2"></div>
- <div class="message">联系人:{{model.contacts}}</div>
- <div class="message">联系电话:{{model.contactsInformation}}</div>
- <!-- <div class="message">区域:{{model.place.area.area}}</div> -->
- <!-- <div class="message">地点:{{model.place.place}}</div> -->
- <div class="message">故障地点:{{model.address}}</div>
- <div class="messageCont">报修内容:{{model.incidentDescription}}</div>
- </div>
- </div>
- <div class="content" ng-if="fileUrls.length>0">
- <div class="messageBox">
- <div>
- 报修图片:
- <img
- ng-src="{{v.previewUrl}}"
- alt=""
- ng-repeat="v in fileUrls"
- class="ipt"
- ng-click="showBigImgCli(v.previewUrl)"
- />
- </div>
- </div>
- </div>
- <div class="content" ng-if="process.length>0">
- <div class="tit">处理进度</div>
- <div class="processBox">
- <div class="process" ng-repeat="v in process">
- <div>{{v.activityName}}</div>
- <div>
- <span></span>
- </div>
- <div class="date-str-wrap">
- <div class="date-str">{{v.startTime}}</div>
- <span ng-if="v.user">【</span>{{v.user.name}}
- {{v.user.phone}}<span ng-if="v.user">】</span>{{v.desc}}
- </div>
- </div>
- </div>
- </div>
- <div class="content" ng-if="model.rejectRemark">
- <div class="tit">处理信息</div>
- <div class="messageBox">
- <div>不受理原因:{{model.rejectRemark}}</div>
- </div>
- </div>
- </div>
- </div>
- <div class="bottom">
- <button ng-click="back()">返回</button>
- </div>
- <div class="showBigImg" ng-show="showBigImg" ng-click="closeBigImg()">
- <img ng-src="{{bigImgUrl}}" alt="" />
- </div>
- </div>
|