MS-FUUVYHVOEAYJ\Administrator 6 달 전
부모
커밋
b2d33efe7d

+ 1 - 1
nngkxxdp/src/main/resources/static/naxsb/qysmzq.html

@@ -24,7 +24,7 @@
 
         @font-face {
             font-family: 'DOUYU';
-            src: url('../fonts/DOUYUFONT-2.OTF');
+            src: url('fonts/DOUYUFONT-2.OTF');
             font-weight: normal;
             font-style: normal;
         }

+ 1 - 1
nngkxxdp/src/main/resources/static/naxsb/rcfw.html

@@ -31,7 +31,7 @@
 
         @font-face {
             font-family: 'DOUYU';
-            src: url('../fonts/DOUYUFONT-2.OTF');
+            src: url('fonts/DOUYUFONT-2.OTF');
             font-weight: normal;
             font-style: normal;
         }

+ 16 - 3
nngkxxdp/src/main/resources/static/naxsb/tsfw.html

@@ -31,7 +31,7 @@
 
         @font-face {
             font-family: 'DOUYU';
-            src: url('../fonts/DOUYUFONT-2.OTF');
+            src: url('fonts/DOUYUFONT-2.OTF');
             font-weight: normal;
             font-style: normal;
         }
@@ -163,7 +163,7 @@
         <div class="top">
             <div class="toplogo">
                 <img src="images/gyylogo.png" alt="">
-                <span>茶园工业园区特色服务</span>
+                <span>{{currentTitle}}特色服务</span>
             </div>
             <div class="backbutton" @click="window.history.go(-1)">
                 <img src="images/back1.png" alt="">
@@ -223,10 +223,22 @@
                 leftList: [],
                 person: '',
                 telphone: '',
-                address: ''
+                address: '',
+                currentTitle:''
             };
         },
         methods: {
+            getDetailData(id) {
+                let that = this;
+                $.ajax({
+                    url: conpath + "/parkData/" + id,
+                    type: "get",
+                    dataType: "json",
+                    success: function (data) {
+                        that.currentTitle = data.title;
+                    }
+                })
+            },
             getParkData(id) {
                 let that = this;
                 $.ajax({
@@ -258,6 +270,7 @@
             const url = new URL(window.location.href);
             const id = url.searchParams.get('id');
             this.getParkData(id);
+            this.getDetailData(id);
         }
     });
 </script>

+ 22 - 1
nngkxxdp/src/main/resources/static/naxsb/wyyy.html

@@ -147,6 +147,18 @@
                 <el-form-item label="拟办理业务" prop="business">
                     <el-input type="textarea" v-model="form.business" placeholder="请输入拟办理业务"></el-input>
                 </el-form-item>
+                <el-form-item label="拟办时间">
+                    <el-col :span="11">
+                        <el-date-picker type="date" placeholder="选择日期" format="yyyy-MM-dd" value-format="yyyy-MM-dd"
+                            v-model="form.date1" style="width: 100%;">
+                        </el-date-picker>
+                    </el-col>
+                    <el-col class="line" :span="2">-</el-col>
+                    <el-col :span="11">
+                        <el-time-picker placeholder="选择时间" format='HH:mm:ss' value-format='HH:mm:ss'
+                            v-model="form.date2" style="width: 100%;"></el-time-picker>
+                    </el-col>
+                </el-form-item>
                 <el-form-item label="验证码" prop="imgCode">
                     <div style="display: flex;">
                         <el-input v-model="form.imgCode" placeholder="请输入验证码"></el-input>
@@ -210,6 +222,8 @@
                     overtimeAge: '',
                     overtimePhone: '',
                     business: '',
+                    date1: '',
+                    date2: '',
                     imgCode: ''
                 },
                 /*图形验证码*/
@@ -254,7 +268,14 @@
                         if (!this.validatePhone()) {
                             return
                         }
-                        const formData = this.form;
+                        const formData = {
+                            overtimeName: this.form.overtimeName,
+                            overtimeAge: this.form.overtimeAge,
+                            overtimePhone: this.form.overtimePhone,
+                            business: this.form.business,
+                            handleTime: this.form.date1 + ' ' + this.form.date2,
+                            imgCode: this.form.imgCode
+                        }
                         // AJAX 请求
                         $.ajax({
                             url: conpath + '/reserveOvertime',