123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348 |
- <template>
- <uni-drawer ref="drawer" mode="left" :mask-click="false" width="85%" :maskClick='true'>
- <scroll-view class="scroll-view" scroll-y="true">
- <uni-section :title="type==='add'?'隐患登记':'编辑隐患' " type="line"></uni-section>
- <view class="form-wrap" >
- <uni-forms ref="form" label-position="top" :rules="rules" :model="form" :label-width="300">
- <uni-forms-item label ="企业/单位名称" >
- <uni-data-select v-model="form.entId" :localdata="ents" placeholder="请选择企业/单位名称" :clear="false"></uni-data-select>
- </uni-forms-item>
- <uni-card padding="0" margin="5px 0">
- <uni-forms-item label ="隐患标题">
- <uni-easyinput v-model="form.dangerTitle" placeholder="请输入隐患标题" />
- </uni-forms-item>
- <!-- <uni-forms-item label ="隐患分类" >
- <uni-data-select v-model="form.dangerCatId" :localdata="dangerCats" placeholder="请选择隐患分类" :clear="false"></uni-data-select>
- </uni-forms-item> -->
-
- <uni-forms-item label ="分类标签" >
- <uni-easyinput v-model="form.dangerTags" placeholder="请输入分类标签" />
- </uni-forms-item>
- <uni-forms-item label ="隐患等级" >
- <uni-data-select v-model="form.dangerLevel" :localdata="dangerLevelOptions" placeholder="请选择隐患等级" :clear="false"></uni-data-select>
- </uni-forms-item>
- <uni-forms-item label ="发生位置">
- <uni-easyinput v-model="form.dangerLocation" placeholder="请输入发生位置" />
- </uni-forms-item>
- <uni-forms-item label="隐患描述">
- <uni-easyinput type="textarea" :maxlength="300"
- v-model="form.dangerDesc" autoHeight
- placeholder="请输入隐患描述"></uni-easyinput>
- <view class="word-limit">{{form.dangerDesc.length||0}}/300</view>
- </uni-forms-item>
- <uni-forms-item label ="登记时间">
- <uni-datetime-picker type="date" v-model="form.submitTime" placeholder="请选择登记时间" />
- </uni-forms-item>
- </uni-card>
- <uni-card padding="0" margin="5px 0">
- <uni-forms-item label ="整改期限">
- <uni-datetime-picker type="date" v-model="form.dangerDeadLine" placeholder="请选择整改期限" />
- </uni-forms-item>
- <uni-forms-item label="整改类型">
- <uni-data-checkbox
- v-model="form.rectifyCat"
- :localdata="[{ value: 1, text: '自行整改' },{ value: 2, text: '外协整改' }]" />
- </uni-forms-item>
- <uni-forms-item label="整改说明">
- <uni-easyinput type="textarea" :maxlength="300"
- v-model="form.rectifyRemark" autoHeight
- placeholder="请输入整改说明"></uni-easyinput>
- <view class="word-limit">{{form.rectifyRemark.length||0}}/300</view>
- </uni-forms-item>
- <uni-forms-item label ="整改完成时间">
- <uni-datetime-picker type="date" v-model="form.rectifyTime" placeholder="请选择整改完成时间" />
- </uni-forms-item>
- </uni-card>
- <uni-card padding="0" margin="5px 0">
- <uni-forms-item label="验收说明">
- <uni-easyinput type="textarea" :maxlength="300"
- v-model="form.acceptRemark" autoHeight
- placeholder="请输入验收说明"></uni-easyinput>
- <view class="word-limit">{{form.acceptRemark.length||0}}/300</view>
- </uni-forms-item>
- <uni-forms-item label ="验收完成时间">
- <uni-datetime-picker type="date" v-model="form.acceptTime" placeholder="请选择验收完成时间" />
- </uni-forms-item>
- </uni-card>
- <uni-forms-item label="附件">
- <view class="attachbox">
- <view class="attach" v-for="(attach, index) in form.attachList" :key="index"
- @click="preview(form.attachList)"
- @longpress="delAttach(index)">
- <image :src="attach.attachUrl"></image>
- </view>
- <view class="attach">
- <view class="handle" @click="uploadAttach">
- <uni-icons type="plusempty" size="40" color="#999999"></uni-icons>
- </view>
- </view>
- </view>
- </uni-forms-item>
- <uni-forms-item label="是否关闭">
- <uni-data-checkbox
- v-model="form.status"
- :localdata="[{ value: 0, text: '未整改' },{ value: 1, text: '已整改完成' }]" />
- </uni-forms-item>
- </uni-forms>
- <view class="handle-container">
- <button class="save" type="primary" @click="onSubmit">保存</button>
- <button class="cancel" type="default" @click="close">取消</button>
- </view>
- </view>
- </scroll-view>
- </uni-drawer>
- </template>
- <script>
- import dangerApi from '@/api/danger.js'
- import { upload } from '@/api/upload.js'
- export default{
- name:"CreateDanger",
- computed:{
- ents(){
- let ents=this.ent
- if(!ents)return []
- return ents.map(item=>{
- return{
- value:item.entId,
- text:item.entName
- }
- })
- },
- dangerCats(){
- let dangerCats=this.danger
- if(!dangerCats)return []
- return dangerCats.map(item=>{
- return{
- value:item.dangerCatId,
- text:item.dangerCatTitle
- }
- })
- },
- },
- props:{
- ent:{
- type:Array,
- default:()=>[]
- },
- danger:{
- type:Array,
- default:()=>[]
- }
- },
- data(){
- return{
- type:undefined,
- rules:{
- entName:{
- rules:[
- {
- required: true,
- errorMessage:"请输入企业名称"
- }
- ],
- validateTrigger:'submit'
- },
- entCatId:{
- rules:[
- {
- required: true,
- errorMessage:"请选择企业分类"
- }
- ],
- validateTrigger:'submit'
- }
- },
- dangerLevelOptions:[
- { value: 0, text: '末知' },
- { value: 1, text: '重大' },
- { value: 2, text: '较大' },
- { value: 3, text: '一般' },
- { value: 4, text: '较小' }
- ],
- statusOptions:[
- { value: 0, text: '未整改' },
- { value: 1, text: '已整改完成' }
- ],
- form:{
- entId: undefined,
- dangerId: 0,
- dangerCatId: 1,
- dangerCatTitle: '',
- dangerTitle: '',
- dangerTags:'',
- dangerCode: '',
- dangerLocation: '',
- dangerLevel: 2,
- dangerDesc: '',
- submitTime: '',
- submitRemark: '',
- dangerDeadLine: '',
- rectifyTime: '',
- dangerReason: '',
- rectifyCat: 1,
- rectifyRemark: '',
- acceptTime: '',
- acceptRemark: '',
- finishTime: '',
- status: 0,
- attachList: []
- }
- }
- },
- methods:{
- resetForm(){
- this.form={
- entId: undefined,
- dangerId: 0,
- dangerCatId: 1,
- dangerCatTitle: '',
- dangerTitle: '',
- dangerTags:'',
- dangerCode: '',
- dangerLocation: '',
- dangerLevel: 2,
- dangerDesc: '',
- submitTime: '',
- submitRemark: '',
- dangerDeadLine: '',
- rectifyTime: '',
- dangerReason: '',
- rectifyCat: 1,
- rectifyRemark: '',
- acceptTime: '',
- acceptRemark: '',
- finishTime: '',
- status: 0,
- attachList: []
- }
- },
- onSubmit(){
- this.$refs.form.validate().then(res=>{
- let submitFx=this.type==='add'?dangerApi.create:dangerApi.update
- submitFx(this.form).then(()=>{
- uni.showToast({
- icon:"none",
- title:"成功!!"
- })
- this.$emit('success')
- this.close();
- })
- }).catch(err =>{
- uni.showToast({
- icon:"none",
- title:"请检查填写信息!"
- })
- })
- },
- preview(urls=[]){
- if(urls.length>0){
- urls=urls.map(item=>item.attachUrl);
- uni.previewImage({
- urls
- })
- }
- },
- delAttach(idx){
- const self=this;
- uni.showModal({
- title: '提示',
- content: '是否确定删除',
- success: function (res) {
- if (res.confirm) {
- self.form.attachList=self.form.attachList.filter((item,index)=>index!==idx);
- }
- }
- });
- },
- uploadAttach(){
- const self=this;
- uni.chooseImage({
- count: 1,
- sizeType: ['original', 'compressed'],
- sourceType: ['album',"camera"], //从相册选择
- success:(res)=>{
- let filePath=res.tempFilePaths[0]
- upload({filePath}).then((resq)=>{
- var fileResq=JSON.parse(resq)
- let file={
- "attachId": fileResq.data.fileId,
- "attachName": fileResq.data.fileTitle,
- "attachExt": fileResq.data.fileExt,
- "attachUrl": fileResq.data.fileUrl,
- "attachIcon": fileResq.data.fileIcon
- }
- self.form.attachList.push(file);
- })
- }
- });
- },
- show({type,item}){
- this.resetForm()
- this.type=type
- this.$refs.drawer.open()
- if(type==='edit'){
- dangerApi.getById(item.dangerId).then((res)=>{
- this.form={...res.data}
- })
- }
- },
- close(){
- this.$refs.drawer.close()
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .scroll-view {
- height: 100%;
- padding: 20rpx;
- box-sizing: border-box;
- .form-wrap{
- padding:40rpx 20rpx;
- .handle-container{
- display: flex;
- justify-content: center;
- align-items: center;
- button{
- width: 160rpx;
- padding: 20rpx 16rpx;
- line-height: 1;
- font-size: 28rpx;
- &.save{
- background-color: #007aff;
- }
- }
- }
- .word-limit{
- text-align: right;
- padding: 10rpx 0;
- color: #999;
- font-size: 26rpx;
- }
- .attachbox{
- display: flex;
- flex-wrap: wrap;
- .attach{
- padding: 16rpx 18rpx;
- image,.handle{
- display: block;
- width: 100rpx;
- height: 100rpx;
- box-shadow: rgba(0,0,0,0.6);
- border: 1rpx solid #ccc;
- border-radius: 10px;
- overflow: hidden;
- box-sizing: border-box;
- }
- .handle{
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- }
- }
- }
- </style>
|