123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943 |
- <template>
- <view class="handler">
- <view class="head">
- <view class="tab" :class="{active: tab.value === dataInfo.tabActiveValue}" v-for="tab in dataInfo.tabs" :key="tab.id" @click="clickTab(tab.value)">
- {{tab.name}}<text v-if="tab.num !== ''">({{tab.num}})</text>
- </view>
- </view>
- <view class="body view-body page_padding">
- <!-- 科内报修 -->
- <template v-if="dataInfo.tabActiveValue === 'doing'">
- <view class="form_item">
- <view class="title select"><text class="required newicon newicon-bitian"></text>院区:</view>
- <uni-data-picker class="value" placeholder="请选择院区"
- v-model="dataInfo.branch" :localdata="branchData" @change="doingDeptChange"
- :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.branch}">
- </uni-data-picker>
- </view>
- <!-- <view class="form_item">
- <view class="title select"><text class="required newicon newicon-bitian"></text>报修科室:</view>
- <uni-data-picker class="value" placeholder="请选择报修科室"
- v-model="dataInfo.department" :localdata="dataInfo.repairTypeList"
- :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.department}">
- </uni-data-picker>
- </view> -->
- <view class="form_item">
- <view class="title select"><text class="required newicon newicon-bitian"></text>报修科室:</view>
- <view class="value category" @click="selectDepartment">
- <text class="categoryName ellipsis-multiline">{{dataInfo.departmentName}}</text>
- <text class="newicon newicon-weibiaoti2010104"></text>
- </view>
- </view>
- <view class="candidate" v-if="itemUser">
- <view class="candidate-item" v-for="(item, index) in itemUser.commonDeptDTO" :key="item" @click="itemCandidate(item)">{{item.dept}}</view>
- </view>
-
- <view class="form_item column">
- <view class="title"><text class="required newicon newicon-bitian"></text>详细地址:</view>
- <uni-easyinput class="value" type="textarea" v-model="dataInfo.address" placeholder="请输入详细地址" :class="{formRed: isSubmit && !dataInfo.address }" />
- </view>
- <view class="candidate">
- <view class="candidate-item" v-for="item in dataInfo.addressList" :key="item.id" @click="itemAddres(item)">{{item.name}}</view>
- </view>
-
- <view class="form_item" :class="{formRed: isSubmit && !dataInfo.contacts}">
- <view class="title select"><text class="required newicon newicon-bitian"></text>联系人:</view>
- <input class="item-input" placeholder="请输入联系人" v-model="dataInfo.contacts" />
- </view>
-
- <view class="form_item" :class="{formRed: isSubmit && !dataInfo.contactsInformation}">
- <view class="title select"><text class="required newicon newicon-bitian"></text>联系电话:</view>
- <input class="item-input" placeholder="请输入联系电话" v-model="dataInfo.contactsInformation"/>
- </view>
- </template>
- <!-- 公共报修 -->
- <template v-if="dataInfo.tabActiveValue === 'overtime'">
- <view class="form_item" v-if="isRepair.valueconfig==1">
- <view class="title select"><text class="required newicon newicon-bitian"></text>院区:</view>
- <uni-data-picker class="value" placeholder="请选择院区" @change="overDeptChange"
- v-model="dataInfo.branch" :localdata="branchData"
- :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.branch}">
- </uni-data-picker>
- </view>
- <view class="form_item" v-if="isRepair.valueconfig==1">
- <view class="title select"><text class="required newicon newicon-bitian"></text>楼栋:</view>
- <uni-data-picker class="value" placeholder="请选择楼栋" @change="areaChange"
- v-model="dataInfo.areaId" :localdata="dataInfo.buildingTypeList"
- :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.areaId}">
- </uni-data-picker>
- </view>
-
- <view class="form_item" v-if="isRepair.valueconfig==1">
- <view class="title select"><text class="required newicon newicon-bitian"></text>楼层:</view>
- <uni-data-picker class="value" placeholder="请选择楼层"
- v-model="dataInfo.placeId" :localdata="dataInfo.placeTypeList"
- :clear-icon="false" :class="{formRed: isSubmit && !dataInfo.placeId}">
- </uni-data-picker>
- </view>
-
- <view class="form_item column" v-if="isRepair.valueconfig==1">
- <view class="title"><text class="required newicon newicon-bitian"></text>详细地址:</view>
- <uni-easyinput class="value" type="textarea" v-model="dataInfo.address" placeholder="请输入详细地址" :class="{formRed: isSubmit && !dataInfo.address}" />
- </view>
-
- <view class="form_item" :class="{formRed: isSubmit && !dataInfo.contacts}">
- <view class="title select"><text class="required newicon newicon-bitian"></text>联系人:</view>
- <input class="item-input value" placeholder="请输入联系人" v-model="dataInfo.contacts"/>
- </view>
-
- <view class="form_item" :class="{formRed: isSubmit && !dataInfo.contactsInformation}">
- <view class="title select"><text class="required newicon newicon-bitian"></text>联系电话:</view>
- <input class="item-input value" placeholder="请输入联系电话" v-model="dataInfo.contactsInformation"/>
- </view>
- </template>
- </view>
- <view class="foot_common_btns">
- <button @click="goBackOrToList" type="default" class="primaryButton btn">上一步</button>
- <button @click="submit" type="default" class="primaryButton btn">提交</button>
- </view>
- <NumberModal v-if="dataInfo.isNumber" @cancelEmit="cancelNumber" @confirmEmit="conformNumber" @removeEmit="removeNumber" :selectData="dataInfo.selectData" :selectType="dataInfo.selectType" :evtNumber="dataInfo.evtNumber" showRemove></NumberModal>
-
- </view>
- </template>
- <script setup>
- import { ref, reactive, computed } from 'vue'
- import NumberModal from '@/components/NumberModal.vue';
- import { onLoad } from '@dcloudio/uni-app'
- import { generateNumberArray } from '@/utils/index.js'
- import { api_getDictionary, api_sj,api_request, getFetchDataList, api_place, api_getSolution, api_area, api_user, api_incidentTask, api_branch, api_dutyDepartment, api_department, api_querySummaryDoc, api_addSummaryDoc } from "@/http/api.js"
- import { defaultColor } from '@/static/js/theme.js'
- import { useSetTitle } from '@/share/useSetTitle.js'
- import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
- import { useUploadFile } from '@/share/useUploadFile.js'
- import { useGoBack } from '@/share/useGoBack.js'
- import { useLoginUserStore } from '@/stores/loginUser'
- import { useHandlerStore } from '@/stores/handler'
-
- useSetTitle();
- const loginUserStore = useLoginUserStore();
- const handlerStore = useHandlerStore();
- const { makePhoneCall } = useMakePhoneCall();
- const { uploadFile } = useUploadFile();
- const { goBack } = useGoBack();
-
- // 主题颜色
- const primaryColor = ref(defaultColor)
-
- // 备用机选项
- const machineData = ref([
- {
- text:'是',
- value:1
- },
- {
- text:'否',
- value:0
- },
- ])
-
- const isDept = ref({})
- const isRepair = ref({})
- const branchData = ref([])
- const candidateData = ref(loginUserStore.loginUser.user)
-
- const repairIncident = ref(null)
-
- // 数据
- const dataInfo = reactive({
- tabs: [
- {id: 5, name: '科内报修', value: 'doing', num: ''},
- {id: 6, name: '公共报修', value: 'overtime', num: ''},
- ],
- tabActiveValue: 'doing',//当前选择的tab
- incidentId: undefined,//事件ID
- incidentData: {
- repairIncidentType:{
- id:''
- },
- department:{
- id:''
- }
- },//事件对象
- repairTypeList:[],//科室数据
- buildingTypeList:[],//楼栋数据
- placeTypeList:[],//楼层数据
- department:'',//报修科室id
- departmentName:'',//报修科室
- address:'',//详细地址
- contacts:'',//联系人
- contactsInformation:'',//手机
- areaId:'',//楼栋
- placeId:'',//楼层
- branch:'', //院区
- addressList: [], //科室地点
- })
-
-
- // 故障处理用是否提供备用机
- const newProvideBackupMachine = ref(0)
-
- // 知识库id
- const solutionId = ref(null)
-
- // 是否提交
- const isSubmit = ref(false)
-
- // 处理图片
- const handlerImgRef = ref(null)
-
- // 用户信息
- const itemUser = ref(null)
-
- // 是否进入汇总单
- const isInSummaryOrder = computed(() => {
- return dataInfo.tabActiveValue === 'doing' && dataInfo.incidentData.duty && dataInfo.incidentData.duty.addSummary == 1 && (dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id);
- })
-
- // 上一步或者返回列表
- function goBackOrToList(){
- uni.setStorageSync('rapidRepNext',JSON.stringify(dataInfo))
- uni.navigateTo({
- url: `/pages/repair/rapidRep`
- })
- }
-
- // 重置
- function reset(){
- // dataInfo.department = '',//报修科室
- dataInfo.address = '',//详细地址
- // dataInfo.contacts = '',//联系人
- // dataInfo.contactsInformation = ''//手机
- dataInfo.areaId = ''//楼栋
- dataInfo.placeId = '' //院区
- dataInfo.placeTypeList = []
- }
-
- // 初始化表单
- function initForm(){
- if(dataInfo.tabActiveValue === 'doing'){
- // getRepairTypes()
- getUserInfo()
- }else if(dataInfo.tabActiveValue === 'overtime'){
- getbuildingList()
- }
- }
-
- function itemCandidate(item){
- // console.log(55,index)
- // let arr = loginUserStore.loginUser.user.commonDept.split(',')
- // console.log(66,arr)
- dataInfo.department = item.id
- dataInfo.departmentName = item.dept
- }
-
- function itemAddres(item){
- dataInfo.address = item.name
- }
-
- function getUserInfo(){
- let user = loginUserStore.loginUser.user
- let postData = {
- idx: 0,
- sum: 999,
- user: {
- hospital:{
- id:user.currentHospital.id
- },
- name: user.name,
- }
- }
- api_user(postData).then(res => {
- if(res.status == 200){
- let user = loginUserStore.loginUser.user
- if(uni.getStorageSync('rapidRepNext')){
- let data = JSON.parse(uni.getStorageSync('rapidRepNext'))
- if(data){
- dataInfo.departmentName = data.departmentName
- dataInfo.department = data.department
- }
- }else{
- dataInfo.departmentName = res.list[0].dept.dept
- dataInfo.department = res.list[0].dept.id
- }
- itemUser.value = res.list.find(i=>i.id==user.id)
-
- }else{
- uni.showToast({
- icon: 'none',
- title: res.msg || '请求数据失败!'
- });
- }
- })
- }
-
- // 点击tab
- function clickTab(tabValue){
- if(dataInfo.tabActiveValue == tabValue){
- return;
- }
- dataInfo.tabActiveValue = tabValue;
- isSubmit.value = false;
- reset();
- if(tabValue=='doing'){
- let user = loginUserStore.loginUser.user
- if(user){
- dataInfo.department = user.dept.id
- }
- }else{
- dataInfo.department = ''
- }
- dataInfo.category = dataInfo.incidentData.category || {};
- dataInfo.synergetic = dataInfo.incidentData.synergetic || [];
- newProvideBackupMachine.value = dataInfo.incidentData.provideBackupMachine
- initForm();
- }
-
- // 获取事件详情
- function getIncidentDetail(){
- let user = loginUserStore.loginUser.user
- if(uni.getStorageSync('rapidRepNext')){
- let data = JSON.parse(uni.getStorageSync('rapidRepNext'))
- if(data){
- dataInfo.department = data.department//报修科室
- dataInfo.departmentName = data.departmentName//报修科室
- dataInfo.address = data.address//详细地址
- dataInfo.contacts = data.contacts//联系人
- dataInfo.contactsInformation = data.contactsInformation//手机
- dataInfo.branch = Number(data.branch)//院区
- dataInfo.areaId = data.areaId//楼栋
- // getRepairTypes()
- }
- }else if(user){
- if(user.currentHospital.parent){
- dataInfo.branch = user.currentHospital.parent.id
- }else{
- dataInfo.branch = user.currentHospital.id
- }
- dataInfo.contacts = user.name
- dataInfo.contactsInformation = user.phone
- dataInfo.department = user.dept.id
- dataInfo.departmentName = user.dept.dept
- // getRepairTypes()
- }
- if(uni.getStorageSync('repairData')){
- let data = JSON.parse(uni.getStorageSync('repairData'))
- if(data){
- dataInfo.description = data.description
- dataInfo.handlerImgList = data.handlerImgList
- dataInfo.serverId = data.serverId
- dataInfo.assetId = data.assetId
- }
- }
-
- let data = JSON.parse(uni.getStorageSync('sysData'))
- isDept.value = data.find(i=>i.keyconfig=='deptRepair')
- isRepair.value = data.find(i=>i.keyconfig=='publicRepair')
- if(isDept.value.valueconfig==1 && isRepair.value.valueconfig==1){
- dataInfo.tabs = [
- {id: 5, name: '科内报修', value: 'doing', num: ''},
- {id: 6, name: '公共报修', value: 'overtime', num: ''},
- ]
- dataInfo.tabActiveValue = 'doing'
- }else if(isDept.value.valueconfig==1){
- dataInfo.tabs = [
- {id: 5, name: '科内报修', value: 'doing', num: ''},
- ]
- dataInfo.tabActiveValue = 'doing'
- }else if(isRepair.value.valueconfig==1){
- dataInfo.tabs = [
- {id: 6, name: '公共报修', value: 'overtime', num: ''},
- ]
- dataInfo.tabActiveValue = 'overtime'
- getbuildingList()
- }
-
- let postData = {
- "key": 'repair_incident_type',
- "type": "list",
- };
- api_getDictionary(postData).then(res => {
- res = res || [];
- repairIncident.value = res
- })
- getBranch()
- }
-
- // 获取院区列表
- function getBranch(){
- let arr = loginUserStore.loginUser.hospital.filter(i=>i.parent==undefined)
- branchData.value = arr.map(v => ({
- text: v.hosName,
- value: v.id,
- }));
- }
-
- // 科内报修选择院区
- function doingDeptChange(){
- dataInfo.department = ''
- dataInfo.departmentName = ''
- // getRepairTypes()
- }
-
- // 公区报修选择院区
- function overDeptChange(){
- getbuildingList()
- }
-
- // 跳转到搜索报修科室
- function selectDepartment(){
- uni.setStorageSync('rapidRepNext',JSON.stringify(dataInfo))
- uni.navigateTo({
- url: `/pages/searchDept/searchDept?type=repair&branchId=${dataInfo.branch}`
- })
- }
-
- // 获取报修科室列表
- function getRepairTypes(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- let postData = {
- department: {
- hospital: dataInfo.branch,
- },
- idx:0,
- sum:9999
- }
- api_department(postData).then(res => {
- uni.hideLoading();
- res = res.list || [];
- dataInfo.repairTypeList = res.map(v => ({
- text: v.dept,
- value: v.id,
- floor: v.floor
- }));
- let isDeptId = dataInfo.repairTypeList.filter(i=>i.value==dataInfo.department)
- if(isDeptId.length==0){
- dataInfo.department = ''
- }
- })
- }
-
- // 获取楼栋
- function getbuildingList(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- let postData = {
- idx: 0,
- sum: 9999,
- building:{
- hosId: dataInfo.branch,
- }
- };
- getFetchDataList("simple/data", "building", postData)
- .then((res) => {
- uni.hideLoading();
- res = res.list || [];
- dataInfo.buildingTypeList = res.map(v => ({
- text: v.buildingName,
- value: v.id
- }));
- });
- }
-
- // 获取科室地点
- function getAddressList(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- let postData = {
- idx: 0,
- sum: 10,
- qrCode:{
- deptId: dataInfo.department,
- }
- };
- getFetchDataList("simple/data", "qrCode", postData)
- .then((res) => {
- uni.hideLoading();
- dataInfo.addressList = res.list || [];
- });
- }
-
- function areaChange(e){
- getPlaceList(dataInfo.areaId)
- }
-
- // 获取楼层
- function getPlaceList(e){
- let postData = {
- idx: 0,
- sum: 9999,
- floor: {
- buildId:e,
- hosId:dataInfo.branch
- }
- };
-
- getFetchDataList("simple/data", "floor", postData)
- .then((res) => {
- uni.hideLoading();
- res = res.list || [];
- dataInfo.placeTypeList = res.map(v => ({
- text: v.floorName,
- value: v.id
- }));
- });
- }
-
- // 提交
- function submit(){
- isSubmit.value = true;
- submitHandler()
- }
-
- // 处理提交事件
- function handlerOrder(){
- let postData = {
- incident: dataInfo.incidentData,
- serverId: ''
- }
- postData.incident.place = {}
- if(dataInfo.tabActiveValue === 'doing'){
- let data = repairIncident.value.find(i=>i.value=='dept')
- dataInfo.incidentData.repairIncidentType.id = data.id
- let deptItem = dataInfo.repairTypeList.find(i=>i.value == dataInfo.department)
- console.log(333,deptItem)
- if(deptItem){
- postData.incident.place.id = deptItem.floor.id
- }
- }else if(dataInfo.tabActiveValue === 'overtime'){
- let data = repairIncident.value.find(i=>i.value=='public')
- dataInfo.incidentData.repairIncidentType.id = data.id
- postData.incident.place.id = dataInfo.placeId;
- }
- dataInfo.incidentData.department.id = dataInfo.department
- postData.incident.description = dataInfo.description;
- if(dataInfo.serverId){
- postData.serverId = dataInfo.serverId;
- }else{
- delete postData.serverId
- }
- postData.incident.assetId = dataInfo.assetId;
- postData.incident.houseNumber = dataInfo.address;
- postData.incident.contacts = dataInfo.contacts;
- postData.incident.contactsInformation = dataInfo.contactsInformation;
- postData.incident.hosId = dataInfo.branch;
- let repairsType = uni.getStorageSync('repairsType')
- // postData.incident.buildId = dataInfo.areaId; //areaId:楼栋
- // postData.incident.floorId = dataInfo.placeId;//placeId:楼层
- // buildId
- // floorId
- api_getDictionary({
- key: "incident_source",
- type: "list"
- }).then(res1=>{
- let incidentSourceList = res1 || [];
- let im = incidentSourceList.find(v => v.value === 'im');
- // api_sj().then(res2=>{
- // postData.incident.incidentsign = res2.data;
- postData.incident.source = im;
- postData.incident.fromWx = true;
- postData.incident.requester = loginUserStore.loginUser.user;
- postData.incident.acceptUser = loginUserStore.loginUser.user;
- postData.incident.deleteFlag = 0
- api_request(postData).then(res=>{
- if(res.state == 200){
- dataInfo.incidentId = res.data.id
- let handlerOrder$ = res.data;
- let requestList = [handlerOrder$];
- if(dataInfo.handlerImgList.length){ // 有图片
- dataInfo.handlerImgList.forEach(v => {
- let handlerOrderImg$ = handlerOrderImg(v);
- requestList.push(handlerOrderImg$);
- })
- console.log(9999,requestList);
- Promise.all(requestList).then(resList => {
- uni.hideLoading();
- console.log(9999,resList);
- // if(resList[0].state == 200){
- uni.showToast({
- icon: 'none',
- title: '报修成功',
- mask: true,
- });
- setTimeout(() => {
- uni.setStorageSync('rapidRepNext','')
- uni.setStorageSync('repairData','')
- if(repairsType=='home'){
- uni.reLaunch({
- url: '/pages/repair/home',
- })
- }else{
- uni.navigateTo({
- url: `/pages/myRepair/myRepair?type=1`
- })
- }
- }, 1500)
- // }else{
- // uni.showToast({
- // icon: 'none',
- // title: resList[0].msg || '请求数据失败!'
- // });
- // }
- })
- }else{
- uni.showToast({
- icon: 'none',
- title: '报修成功',
- mask: true,
- });
- setTimeout(() => {
- uni.setStorageSync('rapidRepNext','')
- uni.setStorageSync('repairData','')
- if(repairsType=='home'){
- uni.reLaunch({
- url: '/pages/repair/home',
- })
- }else{
- uni.navigateTo({
- url: `/pages/myRepair/myRepair?type=1`
- })
- }
- }, 1500)
- }
- }else{
- uni.showToast({
- icon: 'none',
- title: res.msg || '请求数据失败!'
- });
- }
- })
- // })
- })
- }
-
- // 处理图片
- function handlerOrderImg(imgObj){
- let allData = null
- if(imgObj.extname=='mp4' ||
- imgObj.extname=='avi' ||
- imgObj.extname=='mpeg' ||
- imgObj.extname=='wmv'){
- allData = uploadFile(imgObj, 'wechatIncidentVideo', dataInfo.incidentId)
- }else{
- allData = uploadFile(imgObj, 'wechatRequesterIncident', dataInfo.incidentId)
- }
- return allData
- }
-
- // 处理提交
- function submitHandler(){
- console.log(dataInfo);
- if(dataInfo.tabActiveValue=='doing'){
- if(dataInfo.department==''){
- uni.showToast({
- icon: 'none',
- title: '请选择报修科室'
- });
- return;
- }
- }else{
- if(dataInfo.branch==''){
- uni.showToast({
- icon: 'none',
- title: '请选择院区'
- });
- return;
- }
-
- if(dataInfo.areaId==''){
- uni.showToast({
- icon: 'none',
- title: '请选择楼栋'
- });
- return;
- }
-
- if(dataInfo.placeId==''){
- uni.showToast({
- icon: 'none',
- title: '请选择楼层'
- });
- return;
- }
- }
- if(dataInfo.address==''){
- uni.showToast({
- icon: 'none',
- title: '请输入详细地址'
- });
- return;
- }
-
- if(dataInfo.contacts==''){
- uni.showToast({
- icon: 'none',
- title: '请输入联系人'
- });
- return;
- }
-
- if(dataInfo.contactsInformation==''){
- uni.showToast({
- icon: 'none',
- title: '请输入联系电话'
- });
- return;
- }
- console.log(dataInfo.handlerImgList)
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- handlerOrder()
- }
-
- // 获取文本内容
- function getHtml(html) {
- const tempDiv = document.createElement('div');
- tempDiv.innerHTML = html;
- return tempDiv.textContent || tempDiv.innerText || '';
- }
-
- onLoad((option) => {
- initForm()
- getIncidentDetail();
- getAddressList();
- })
- </script>
- <style lang="scss" scoped>
- .handler{
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .head{
- height: 88rpx;
- display: flex;
- position: fixed;
- z-index: 99;
- width: 100%;
- background-color: #fff;
- font-size: 30rpx;
- .tab{
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- border-bottom: 4rpx solid transparent;
- &.active{
- color: $uni-primary;
- border-color: $uni-primary;
- }
- }
- }
- .body{
- margin-top: 88rpx;
- box-sizing: border-box;
- flex: 1;
- min-height: 0;
- &.bg{
- background-color: #F7F7F7;
- }
- .summaryItem{
- &:first-of-type{
- .summaryItem_head{
- border-bottom: 1rpx solid #DDDDDD;
- }
- }
- .summary_total{
- padding: 20rpx 0;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .summaryItem_head{
- padding: 24rpx;
- font-size: 26rpx;
- color: #3A3A3A;
- }
- .summaryItem_body{
- font-size: 30rpx;
- background-color: #fff;
- .summaryItem_bodyItem{
- padding: 24rpx;
- border-bottom: 1rpx solid #DDDDDD;
- .summaryItem_bodyItem_top{
- display: flex;
- justify-content: space-between;
- align-items: center;
- .value{
- padding-left: 48rpx;
- flex-shrink: 0;
- }
- }
- .summaryItem_bodyItem_bottom{
- margin-top: 24rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .name{
- text-align: right;
- flex: 1;
- }
- .value{
- width: 240rpx;
- text-align: right;
- padding-left: 48rpx;
- flex-shrink: 0;
- }
- }
- }
- }
- .summaryItem_foot{
- font-size: 30rpx;
- background-color: #fff;
- &.total{
- margin-top: 24rpx;
- }
- .summaryItem_foot_total{
- padding: 24rpx 0;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .summaryItem_foot_add{
- border-top: 1rpx solid #DDDDDD;
- padding: 24rpx 0;
- display: flex;
- justify-content: center;
- align-items: center;
- .newicon-icon-test{
- font-size: 30rpx;
- font-weight: bold;
- }
- }
- }
- }
- .form_item_column{
- padding-top: 24rpx;
- min-height: 86rpx;
- .form_item{
- padding-top: 0;
- min-height: auto;
- }
- }
- .candidate{
- display: flex;
- flex-wrap: wrap;
- .candidate-item{
- padding: 6rpx 15rpx;
- font-size: 26rpx;
- color: #949494;
- background: #E9E9E9;
- border-radius: 50rpx;
- margin-right: 20rpx;
- margin-top: 15rpx;
- }
- }
- .form_item{
- display: flex;
- align-items: center;
- padding-top: 24rpx;
- min-height: 86rpx;
- &.column{
- height: auto;
- flex-direction: column;
- align-items: flex-start;
- .import-rep{
- padding: 5rpx 10rpx;
- border-radius: 50rpx;
- background: #d1fcd5;
- color: #49b856;
- font-size: 24rpx;
- }
- .title{
- margin-right: 0;
- }
- .title-width{
- width: 100%;
- }
- .title-fl-sb{
- display: flex;
- justify-content: space-between;
- width: 100%;
- }
- .value{
- margin-top: 10rpx;
- padding-left: 20rpx;
- box-sizing: border-box;
- }
- .tips{
- padding: 24rpx;
- text-align: center;
- font-size: 22rpx;
- color: #909399;
- width: 100%;
- box-sizing: border-box;
- }
- }
- .title{
- font-size: 26rpx;
- display: flex;
- align-items: center;
- margin-right: 12rpx;
- flex-shrink: 0;
- &.select{
- width: calc(5em + 20rpx);
- }
- }
- .value{
- width: 100%;
- &.category{
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .categoryName{
- font-size: 26rpx;
- color: #555;
- flex: 1;
- }
- .newicon-weibiaoti2010104{
- color: $uni-primary;
- margin-left: 24rpx;
- }
- }
- .imgTips{
- color: #909399;
- font-size: 22rpx;
- }
- }
- .item-input{
- border: 1px solid #DBDBDB;
- height: 70rpx;
- line-height: 70rpx;
- padding: 0 10rpx;
- border-radius: 4rpx;
- width: 100%;
- font-size: 14px;
- }
- .synergeticNames{
- font-size: 26rpx;
- margin-right: 24rpx;
- }
- .synergeticAdd{
- flex-shrink: 0;
- }
- }
- }
- }
- </style>
|