Commit 3c353e8b by swl

gx

parent 775be40d
No preview for this file type
const domain = {
dev: "http://192.168.3.87:8881", // 姚镇接口
// dev: "http://81.69.231.72:8881", // 姚镇接口
// dev: "http://192.168.3.87:8881", // 姚镇接口
dev: "http://81.69.231.72:8881", // 姚镇接口
// dev: "http://81.69.231.72:8881", // 测试接口
// dev: "https://exam.smart-zj.cn:9100/smartExam/", // 新正式接口
};
......
......@@ -5,8 +5,8 @@ import { TokenKey } from "@/utils/auth";
const config = {
// proxy: "https://exam.smart-zj.cn:9100/exam/", // 新线上地址
// proxy: "http://81.69.231.72:8881", // 测试地址
proxy: "http://192.168.3.87:8881/", //本地
proxy: "http://81.69.231.72:8881", // 测试地址
// proxy: "http://192.168.3.87:8881/", //本地
// proxy: "https://exam.smart-zj.cn:9100/smartExam/", // 新正式接口
// proxy: "http://81.69.231.72:9089/", // 测试地址
// proxy1: "http://81.69.231.72:8881/admin-api", // 测试地址
......
......@@ -134,6 +134,7 @@
<!-- <el-button
v-if="(scope.row.state == 3 || scope.row.state == 2) && searchForm.departmentCode == '10000031' && $route.query.realEstateArea == '句容市'"
type="success" size="mini" round @click="dispatch(scope.row)">退税办理</el-button> -->
<el-button
v-if="
scope.row.state != 0 &&
......@@ -416,6 +417,7 @@ import {
mainMultipleRevocation,
updateMultipleCheckArea,
} from "@/api/multiple";
export default {
components: { TableTemplate },
data() {
......@@ -924,6 +926,7 @@ export default {
// console.log("取消审核");
});
},
deny(row) {
this.$prompt(`确定驳回该申请的复审吗?`, "提示", {
confirmButtonText: "确定",
......
......@@ -762,7 +762,6 @@ export default {
});
if (localStorage.getItem("userName") == "admin") {
this.tableData = changeList(this.tableData);
console.log(JSON.parse(JSON.stringify(this.tableData)));
}
} else {
this.tableData = [];
......@@ -848,9 +847,6 @@ export default {
});
},
record(row) {
console.log(1);
// console.log(row);
queryMultipleDeedTaxRecord({ code: row.code }).then((res) => {
console.log(res.data);
let reason = [];
......@@ -913,13 +909,16 @@ export default {
code: row.code,
// matterType: row.matterType
};
Promise.all([
queryMultipleDeedTaxDetailInfo(params),
queryMultipleDeedTaxRecord(params),
]).then((res) => {
console.log(res, "初审");
if (res[0].data.state == 1) {
this.detail = res[0].data;
this.arrList = res[1].data;
this.detail.recordVos.forEach((item) => {
item.departmentName.search("财政") != -1
? (this.arr1 = item.reason)
......@@ -977,10 +976,10 @@ export default {
arr.arr1 = that.arr1 || ""; // 财政
arr.arr2 = that.arr2 || ""; // 不动产
arr.arr3 = that.arr3 || ""; // 税务
this.docxsrc = "./static/deedTax1.docx"; //模板文件的位置
this.docxsrc = "./static/multiDeedTax1.docx"; //模板文件的位置
} else {
arr.arr3 = that.arr3 || ""; // 税务
this.docxsrc = "./static/deedTax2.docx"; //模板文件的位置
this.docxsrc = "./static/multiDeedTax2.docx"; //模板文件的位置
}
// let docxname = '购房契税补贴申请表'; //导出文件的名字
// 读取并获得模板文件的二进制内容
......
const env = process.env.NODE_ENV === "production";
const publicPath = env ? "/manage-h5/" : "/"; //正式
// const publicPath = env ? "/smartExam-h5/" : "/"; //测试
// const publicPath = env ? "/manage-h5/" : "/"; //正式
const publicPath = env ? "/smartExam-h5/" : "/"; //测试
module.exports = {
publicPath,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment